:root {
  --primary: #3a86ff;
  --primary-dark: #1e40af;
  --secondary: #ff006e;
  --secondary-dark: #c70039;
  --accent: #8338ec;
  --light: #f8f9fa;
  --dark: #0f172a;
  --gray: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #06b6d4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f1f5f9;
  color: var(--dark);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)),
    url("https://picsum.photos/seed/tech-engineering/1920/1080.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(58, 134, 255, 0.2) 0%,
    rgba(15, 23, 42, 0) 70%
  );
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(58, 134, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(58, 134, 255, 0.1);
  transform: translateY(-3px);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 2.5rem;
  padding: 30px;
  text-align: center;
}

.feature-content {
  padding: 25px;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

/* Colleges Section */
.colleges {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.college-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.college-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.college-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.college-card:hover::after {
  opacity: 0.05;
}

.college-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.college-content {
  padding: 25px;
}

.college-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

/* Courses Section */
.courses {
  background: white;
}

.course-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--light);
  border: none;
  padding: 12px 25px;
  margin: 0 5px 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.tab-btn:hover:not(.active) {
  background: #e2e8f0;
  transform: translateY(-3px);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.course-item {
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.course-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.course-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.course-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 600;
}

/* Career Section */
.career {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.05;
  z-index: -1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-size: 1.1rem;
}

.career-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.path-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.path-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.path-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 25px;
}

.path-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.path-content {
  padding: 25px;
}

.path-content p {
  margin-bottom: 15px;
}

.path-content .salary {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: block;
}

/* Admission Process */
.admission-process {
  background-color: var(--light);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 150px;
}

.step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px dashed var(--primary);
  opacity: 0.5;
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  text-align: center;
  font-weight: 600;
}

.step-content p {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--light);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgba(58, 134, 255, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.author-info p {
  color: var(--gray);
  font-size: 1rem;
}

/* Scholarship Section */
.scholarships {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.scholarship-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.scholarship-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.scholarship-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.05;
  z-index: -1;
}

.scholarship-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 25px;
}

.scholarship-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.scholarship-content {
  padding: 25px;
}

.scholarship-content p {
  margin-bottom: 15px;
}

.scholarship-content .amount {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: block;
}

.scholarship-content .eligibility {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

/* Campus Life */
.campus-life {
  background: white;
}

.campus-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.campus-card {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.campus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.campus-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.campus-content {
  padding: 25px;
}

.campus-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: white;
}

.faq-question {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

/* Contact Section */
.contact {
  background: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--light), white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  opacity: 0.1;
}

.contact-form::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  opacity: 0.1;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 10px;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(58, 134, 255, 0.3);
}

/* application-service-section-starts-here */
.application-domestic-section {
  background: linear-gradient(to right, #f3f9ff, #e0f2ff);
  padding: 50px 20px;
  text-align: center;
}

.application-domestic-container {
  max-width: 1200px;
  margin: 0 auto;
}

.application-domestic-title {
  font-size: 2rem;
  color: #0b3d91;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Responsive Grid for Steps */
.domestic-steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.domestic-step {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.domestic-step:hover {
  transform: translateY(-8px);
}

.domestic-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0b3d91;
}

.domestic-step h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
}

.domestic-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* 🔁 Media Queries for Super Responsiveness */
@media (max-width: 768px) {
  .application-domestic-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .domestic-step {
    padding: 20px 15px;
  }

  .domestic-step h3 {
    font-size: 1.1rem;
  }

  .domestic-step p {
    font-size: 0.9rem;
  }

  .domestic-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .application-domestic-title {
    font-size: 1.4rem;
  }

  .domestic-step {
    padding: 18px 12px;
  }

  .domestic-step h3 {
    font-size: 1rem;
  }

  .domestic-step p {
    font-size: 0.88rem;
  }

  .domestic-icon {
    font-size: 1.6rem;
  }
}

/* application-service-section-ends-here */
