* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green:  #0B3C5D;
  --secondary-green: #0B3C5D ;
  --accent-green: #0B3C5D;
  --light-green: #0B3C5D;
  --white:#ffffff;
  --off-white: #ffffff;
  --light-gray: #ffffff;
  --text-dark: rgb(40, 43, 43);
  --text-gray: rgb(32, 33, 34);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  width:100% ;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.logo {
  margin-left: 0;
  margin-right: auto;
  justify-content: flex-start; /* pushes menu to the right */
}

.logo img {
  height: 45px;
  width: auto;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-green);
}

/* Hero Section */
.hero {
background: #ffffff;
color: #0B3C5D;
padding: 60px 20px;
}

.hero-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: auto;
flex-wrap: wrap;
}

/* Left Content */
.hero-text {
flex: 1;
min-width: 300px;
padding-right: 20px;
}

.hero-text h1 {
font-size: 2.5rem;
font-weight: bold;
line-height: 1.3;
margin-bottom: 20px;
}

.hero-text h1 span {
color: #ffcc00;
font-weight: 600;
}

.hero-text p {
font-size: 1.2rem;
margin-bottom: 25px;
line-height: 1.6;
}

/* CTA Button */
.hero-btn {
display: inline-block;
background:#0B3C5D;
color: #ffffff;
padding: 14px 28px;
font-weight: bold;
border-radius: 6px;
text-decoration: none;
transition: 0.3s ease;
}

.hero-btn:hover {
background: #ffaa00;
transform: scale(1.05);
}

/* Right Image */
.hero-image {
flex: 1;
min-width: 300px;
text-align: center;
}

.hero-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
.hero {
  padding: 50px 20px;
}

.hero-text h1 {
  font-size: 2.3rem;
}

.hero-text p {
  font-size: 1.1rem;
}
}

@media (max-width: 768px) {
.hero-container {
  flex-direction: column;
  text-align: center;
}

.hero-text {
  padding-right: 0;
  margin-bottom: 30px;
}

.hero-text h1 {
  font-size: 2rem;
}

.hero-text p {
  font-size: 1rem;
}
}

@media (max-width: 480px) {
.hero {
  padding: 30px 10px;
}

.hero-text h1 {
  font-size: 1.8rem;
}

.hero-text p {
  font-size: 0.95rem;
}

.hero-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}
}

/* about */
:root {
  --z-blue: #0B3C5D;
  --z-orange: #FF8A00;
  --z-grey: #5F6C7B;
  --z-light: #F4F8FB;
}

.about-exp {
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.exp-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .exp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .img-small {
    bottom: -20px;
    right: -20px;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .about-exp {
    padding: 50px 15px;
  }
  
  .exp-container {
    gap: 30px;
  }
  
  .exp-content h2 {
    font-size: 28px;
  }
  
  .img-small {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 20px;
  }
  
  .services {
    grid-template-columns: 1fr;
  }
}

/* LEFT IMAGES */
.exp-images {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 20px;
}

.img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 20px;
}

.img-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 60, 93, 0.9);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.img-overlay span {
  font-size: 36px;
  font-weight: bold;
}

.img-overlay p {
  font-size: 14px;
  margin-top: 5px;
}

/* CONTENT */
.small-title {
  color: var(--z-orange);
  font-weight: 600;
}

.exp-content h2 {
  font-size: 38px;
  color: #111;
  margin: 10px 0 20px;
}

.exp-content h2 span {
  color: var(--z-orange);
}

.desc {
  color: var(--z-grey);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* PROGRESS */
.progress-wrap {
  margin-bottom: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-bar {
  background: #e6e6e6;
  height: 8px;
  border-radius: 10px;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: var(--z-orange);
  border-radius: 10px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.service {
  display: flex;
  gap: 10px;
}

.service span {
  color: var(--z-orange);
  font-size: 20px;
}

.service h4 {
  margin: 0;
  color: var(--z-blue);
}

.service p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--z-grey);
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--z-orange);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Section Styles */
.section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Responsive Section Styles */
@media (max-width: 1024px) {
  .section {
      padding: 2.5rem 1.5rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  .section-subtitle {
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
      padding: 2.5rem 1rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .section {
      padding: 2rem 0.8rem;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
  
  .section-subtitle {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
  }
}

/* About Section */
.about-content {
  background: var(--off-white);
  padding: 2rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.zolearn-story {
  padding: 40px 15px;
  background-color: #ffffff; /* light background for contrast */
  font-family: 'Roboto', sans-serif;
  color: #0B3C5D;
}

.zolearn-story .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.zolearn-story h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e3a8a; /* dark blue */
  margin-bottom: 20px;
}

.zolearn-story .story-intro {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.zolearn-story .story-intro strong {
  color: #f97316; /* orange accent for emphasis */
}

.zolearn-story .timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.zolearn-story .timeline img.responsive-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .zolearn-story {
    padding: 50px 20px;
  }
  
  .zolearn-story h2 {
    font-size: 32px;
  }
  
  .zolearn-story .story-intro {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .zolearn-story {
    padding: 40px 15px;
  }
  
  .zolearn-story h2 {
    font-size: 28px;
  }
  .zolearn-story .story-intro {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .zolearn-story {
    padding: 30px 10px;
  }
  .zolearn-story h2 {
    font-size: 24px;
  }
  .zolearn-story .story-intro {
    font-size: 15px;
  }
}



/* Course Categories */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Course Grid */
@media (max-width: 1024px) {
  .course-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .course-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
  }
}

.course-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.course-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.course-icon {
  width: 80px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.course-card h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.course-details {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--light-gray);
}

.course-details.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.course-details ul {
  list-style: none;
  margin-top: 1rem;
}

.course-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.course-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.expand-btn {
  background: var(--secondary-green);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s;
}

.expand-btn:hover {
  background: var(--primary-green);
}

/* How It Works */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Responsive Process Steps */
@media (max-width: 1024px) {
  .process-steps {
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .process-steps {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
}

.process-step {
  text-align: center;
  padding: 0.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-green);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.process-step h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}


/* Top Section */
.zolearn-stats {
  position: relative;
  background: #faf9ff;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Wave background */
.wave-bg {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 250px;
  /* background: linear-gradient(
    120deg,
    #0b1b3f 0%,
    #0b1b3f 50%,
    #0b1b3f 100%
  ); */
  border-bottom-left-radius: 50% 40%;
  border-bottom-right-radius: 50% 40%;
  z-index: 0;
}

.stats-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  z-index: 1;
}

.stats-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1b3f;
  margin-bottom: 15px;
}

.stats-container p {
  font-size: 18px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Cards */
.stats-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  background: #ffffff;
  width: 280px;
  /* padding: 40px 20px; */
  padding-top: 20px;
  padding-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  font-size: 42px;
  color: #6f6be8; /* Zolearn-friendly purple */
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-card span {
  font-size: 16px;
  color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
  .zolearn-stats {
    padding: 80px 20px;
  }
  
  .stat-card {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .zolearn-stats {
    padding: 60px 15px;
  }
  
  .stats-container h2 {
    font-size: 28px;
  }

  .stats-container p {
    font-size: 16px;
  }

  .stat-card {
    width: 100%;
    max-width: 320px;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .zolearn-stats {
    padding: 50px 10px;
  }
  
  .stats-container h2 {
    font-size: 24px;
  }
  
  .stat-card h3 {
    font-size: 32px;
  }
}



/* Entrance Exams */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ===== Students Section ===== */
.students-section {
  padding: 90px 20px;
  background: #ffffff;
}

.students-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.students-content .tag {
  color: #ff6b4a;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.students-content h2 {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  color: #1e236d;
  margin-bottom: 20px;
  line-height: 1.25;
}

.students-content h2 span {
  color: #5f6fff;
}

.students-content p {
  font-size: 17px;
  color: #555;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Feature Tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-tags span {
  background: #eef0ff;
  color: #4b55d6;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

/* Button */
.primary-btn {
  display: inline-block;
  background: #1e236d;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Image */
.students-image img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
}

/* ===== Exams Section ===== */
.exams-section {
  background: #f8f9ff;
  padding: 80px 20px;
  text-align: center;
}

.exams-section h3 {
  font-size: clamp(24px, 4vw, 34px);
  color: #1e236d;
  font-weight: 700;
  margin-bottom: 10px;
}

.exams-section p {
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Grid */
.exams-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.exam-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.exam-card:hover {
  transform: translateY(-6px);
}

.exam-card h4 {
  font-size: 18px;
  color: #5f6fff;
  margin-bottom: 6px;
  font-weight: 700;
}

.exam-card span {
  font-size: 14px;
  color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
  .students-section {
    padding: 70px 20px;
  }
  
  .exams-section {
    padding: 70px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .students-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .exams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .exams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .students-section {
    padding: 50px 15px;
  }
  
  .students-content h2 {
    font-size: 28px;
  }
  
  .students-content p {
    font-size: 16px;
  }
  
  .exams-section {
    padding: 50px 15px;
  }
  
  .exams-section h3 {
    font-size: 24px;
  }
  
  .exams-grid {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .students-section {
    padding: 40px 10px;
  }
  
  .students-content h2 {
    font-size: 24px;
  }
  
  .feature-tags {
    gap: 8px;
  }
  
  .feature-tags span {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .exams-section {
    padding: 40px 10px;
  }
}

/* Courses Section */
.course {
  padding: 80px 10%;
}

.course-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.course-content {
  max-width: 600px;
}

.course-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #232a6f;
}

.course-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #4a4f75;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.course-tags span {
  background-color: #f1edff;
  color: #5a3df0;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.cta-btn {
  display: inline-block;
  background-color: #232a6f;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #3b42a1;
}

.course-image img {
  max-width: 450px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .course {
    padding: 60px 5%;
  }
  
  .course-container {
    gap: 40px;
  }
  
  .course-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .course-container {
    flex-direction: column;
    text-align: center;
  }

  .course-tags {
    justify-content: center;
  }

  .course-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .course {
    padding: 50px 20px;
  }
  
  .course-content h1 {
    font-size: 28px;
  }
  
  .course-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .course {
    padding: 40px 15px;
  }
  
  .course-content h1 {
    font-size: 24px;
  }
  
  .course-tags span {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonial-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
  }
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 4px solid var(--primary-green);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* Enquiry Form */
* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

.enquiry-wrapper {
  background: #ffffff;
  padding: 80px 20px;
}

.enquiry-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT IMAGE */
.enquiry-image img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  display: block;
}

/* RIGHT FORM */
.enquiry-form-area {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  color: #1e236d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* FORM */
.enquiry-form .form-group {
  margin-bottom: 18px;
}

.enquiry-form label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.enquiry-form textarea {
  resize: none;
  height: 90px;
}

.btn-primary {
  width: 100%;
  background: #1e236d;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .enquiry-wrapper {
    padding: 60px 20px;
  }
  
  .enquiry-form-area {
    padding: 30px 25px;
  }
}

@media (min-width: 900px) {
  .enquiry-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .enquiry-wrapper {
    padding: 50px 15px;
  }
  
  .enquiry-form-area {
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .enquiry-wrapper {
    padding: 40px 10px;
  }
  
  .enquiry-form-area {
    padding: 20px 15px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Contact Grid */
@media (max-width: 1024px) {
  .contact-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
  }
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--secondary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.3rem;
}

.social-link:hover {
  background: var(--primary-green);
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-left {
max-width: 250px;
}
.footer-logo {
max-width: 200px;
margin-bottom: 25px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--light-green);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% {
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
      box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Image Gallery Section */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Responsive Image Gallery */
@media (max-width: 1024px) {
  .image-gallery {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .image-gallery {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 2rem;
  }
  
  .gallery-item {
      height: 250px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  height: 300px;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.9), transparent);
  color: var(--white);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.image-section {
  background: var(--off-white);
  padding: 5rem 2rem;
}

/* Responsive Image Section */
@media (max-width: 1024px) {
  .image-section {
      padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .image-section {
      padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .image-section {
      padding: 2.5rem 0.8rem;
  }
}

/* Top Colleges Section */
.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive College Grid */
@media (max-width: 1024px) {
  .college-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .college-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
  }
}

.college-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.college-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.college-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.college-info {
  padding: 1.5rem;
}

.college-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.college-location {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Blog/Course Info Section */
.blog-section {
  background: var(--off-white);
  padding: 5rem 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Responsive Blog Grid */
@media (max-width: 1024px) {
  .blog-section {
      padding: 4rem 1.5rem;
  }
  
  .blog-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
      padding: 3rem 1rem;
  }
  
  .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
  }
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-category {
  display: inline-block;
  background: var(--light-green);
  color: var(--primary-green);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-description {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.blog-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.blog-link:hover {
  gap: 1rem;
}


/* ========== TABLET RESPONSIVE (768px - 1024px) ========== */
@media (min-width: 768px) and (max-width: 1024px) {
  nav {
      padding: 1rem 1.5rem;
  }
  
  .nav-links {
      gap: 1.5rem;
  }
  
  .nav-links a {
      font-size: 0.95rem;
  }
  
  .hero {
      padding: 50px 20px;
  }
  
  .hero-text h1 {
      font-size: 2.2rem;
  }
  
  .hero-text p {
      font-size: 1.1rem;
  }
  
  .section {
      padding: 2.5rem 1.5rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  .course-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
  }
  
  .process-steps {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .image-gallery {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .college-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
      padding: 1.5rem;
  }
  
  .image-section {
      padding: 4rem 1.5rem;
  }
  
  .blog-section {
      padding: 4rem 1.5rem;
  }
}

/* ========== MOBILE RESPONSIVE (< 768px) ========== */
@media (max-width: 768px) {
  nav {
      padding: 1rem 1.5rem;
  }
  
  .logo img {
      height: 40px;
  }
  
  .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--white);
      flex-direction: column;
      padding: 2rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      gap: 1rem;
  }

  .nav-links.active {
      display: flex;
  }

  .mobile-menu-btn {
      display: block;
  }

  .hero {
      padding: 40px 15px;
  }
  
  .hero-container {
      flex-direction: column;
      text-align: center;
  }
  
  .hero-text {
      padding-right: 0;
      margin-bottom: 30px;
  }

  .hero-text h1 {
      font-size: 2rem;
  }

  .hero-text p {
      font-size: 1rem;
  }
  
  .hero-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
  }

  .section {
      padding: 2.5rem 1rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .section-subtitle {
      font-size: 1rem;
  }

  .cta-buttons {
      flex-direction: column;
  }

  .btn {
      width: 100%;
  }
  
  .course-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .course-card {
      padding: 1.5rem;
  }
  
  .course-card h3 {
      font-size: 1.3rem;
  }
  
  .process-steps {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .process-step {
      padding: 1rem;
  }
  
  .step-icon {
      width: 70px;
      height: 70px;
      font-size: 1.8rem;
  }
  
  .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .testimonial-card {
      padding: 1.5rem;
  }
  
  .image-gallery {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .gallery-item {
      height: 250px;
  }
  
  .college-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .blog-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .blog-card {
      padding: 1.5rem;
  }
  
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .contact-card {
      padding: 1.5rem;
  }
  
  .about-content {
      padding: 1.5rem;
  }
  
  .about-content p {
      font-size: 1rem;
  }
  
  .image-section {
      padding: 3rem 1rem;
  }
  
  .blog-section {
      padding: 3rem 1rem;
  }
  
  footer {
      padding: 2rem 1.5rem 1rem;
  }
  
  .footer-links {
      flex-direction: column;
      gap: 1rem;
  }
  
  .social-links {
      gap: 1rem;
  }
  
  .social-link {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
  }

  .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
      bottom: 20px;
      right: 20px;
  }
}

/* ========== SMALL MOBILE (< 480px) ========== */
@media (max-width: 480px) {
  nav {
      padding: 0.8rem 1rem;
  }
  
  .logo img {
      height: 35px;
  }
  
  .nav-links {
      padding: 1.5rem;
  }
  
  .nav-links a {
      font-size: 0.9rem;
  }

  .hero {
      padding: 30px 10px;
  }

  .hero-text h1 {
      font-size: 1.8rem;
  }
  
  .hero-text p {
      font-size: 0.95rem;
  }
  
  .hero-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
  }

  .section {
      padding: 2rem 0.8rem;
  }
  
  .section-title {
      font-size: 1.75rem;
  }
  
  .section-subtitle {
      font-size: 0.95rem;
  }
  
  .course-card {
      padding: 1.2rem;
  }
  
  .course-card h3 {
      font-size: 1.2rem;
  }
  
  .course-icon {
      width: 60px;
      height: 40px;
      font-size: 1.2rem;
  }
  
  .process-step {
      padding: 0.8rem;
  }
  
  .step-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }
  
  .testimonial-card {
      padding: 1.2rem;
  }
  
  .gallery-item {
      height: 200px;
  }
  
  .college-info {
      padding: 1.2rem;
  }
  
  .college-name {
      font-size: 1.1rem;
  }
  
  .blog-content {
      padding: 1.2rem;
  }
  
  .blog-title {
      font-size: 1.1rem;
  }
  
  .contact-card {
      padding: 1.2rem;
  }
  
  .contact-icon {
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
  }
  
  .about-content {
      padding: 1.2rem;
  }
  
  .about-content p {
      font-size: 0.95rem;
  }
  
  .image-section {
      padding: 2.5rem 0.8rem;
  }
  
  .blog-section {
      padding: 2.5rem 0.8rem;
  }
  
  footer {
      padding: 1.5rem 1rem 0.8rem;
  }
  
  .footer-logo {
      max-width: 150px;
  }
  
  .social-link {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
  }
  
  .whatsapp-float {
      width: 45px;
      height: 45px;
      font-size: 1.3rem;
      bottom: 15px;
      right: 15px;
  }
  
  .hero-image img,
  .students-image img,
  .enquiry-image img,
  .course-image img {
      max-width: 100%;
  }
}
