 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
      :root {
        --primary: #312885;
        --accent: #0c59a6;
        --highlight: #e85d04;
        --danger: #ff6b6b;
        --green: #0b6623;
        --text-on-dark: #ffffff;
        --bg: #0f0f14;
        --bar-height: 15vh;
        --gap: 1rem;
        --radius: 12px;
            --glass: rgba(255, 255, 255, 0.04);
      }

      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        text-decoration: none;
      }
      html,
      body {
        height: 100%;
        font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial;
        background: var(--bg);
        color: var(--text-on-dark);
      }
      a {
        color: inherit;
      }

      .contact-bar {
        min-height: var(--bar-height);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: clamp(0.5rem, 1.5vw, 1.25rem);
        gap: var(--gap);
        background: linear-gradient(
          135deg,
          rgba(49, 40, 133, 0.95),
          rgba(12, 89, 166, 0.92)
        );
        position: relative;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(6px);
      }

      .contact-inner {
        width: min(1100px, 95%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 1rem;
        border-radius: 10px;
        background: var(--glass);
        backdrop-filter: blur(3px);
        transition: transform 0.18s ease, box-shadow 0.18s ease,
          background 0.18s ease;
        cursor: pointer;
        user-select: none;
      }
      .contact-item:focus {
        outline: 3px solid rgba(255, 255, 255, 0.12);
      }
      .contact-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
      }

      .contact-icon {
        min-width: 46px;
        min-height: 46px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        font-weight: 700;
      }
      .contact-meta {
        display: flex;
        flex-direction: column;
        line-height: 1;
      }
      .contact-label {
        font-size: 0.8rem;
        opacity: 0.9;
      }
      .contact-value {
        font-weight: 700;
        font-size: 1.05rem;
      }

      .chip {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
      }

      .tooltip {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: calc(-1.25rem);
        background: #111;
        padding: 0.45rem 0.6rem;
        border-radius: 8px;
        font-size: 0.85rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease, transform 0.15s ease;
        color: var(--text-on-dark);
      }
      .tooltip.show {
        opacity: 1;
        transform: translateX(-50%) translateY(-6px);
      }

      @media (max-width: 900px) {
        .contact-inner {
          flex-direction: column;
          gap: 0.75rem;
          align-items: stretch;
        }
        .contact-item {
          justify-content: space-between;
        }
      }

      @media (max-width: 480px) {
        :root {
          --bar-height: 12vh;
        }
        .contact-value {
          font-size: 0.95rem;
        }
        .contact-icon {
          min-width: 40px;
          min-height: 40px;
        }
      }

      :focus {
        outline-offset: 3px;
      }

      .accent-pill {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 60%;
        border-radius: 12px;
        background: linear-gradient(180deg, var(--highlight), var(--danger));
        box-shadow: 0 6px 18px rgba(232, 93, 4, 0.16);
      }
      /* part-2 */
      .part-2{
        height: auto;
        width: 100%;
        overflow-x: hidden;
      }
      
  .hero-section {
    position: relative;
    height: 23vh;
    width: 100%;
    background: linear-gradient(135deg, #ff4b2b, #ff416c, #312885, #0c59a6, #00917c);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }

  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
  }

  .hero-logo img {
    width: 140px;
    height: auto;
    border-radius: 50%;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .hero-logo img:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  }

  .hero-text {
    text-align: right;
  }

  .hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  #typewriter {
    border-right: 3px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: blinkCursor 0.7s infinite;
  }

  @keyframes blinkCursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: white; }
  }

  /* ==== Social Icons ==== */
  .social-icons {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }

  .social-icons a {
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
    animation: floatIcon 3s ease-in-out infinite;
  }

  .social-icons a:nth-child(2) { animation-delay: 0.3s; }
  .social-icons a:nth-child(3) { animation-delay: 0.6s; }
  .social-icons a:nth-child(4) { animation-delay: 0.9s; }
  .social-icons a:nth-child(5) { animation-delay: 1.2s; }

  @keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .social-icons a:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
  }

  /* ===== Media Queries ===== */
  @media (max-width: 900px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
      
    }

    .hero-logo img {
      width: 120px;
      margin-bottom: 12px;
    }

    .hero-text h1 {
      font-size: 1.9rem;
      text-align: center;
    }

    .social-icons {
      justify-content: center;
    }
    .part-12{
        /* display: none; */
    }
   
  }

  @media (max-width: 480px) {
    .hero-logo img {
      width: 100px;
    }

    .hero-text h1 {
      font-size: 1.4rem;
    }

    .social-icons a {
      font-size: 1.1rem;
      gap: 10px;
    }
    .part-12{
        /* display: none; */
    }
   
  }
  /* part-3 */
  .part-3{
    height: auto;
    width: 100%;
  }
 /* part-14 */
 .part-14{
    height: auto;
    width: 100%;
    overflow-x: hidden;
 }
  #ranjanParallaxSection {
    width: 100%;
  }

  /* 🖼️ Each Slide */
  .ranjan-slide {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
  }

  .ranjan-slide1 {
    background-image: url("https://img.freepik.com/premium-photo/group-kids-going-school-together_109285-2833.jpg?w=2000");
  }

  .ranjan-slide2 {
    background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f");
  }

  .ranjan-slide3 {
    background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c");
  }

  .ranjan-slide4 {
    background-image: url("https://images.unsplash.com/photo-1510936111840-65e151ad71bb");
  }

  /* 🌑 Overlay */
  .ranjan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  /* ✨ Content */
  .ranjan-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
  }

  .ranjan-heading {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: ranjanFadeIn 1.5s ease-in-out;
  }

  /* 🎯 Button */
  .ranjan-btn {
    padding: 12px 30px;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .ranjan-btn:hover {
    background: white;
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }

  /* 🔄 Animations */
  @keyframes ranjanFadeIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 📱 Responsive */
  @media (max-width: 768px) {
    .ranjan-heading {
      font-size: 1.8rem;
    }
    .ranjan-btn {
      padding: 10px 20px;
    }
    .ranjan-slide {
      height: 60vh;
      background-attachment: scroll;
    }
  }
  /* part-15 */
  .part-15{
    height: auto;
    width: 100%;
  }
  /* ========== Basic layout & resets ========== */
.gagan-section { position: relative; width: 100%; height: 100vh; overflow: hidden; font-family: 'Poppins', sans-serif; }
.gagan-particles { position: absolute; inset: 0; z-index: 5; pointer-events: none; }

/* Vanta wrapper that holds videos */
.gagan-vanta-wrapper { position: absolute; inset: 0; z-index: 1; }

/* Video Swiper - each video full cover */
.gagan-video-swiper, .gagan-video-swiper .swiper-wrapper { height: 100%; }
.gagan-video-slide { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gagan-video { min-width: 100%; min-height: 100%; object-fit: cover; }

/* overlay with heading & review slider */
.gagan-overlay { position: absolute; inset: 0; z-index: 10; display:flex; align-items:center; justify-content:center; pointer-events: none; }
.gagan-container { width: 100%; max-width: 1100px; margin: 0 auto; text-align: center; color: #fff; pointer-events: auto; padding: 40px; }

/* Heading */
#gaganHeading { font-size: 2.4rem; margin-bottom: 22px; text-shadow: 0 8px 24px rgba(0,0,0,0.6); }

/* Reviews swiper (overlay card row) */
.gagan-reviews-swiper { width: 100%; }
.gagan-review-card { display:flex; align-items:center; justify-content:center; padding: 18px; box-sizing: border-box; }
.gagan-review-content { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 20px 26px; max-width: 760px; box-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.gagan-review-text { font-size: 1.05rem; line-height:1.5; color: #fff; margin: 0 0 12px 0; }
.gagan-review-author { font-weight:700; color: #ffd580; margin:0; }

/* Controls */
.gagan-swiper-controls { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:16px; }
.gagan-prev, .gagan-next { background: rgba(255,255,255,0.08); color: #fff; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; user-select:none; box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.gagan-pagination { min-width: 100px; }

/* small screen tweaks */
@media (max-width: 880px) {
  #gaganHeading { font-size: 1.6rem; }
  .gagan-review-content { padding: 16px; }
}

/* subtle hover for prev/next to show */
.gagan-prev:hover, .gagan-next:hover { transform: scale(1.08); background: rgba(255,255,255,0.14); }

/* make sure videos don't block interactions with overlays */
.gagan-video { pointer-events: none; }

/* part-16 */
