 /* --- Using "watch" / party color as primary. If you want exact hex, tell me and I'll change. --- */
    :root{
      --brand-primary: #e76f24;   /* chosen watch-like orange — change if you want exact */
      --brand-accent: #0b6b3a;    /* secondary green accent */
      --nav-bg: rgba(255,255,255,0.95);
      --text-dark: #1b1b1b;
      --muted: #6c757d;
      --card-bg: #ffffff;
    }

    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;}
    .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:92vh; display:flex; align-items:center; background: center/cover no-repeat; 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)}
    .about-img img{width:100%; height:100%; object-fit:cover; display:block}
    .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}

    /* FOOTER */
    footer{background:#0f0f0f; color:#cfcfcf; padding:22px 0}
    .footer-left{font-weight:800; color:#fff}



    