 /* --- Using "watch" / party color as primary. If you want exact hex, tell me and I'll change. --- */
    :root{
      --brand-primary: #e02f91;   /* chosen watch-like orange — change if you want exact */
      --brand-accent: #8a225b;    /* secondary green accent */
      --nav-bg: rgba(255,255,255,0.95);
      --text-dark: #1b1b1b;
      --muted: #6c757d;
      --card-bg: #ffffff;
    }

    html, body {
  overflow-x: hidden; /* ✅ stops horizontal scroll */
}


    body{font-family: Inter, Poppins, system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial; color:var(--text-dark);}

    /* NAVBAR */
.navbar-custom {
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  transition: box-shadow .25s, background .25s;
  padding: 16px 0; /* ✅ this controls height */
}

    .navbar-custom.scrolled{box-shadow:0 6px 20px rgba(231,111,36,0.12);}
    .navbar-brand{font-weight:800; color:var(--brand-primary);} 
    .nav-link{color:var(--muted); margin-right:12px; font-weight:600}
    .nav-link:hover{color:var(--brand-primary)}

    /* Banner */
.banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('img/banner-img.webp') center center / 100% 100% no-repeat; /* ✅ fix */
  position: relative;
}
.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(231,111,36,0.18), rgba(0,0,0,0.18));
}
.banner-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}
.hero-name {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.hero-sub {
  font-size: 1.05rem;
  margin-top: 8px;
  opacity: .95;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  padding: 18px 22px;
  border-radius: 10px;
  display: inline-block;
}


    /* Section headings centered */
    .section-title{text-align:center; font-weight:800; margin-bottom:28px; color:var(--brand-primary)}

    /* ABOUT */
.about-section {
  padding: 70px 0;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11,107,58,0.08);
  height: 100%;              /* ✅ Let Bootstrap row control equal height */
  display: flex;
  align-items: stretch;
}

.about-img img {
  width: 100%;
  height: auto;              /* ✅ natural height maintained */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.about-text {
  line-height: 1.75;
}


    /* Achievements / Manifesto */
    .list-box{background:var(--card-bg); border-radius:10px; padding:22px; box-shadow:0 8px 22px rgba(15,15,15,0.05);}

    /* GALLERY STYLING */
#gallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#gallery img {
  width: 100%;
  height: 555px; /* fixed uniform height */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 70px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

/* social media boxes */
.social-box {
  background: white;
  border-radius: 12px;
  padding: 30px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-box i {
  font-size: 40px;
  margin-bottom: 10px;
}

.social-box h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.social-box a {
  font-weight: 500;
}

/* Hover Effects per platform */
.fb:hover { background: #1877f2; color: white; }
.ig:hover { background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB); color: white; }
.tw:hover { background: #000; color: white; }
.yt:hover { background: #ff0000; color: white; }

.social-box:hover i,
.social-box:hover h5,
.social-box:hover a {
  color: white !important;
}



    /* VIDEO slider - increased height to 612px */
    .video-slide video{width:100%; height:612px; border-radius:10px; object-fit:cover}
    @media (max-width:767px){ .video-slide video{height:300px} .hero-name{font-size:1.6rem} }

    /* CONTACT - layout: top contact info, below four equal boxes */
    .contact{padding:60px 0; background:#f7f7f7}
    .contact .info-card{background:linear-gradient(90deg,var(--brand-primary),var(--brand-accent)); color:#fff; padding:18px; border-radius:10px}
    .social-box{background:#fff; border-radius:8px; border:1px solid #e9ecef; height:330px; overflow:hidden}
    .social-box .frame{height:100%; overflow:auto}

    .info-card i {
  color: #fff;           /* keep consistent with white text */
  font-size: 1rem;       /* or 1.1rem if you want slightly larger */
  vertical-align: middle;
}


    /* FOOTER */
    footer{background:#0f0f0f; color:#cfcfcf; padding:22px 0}
    .footer-left{font-weight:800; color:#fff}


    

    /* privacy policy page  */
    .privacy-section { padding: 100px 0 60px; }
    .privacy-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 40px; box-shadow: 0 3px 15px rgba(0,0,0,0.05); }
    .section-title { color: var(--brand-primary); font-weight: 800; margin-bottom: 20px; }
    .privacy-meta { color: var(--muted); font-size: 0.95rem; margin-bottom: 15px; }
    h3 { color: var(--brand-primary); margin-top: 40px; font-weight: 700; }
    h4 { color: var(--brand-accent); margin-top: 25px; font-weight: 600; }
    ul { padding-left: 20px; }
    li { margin-bottom: 6px; }
    a { color: var(--brand-primary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    @media (max-width: 768px) {
      .privacy-card { padding: 25px; }
      .privacy-section { padding-top: 80px; }
    }


/* privacy banner  */
.inner-hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('img/breadcumb.webp') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.inner-hero h1 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
}

.inner-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.inner-hero p a {
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 600;
}

.inner-hero p a:hover {
  text-decoration: underline;
}


/* Terms and Condition section start  */
    /* Hero / Breadcrumb Section */
    .terms-hero {
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                  url('assets/images/banner/terms-banner.webp') center/cover no-repeat;
      color: #fff;
      padding: 100px 0;
      text-align: center;
    }
    .terms-hero h1 {
      font-weight: 700;
      font-size: 2.5rem;
    }
    .terms-hero p a {
      color: #fff;
      text-decoration: underline;
      opacity: 0.9;
    }

    /* Content Styling */
    .terms-section {
      padding: 60px 0;
    }
    .terms-section h2 {
      color: var(--brand-primary);
      font-weight: 700;
      margin-top: 40px;
      margin-bottom: 15px;

    }
    .terms-section ul {
      list-style-type: disc;
      padding-left: 20px;
    }
    .terms-section li {
      margin-bottom: 8px;
    }