/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  color: #1f2937;
  scroll-behavior: smooth;
}

/* =====================
   HEADER & NAVBAR
===================== */
.site-header {
  background-color: #2a4bff;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.navbar {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.btn-apply {
  background: #ff7a18;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
}

.btn-apply:hover {
  background: #ff6600;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =====================
   STICKY + SHRINK NAVBAR
===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 15px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
}


/* Mobile Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #2a4bff;
    padding: 15px;
    width: 220px;
    border-radius: 8px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}

.header-text {
  margin-top: 40px;
}

.header-text h1 {
  margin: 0;
  font-size: 36px;
}

.header-text p {
  margin-top: 10px;
  font-size: 16px;
}

/* =====================
   ADS SECTION (FIXED)
===================== */

.ads-slide img {
  font-size: 0;        /* prevents alt text showing */
}

.ads-section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

.ads-container {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
  background: #f2f2f2;
}

.ads-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.ads-slide.active {
  opacity: 1;
  z-index: 1;
}

.ads-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border-radius: 16px;
}

/* Ads Dots
.ads-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.ads-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.ads-dot.active {
  background: #fff;
} */


/* =====================
   INTRO / CONTENT
===================== */
.intro {
  max-width: 800px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.intro h2 {
  color: #2a4bff;
}

/* =====================
   CATEGORIES
===================== */
.categories {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
}

.categories h2 {
  color: #2a4bff;
  margin-bottom: 30px;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.category-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-card h3 {
  color: #2a4bff;
  margin-bottom: 10px;
}



/* =====================
   WHY PERFECT GUIDANCE
===================== */

.why-pg {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
}

.why-pg h2 {
  color: #2a4bff;
  font-size: 28px;
  margin-bottom: 40px;
}

.why-pg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.why-card h3 {
  color: #2a4bff;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}



/* =====================
   STATS – CARD STYLE
===================== */

.stats-section {
  background: linear-gradient(135deg, #1f3cff, #2a4bff);
  padding: 80px 20px;
}

.stats-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.stat-card h2 {
  font-size: 42px;
  margin: 0;
  font-weight: 800;
  color: #ffffff;
}

.stat-card p {
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.95;
}

/* Tablet */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h2 {
    font-size: 34px;
  }
}

.college-card p {
  line-height: 1.5;
  color: #444;
}

.college-card strong {
  color: #0b5ed7;
}


/* =====================
   TESTIMONIALS
===================== */

.testimonials {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials h2 {
  color: #2a4bff;
  font-size: 28px;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 60px;
  color: #ff7a18;
  opacity: 0.25;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.testimonial-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-user strong {
  display: block;
  color: #1f2937;
  font-size: 15px;
}

.testimonial-user span {
  font-size: 13px;
  color: #6b7280;
}


/* =====================
   COLLEGE LISTING
===================== */
.listing-page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

.college-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .college-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .college-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.college-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  overflow: hidden; /* important for image zoom */
}

.college-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


.college-card h3 {
  color: #2a4bff;
}

/* College Slider */
.college-slider {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f3f3;
  isolation: isolate;
}

.college-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.01); /* ✅ tiny scale avoids blank flash */

  transition:
    opacity 0.6s ease-in-out,
    transform 0.6s ease-in-out;

  will-change: opacity, transform; /* ✅ GPU acceleration */
  backface-visibility: hidden;      /* ✅ removes flicker */
}

.college-card:hover .college-slider img.active {
  transform: scale(1.08);
}

.college-slider img.active {
  opacity: 1;
   z-index: 1;
}

.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.slider-dot.active {
  background: #fff;
}

/* Buttons */
.card-actions {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.btn.details {
  border: 1px solid #2a4bff;
  color: #2a4bff;
}

.btn.apply {
  background: #ff7a18;
  color: #fff;
}

.btn.apply:hover {
  background: #ff6600;
}


.college-card .btn {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.college-card:hover .btn.apply {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 122, 24, 0.4);
}

.college-card:hover .btn.details {
  background: rgba(42, 75, 255, 0.08);
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0b3cff;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

.footer-social a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}




/* =====================
   SPONSORED BADGE
===================== */

.ad-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 5;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}





/* =====================
   ENQUIRY FORM (VERTICAL & MODERN)
===================== */

.enquiry-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inputs & Select */
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: #f9fafb;
}

/* Focus state */
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: #2a4bff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 75, 255, 0.15);
}

/* Textarea */
.enquiry-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit Button */
.enquiry-form button {
  margin-top: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff7a18, #ff9f1c);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Button Hover */
.enquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.35);
}

/* Status text */
#formStatus {
  margin-top: 10px;
  font-size: 14px;
  color: #16a34a;
}

/* Mobile polish */
@media (max-width: 480px) {
  .enquiry-form {
    padding: 0 10px;
  }
}




/* =====================
   FLOATING LABEL FORM
===================== */

.enquiry-form .field {
  position: relative;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
}

/* Label */
.enquiry-form label {
  position: absolute;
  top: 50%;
  left: 14px;
  color: #6b7280;
  font-size: 13px;
  background: #fff;
  padding: 0 6px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.25s ease;
}

/* Move label up */
.enquiry-form input:focus + label,
.enquiry-form input:not(:placeholder-shown) + label,
.enquiry-form textarea:focus + label,
.enquiry-form textarea:not(:placeholder-shown) + label,
.enquiry-form select:focus + label,
.enquiry-form select:not([value=""]) + label {
  top: -8px;
  font-size: 12px;
  color: #2a4bff;
}

/* Focus effect */
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: #2a4bff;
  box-shadow: 0 0 0 3px rgba(42, 75, 255, 0.15);
  outline: none;
}

/* Textarea fix */
.enquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}



/* =====================
   INPUT ICONS
===================== */

.enquiry-form .with-icon {
  position: relative;
}

.enquiry-form .with-icon .icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #6b7280;
  pointer-events: none;
}

/* Push input text right */
.enquiry-form .with-icon input,
.enquiry-form .with-icon select,
.enquiry-form .with-icon textarea {
  padding-left: 44px;
}

/* Adjust floating label position */
.enquiry-form .with-icon label {
  left: 44px;
}

/* Icon highlight on focus */
.enquiry-form input:focus ~ .icon,
.enquiry-form select:focus ~ .icon,
.enquiry-form textarea:focus ~ .icon {
  color: #2a4bff;
}


/* =====================
   SHOWCASE IMAGE SLIDER
===================== */

.showcase-slide {
  background: #000; /* fallback background */
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* 🔥 FIX */
  object-position: center;
}


.showcase-container {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  background: #eaeaea;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.showcase-slide.active {
  opacity: 1;
  z-index: 1;
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.showcase-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}

.showcase-dot.active {
  background: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
  .showcase-container {
    height: 190px;
  }
}





/* =====================
   SHOWCASE TEXT OVERLAY
===================== */

.showcase-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
  color: #fff;
  animation: textFadeUp 0.8s ease;
}

.showcase-text h2 {
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 700;
}

.showcase-text p {
  font-size: 16px;
  max-width: 420px;
  line-height: 1.4;
  opacity: 0.95;
}

/* Animation */
@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .showcase-text h2 {
    font-size: 22px;
  }

  .showcase-text p {
    font-size: 14px;
  }
}


/* ===============================
   SHOWCASE / HERO HEIGHT FIX
================================ */

.showcase-slider,
.hero-slider,
.showcase-container {
  height: 420px;   /* ⬅ increase height */
}

/* Mobile */
@media (max-width: 768px) {
  .showcase-slider,
  .hero-slider,
  .showcase-container {
    height: 260px;
  }
}


/* =====================
   ADS – CENTERED & CLEAN
===================== */

.ads-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px; /* equal left & right padding */
}

.ads-container {
  width: 100%;
  height: 420px;              /* desktop height */
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

/* Image */
.ads-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fills nicely */
  object-position: center;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .ads-container {
    height: 260px;
    border-radius: 14px;
  }
}


/* =====================
   SCROLL REVEAL EFFECT
===================== */

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}





/* =====================
   LEADERSHIP SECTION
===================== */

.leadership-section {
  background: #ffffff;
  padding: 70px 20px;
}

.leadership-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #2a4bff;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 45px;
}

.leader-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.leader-card {
  background: #f9fafb;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #2a4bff;
}

.leader-card h3 {
  margin: 10px 0 4px;
  font-size: 20px;
  color: #111827;
}

.leader-role {
  font-size: 14px;
  font-weight: 600;
  color: #2a4bff;
}

.leader-card p {
  margin-top: 14px;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
}




/* =====================
   LEADERSHIP SECTION
===================== */

.leadership-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: #2a4bff;
  margin-bottom: 40px;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.leader-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #2a4bff;
  margin-bottom: 15px;
}

.leader-card h3 {
  margin: 10px 0 4px;
  font-size: 18px;
}

.leader-card .role {
  color: #2a4bff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.leader-card .desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}




/* =====================
   COLLEGE LOADER
===================== */

.college-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #2a4bff;
  font-size: 15px;
  gap: 12px;
}

/* Spinner */
.spinner {
  width: 36px;
  height: 36px;
  border: 4px solid #dbe1ff;
  border-top: 4px solid #2a4bff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



/* =====================
   ADS SLIDER (FINAL CLEAN VERSION)
===================== */

.ads-section {
  padding: 40px 0;
}

.ads-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

/* Slides */
.ad-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.ad-slide.active {
  opacity: 1;
  z-index: 2;
}

.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.ad-prev,
.ad-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 5;
}

.ad-prev { left: 12px; }
.ad-next { right: 12px; }

/* Dots */
.ad-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;   /* ABOVE image */
}

.ad-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.ad-dot.active {
  background: #ff7a18;
}

/* Mobile */
@media (max-width: 768px) {
  .ads-container {
    height: 260px;
  }
}




/* ===== SEO HOME SECTION ===== */
.seo-home {
  padding: 70px 20px;
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
  text-align: center;
}

.seo-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.seo-home h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.seo-home p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.highlight {
  color: #3f51ff;
  font-weight: 600;
}