
 /*New OG Section Start*/     
      body {
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
      }

      /* ================= HERO ================= */
      .su-hero {
        background: #ffffff;
        color: #0b2341;
        padding: 40px 0 40px;
      }

      .su-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
      }

      .su-hero-left {
        flex: 1 1 40%;
        max-width: 560px;
      }

      .su-eyebrow {
        font-size: 14px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #ff8a00;
        font-weight: 600;
        margin-bottom: 14px;
      }

      .su-hero-title {
        font-size: clamp(34px, 4vw, 58px);
        line-height: 1.15;
        font-weight: 700;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
      }
      .su-hero-line {
        display: block;
      }
      .su-accent-red {
        color: #ff5757;
      }
      .su-accent-blue {
        color: #0052cc;
      }

      .su-hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        color: #111111;
        max-width: 520px;
        margin-bottom: 18px;
      }

      .su-hero-highlight {
        font-size: 18px;
        line-height: 1.4;
        font-weight: 700;
        margin-bottom: 26px;
      }
      .su-hero-highlight span {
        display: block;
      }
      .su-hero-highlight .su-hl-red {
        color: #ff5757;
      }
      .su-hero-highlight .su-hl-blue {
        color: #0052cc;
      }

      .su-hero-right {
        flex: 1 1 60%;
        display: flex;
        justify-content: center;
      }
      .su-people-wrapper {
        position: relative;
        max-width: 520px;
        width: 100%;
      }
      .su-people-wrapper img {
        width: 100%;
        height: auto;
        display: block;
      }
      .su-people-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 30%;
        background: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0) 0%,
          #ffffff 85%
        );
      }

      /* Mobile View Fix */
@media (max-width: 768px) {
  .su-hero-inner {
    flex-direction: column-reverse; /* This flips the order: Image Top, Text Bottom */
    gap: 30px; /* Reduces the gap for mobile screens */
    padding: 0 20px; /* Adds some side padding so text doesn't touch screen edges */
    text-align: center; /* Optional: Centers text for a better mobile look */
  }

  .su-hero-left {
    max-width: 100%; /* Allows text to take full width on mobile */
    flex: 1 1 100%;
  }

  .su-hero-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .su-hero-subtitle {
    margin-left: auto;
    margin-right: auto; /* Centers the subtitle if text-align is center */
  }
}


/* ================= GLOBAL FIX FOR NEW SECTIONS ================= */
/* This ensures padding doesn't break the width of your cards */
.su-demo-section *, .su-brochure-section *, .su-modal-backdrop * {
  box-sizing: border-box;
}

/* ================= SECTION 2 – KITS ================= */
.su-demo-section {
  padding: 40px 0;
  background: #ffffff;
  width: 100%;
}
.su-demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Adds breathing room on mobile */
}
.su-demo-heading-link {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #0b2341;
  margin-bottom: 8px;
}
.su-demo-subtitle {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 28px;
}
.su-demo-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.su-demo-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  padding: 16px 16px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.su-card-img {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #f4f7ff;
}
.su-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.su-demo-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #333;
}
.su-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ff8a00, #ff7a00, #1d2e50);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}
.su-card-btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================= BROCHURE SECTION ================= */
.su-brochure-section {
  padding: 40px 0 60px;
  background: #ffffff;
  width: 100%;
}
.su-brochure-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.su-brochure-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0b2341;
  margin-bottom: 6px;
}
.su-brochure-subtitle {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 24px;
}
.su-brochure-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.su-brochure-card {
  max-width: 360px;
  width: 100%;
  border-radius: 22px;
  padding: 18px 18px 20px;
  text-align: left;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.su-brochure-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
}
.su-brochure-card p {
  font-size: 14px;
  margin: 0 0 14px;
}
.su-brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

/* Colors for Brochure Cards */
.su-brochure-card.c-1 { background: linear-gradient(135deg, #fff7ed, #ffedd5); border-color: #fed7aa; }
.su-brochure-card.c-1 h3 { color: #ea580c; }
.su-brochure-card.c-1 .su-brochure-link { color: #ffffff; background: #ea580c; }

.su-brochure-card.c-2 { background: linear-gradient(135deg, #eef2ff, #e0f2fe); border-color: #bfdbfe; }
.su-brochure-card.c-2 h3 { color: #1d4ed8; }
.su-brochure-card.c-2 .su-brochure-link { color: #ffffff; background: #1d4ed8; }

.su-brochure-card.c-3 { background: linear-gradient(135deg, #ecfdf5, #dcfce7); border-color: #bbf7d0; }
.su-brochure-card.c-3 h3 { color: #15803d; }
.su-brochure-card.c-3 .su-brochure-link { color: #ffffff; background: #15803d; }

/* ================= MODAL FOR LMS ================= */
.su-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}
.su-modal-backdrop.is-visible {
  display: flex;
}
.su-modal {
  background: #ffffff;
  border-radius: 18px;
  max-width: 360px;
  width: 100%;
  padding: 20px 22px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}
.su-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.su-modal-title {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 8px;
  color: #0b2341;
}
.su-modal-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}
.su-modal-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
}
.su-modal-input:focus {
  border-color: #0052cc;
  box-shadow: 0 0 0 1px rgba(0, 82, 204, 0.18);
}
.su-modal-actions {
  margin-top: 14px;
  text-align: right;
}
.su-modal-btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #ff8a00, #ff5757);
}
.su-modal-error {
  margin-top: 8px;
  font-size: 12px;
  color: #dc2626;
  min-height: 14px;
}

/* ================= SECTION 3 – MAKER MASTI VIDEO WITH LABELS ================= */
.su-story-section {
  padding: 50px 0 70px;
  background: #ffffff;
}
.su-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.su-story-heading-main {
  font-size: 32px;
  font-weight: 700;
  color: #0052cc;
  margin-bottom: 32px;
}
.su-spotlight-layout {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Video Box */
.su-spotlight-video-box {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
.su-spotlight-video-box video {
  width: 100%;
  height: 100%;
  display: block;
}

/* Desktop Labels */
.su-spot-label {
  position: absolute;
  font-size: 16px;
  font-weight: 700;
  max-width: 210px;
}
.su-spot-label.l-top-left { top: 0; left: 0; text-align: left; color: #ff5757; }
.su-spot-label.l-mid-left { top: 40%; left: 0; text-align: left; color: #f59e0b; }
.su-spot-label.l-bottom-left { bottom: 10px; left: 0; text-align: left; color: #16a34a; }
.su-spot-label.l-top-right { top: 0; right: 0; text-align: right; color: #ef4444; }
.su-spot-label.l-mid-right { top: 36%; right: 0; text-align: right; color: #2563eb; }
.su-spot-label.l-bottom-right { bottom: 10px; right: 0; text-align: right; color: #a855f7; }

/* CRITICAL: Hide mobile list on Desktop */
.su-spot-mobile-list {
  display: none; 
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
.su-spot-mobile-list li {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

/* Match colors for mobile list items */
.su-spot-mobile-list li:nth-child(1) { color: #ff5757; }
.su-spot-mobile-list li:nth-child(2) { color: #f59e0b; }
.su-spot-mobile-list li:nth-child(3) { color: #16a34a; }
.su-spot-mobile-list li:nth-child(4) { color: #ef4444; }
.su-spot-mobile-list li:nth-child(5) { color: #2563eb; }
.su-spot-mobile-list li:nth-child(6) { color: #a855f7; }

/* Bottom Pill */
.su-spotlight-bottom-pill {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #dbeafe;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  font-size: 14px;
}
.su-spotlight-bottom-pill span { font-weight: 500; color: #111827; }
.su-spotlight-bottom-pill a {
  padding: 10px 24px;
  border-radius: 999px;
  background: #ff5757;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

/* ================= MOBILE VIEW RESPONSIVE ================= */
@media (max-width: 768px) {
  /* 1. Hide the Desktop floating labels */
  .su-spot-label {
    display: none !important;
  }

  /* 2. Show the list under the video */
  .su-spot-mobile-list {
    display: block !important;
    text-align: center;
  }

  .su-spotlight-video-box {
    max-width: 300px;
  }

  .su-spotlight-bottom-pill {
    flex-direction: column;
    border-radius: 20px;
    gap: 15px;
    padding: 20px;
    width: 90%;
  }
}

            /* ================= SECTION 4 & 5 – VIDEO SECTIONS WITH CAROUSEL ================= */
.su-video-section {
  padding: 60px 0 80px;
  background: #f5f7fb;
}

.su-video-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

/* Container for the cards */
.su-video-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Space between videos */
  flex-wrap: nowrap;
  margin: 40px 0;
}

.su-video-card {
  flex: 1;
  max-width: 380px; /* Adjust based on how many you want to show */
  border-radius: 15px; /* Rounded corners as per image */
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Change aspect ratio to LANDSCAPE (16:9) */
.su-video-frame {
  aspect-ratio: 16 / 9; 
  width: 100%;
  background: #000;
  position: relative;
}

.su-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Remove the 3D / Scaling effect from your old classes */
.pos-1, .pos-2, .pos-3, .pos-4, .pos-5 {
  width: auto;
  transform: none !important;
  opacity: 1 !important;
  display: block;
}

/* Hide extra cards on desktop if you only want to show 3 like the image */
@media (min-width: 901px) {
    .su-video-card.pos-1, .su-video-card.pos-5 {
        display: none;
    }
}

/* Responsive: Stack or Scroll on Mobile */
@media (max-width: 900px) {
  .su-video-cards {
    flex-direction: column;
    align-items: center;
  }
  .su-video-card {
    width: 100%;
    max-width: 400px;
  }
  /* Show only the middle one or a specific set on mobile if needed */
  .su-video-card.pos-1, .su-video-card.pos-2, .su-video-card.pos-4, .su-video-card.pos-5 {
    display: none;
  }
  .su-video-card.pos-3 {
    display: block;
  }
}

      /* CTA pill for sections 4 & 5 – match Section 3 bottom pill design */
      .su-cta-pill {
        margin-top: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 22px;
        border-radius: 999px;
        background: #dbeafe;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
        font-size: 14px;
      }
      .su-cta-pill::before,
      .su-cta-pill::after {
        display: none; /* remove old decorative borders */
      }

      .su-cta-text {
        position: relative;
        font-size: 15px;
        font-weight: 500;
        color: #111827;
        text-align: left;
        margin: 0;
      }

      .su-cta-btn {
        position: relative;
        display: inline-block;
        padding: 10px 24px;
        border-radius: 999px;
        background: #ff5757;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        border: none;
        white-space: nowrap;
      }

      /* ============================================== 
   14. TESTIMONIALS SECTION (FULL UPDATED SECTION)
   ============================================== */

.testimonial-section-modern {
    position: relative;
    /* REDUCED GAP: Tightened top padding to blend with section above */
    padding: 10px 0 40px 0; 
    margin-top: -10px;
    background-color: #f4f7fc; 
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    z-index: 1; 
}

/* --- TOP GRADIENT FADE --- */
.testimonial-section-modern::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100px; 
    background: linear-gradient(to bottom, #ffffff 0%, rgba(244, 247, 252, 0) 100%);
    z-index: 2; 
    pointer-events: none; 
}

/* Background Pattern */
.bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#dce4f2 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1; 
    pointer-events: none;
}

/* --- Header Styles --- */
.header-wrapper {
    position: relative;
    z-index: 10; 
    text-align: center;
    max-width: 1200px;
    /* Pulled cards up closer to the title */
    margin: 0 auto 20px auto; 
    padding: 0 20px;
}

.sub-badge {
    display: inline-block;
    background-color: #fff;
    color: #0d3c75;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border: 1px solid #dce4f2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- PNG TITLE SIZE UPDATE --- */
.testimonial-title-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-title-png {
    /* INCREASED SIZE: Now 800px to match previous large headers */
    width: 100%;
    max-width: 800px; 
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- Marquee Container --- */
.marquee-wrapper {
    position: relative;
    width: 100%;
    z-index: 5; 
    overflow: hidden; 
    padding: 5px 0; 
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px; 
    width: max-content;
    /* Animation: Wait & Go */
    animation: scroll-step 24s ease-in-out infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* --- Compact Card Design --- */
.testi-card-compact {
    width: 280px; 
    min-width: 280px; 
    height: 280px; 
    background: #ffffff;
    border-radius: 15px; 
    padding: 25px 20px; 
    box-shadow: 0 5px 20px rgba(13, 60, 117, 0.05);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border-bottom: 3px solid #0d3c75; 
}

.testi-card-compact:hover {
    transform: translateY(-5px);
    border-bottom-color: #f7941d;
}

.quote-bubble {
    width: 35px; 
    height: 35px;
    background: #f4f7fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #f7941d;
    font-size: 14px;
}

.card-body {
    flex-grow: 1; 
}

.quote-text {
    font-size: 13.5px; 
    line-height: 1.6;
    color: #555;
    font-style: italic;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-meta {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 15px;
}

.author-name {
    font-size: 14px; 
    font-weight: 700;
    color: #0d3c75;
    margin-bottom: 0;
}

.author-role {
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 6px;
}

.school-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #eef2ff;
    color: #0d3c75;
    padding: 3px 8px;
    border-radius: 4px;
}

/* --- ANIMATIONS --- */
@keyframes scroll-step {
    0%, 12% { transform: translateX(0px); }
    16.66%, 28.66% { transform: translateX(-600px); }
    33.33%, 45.33% { transform: translateX(-1200px); }
    50%, 62% { transform: translateX(-1800px); }
    66.66%, 78.66% { transform: translateX(-2400px); }
    83.33%, 95.33% { transform: translateX(-3000px); }
    100% { transform: translateX(-3600px); }
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .testimonial-section-modern {
        padding: 20px 0 30px 0;
        margin-top: 0;
    }
    .testimonial-title-png {
        max-width: 95%; /* Fits better on smaller mobile screens */
    }
    .testi-card-compact {
        width: 260px;
        min-width: 260px;
    }
    .marquee-track {
        gap: 15px;
        animation: scroll-mobile 30s linear infinite; 
    }
}
@keyframes scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================== 
   3. 5-COLUMN PARALLAX GALLERY (ALWAYS 5 COLUMNS)
   ============================================== */
.parallax-gallery {
    position: relative;
    width: 100%;
    height: 150vh; 
    background: #f4f7fc;
    overflow: hidden; 
    
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically to cover top/bottom edges */
    padding-top: 0; 
}

.gallery-wrapper {
    display: flex;
    gap: 10px; /* Reduced gap slightly so 5 columns fit better */
    
    /* Scale logic to cover corners (Edge-to-Edge) */
    transform: rotate(-15deg) scale(1.4); 
    transform-origin: center center;
    
    width: 160vw; /* Very wide to ensure it covers screen edges */
}

/* --- Columns --- */
.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    
    /* Force 5 columns: 100% / 5 = 20% max width */
    min-width: 0; /* Important: prevents columns from forcing overflow */
    max-width: 20%; 

    /* Animation */
    animation: simpleFloat 8s ease-in-out infinite;
}

/* Even columns float in reverse */
.gallery-col:nth-child(even) {
    animation-direction: reverse;
    animation-duration: 10s;
}

/* --- Images --- */
.gallery-col img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #ddd;
    min-height: 120px; /* Slightly smaller min-height to fit */
}

/* --- Responsive Updates --- */
@media screen and (max-width: 768px) {
    .parallax-gallery {
        height: 100vh;
    }
    .gallery-wrapper {
        width: 250vw; /* Make wrapper huge on mobile to fit 5 cols properly */
        transform: rotate(-10deg) scale(1.6);
        gap: 8px;
    }
    
    /* I removed the code that hid columns 4 and 5 here. 
       Now all 5 columns will show on mobile too. */
       
    .gallery-col {
        /* Ensure they stay side-by-side */
        max-width: 20%; 
    }
}

/* --- Animation Keyframes --- */
@keyframes simpleFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}

/* CONTACT FORM SECTION - Uses .join-movement-section from style.css */
/* exhibition.css loads AFTER style.css, so !important is required to enforce correct layout */
.contact-form-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* FORCE the correct 3-column grid layout — matches Home Page exactly */
.form-wrapper {
    display: grid !important;
    grid-template-columns: 280px 40px 1fr !important;
    align-items: center !important;
    background: #fff !important;
    padding: 10px 25px !important;
    border-radius: 35px !important;
    box-shadow: 0 25px 60px rgba(0, 71, 147, 0.1) !important;
    max-width: 820px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    border: 1px solid #f0f4f8 !important;
    gap: unset !important;
}

.input-group { margin-bottom: 8px; }
.input-group label { display: block; font-weight: 700; margin-bottom: 4px; color: #444; font-size: 0.8rem; }
.input-field { position: relative; display: block; width: 100%; }
.input-field i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #0077b6; z-index: 10; pointer-events: none; font-size: 14px; margin: 0 !important; }
.input-field input {
    width: 100% !important;
    padding: 8px 15px 8px 45px !important;
    border: 2px solid #f0f4f8 !important;
    border-radius: 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    background: #fcfdfe !important;
    outline: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    height: 38px !important;
}
.input-field input:focus { border-color: #0077b6 !important; background: #fff !important; outline: none !important; }

/* --- BUTTON GROUP (SIDE BY SIDE) --- */
.form-btn-group { display: flex; gap: 15px; margin-top: 10px; }

.btn-submit, .btn-expert {
    flex: 1; padding: 18px 10px; border: none; border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit { background: #ff6b6b; color: #fff; box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3); }
.btn-submit:hover { background: #fa5252; transform: translateY(-3px); }

.btn-expert { background: #003d71; color: #fff; box-shadow: 0 8px 20px rgba(0, 61, 113, 0.2); }
.btn-expert:hover { background: #002d54; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
        max-width: 500px !important;
    }
}
@media (max-width: 480px) { .form-btn-group { flex-direction: column; } }
