:root {
   --navy: #0a1628;
   --blue: #1a3c6e;
   --accent: #e8a020;
   --gold: #f5c842;
   --light: #f4f7fb;
   --white: #ffffff;
   --text: #2d3748;
   --muted: #718096;
 }

 

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'DM Sans', sans-serif;
   color: var(--text);
   background: var(--white);
   overflow-x: hidden;
 }

/* ═══════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════ */
 #mainNav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   transition: all .4s ease;
   background: transparent;
   color: black;
   padding: 18px 0;
 }

 #mainNav.scrolled {
   background: var(--navy);
   color: var(--white);
   padding: 10px 0;
   box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
 }

 #mainNav .navbar-brand img {
   height: 105px;
 }

 #mainNav .nav-link {
   color: rgba(3, 3, 3, 0.9);
   font-weight: 500;
   font-size: .92rem;
   letter-spacing: .5px;
   padding: 8px 14px !important;
   border-radius: 6px;
   transition: all .25s;
 }

 #mainNav.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

 #mainNav .nav-link:hover,
 #mainNav .nav-link.active {
   color:var(--gold);
   /* background: --accent; */
 }

 #mainNav .dropdown-menu {
   border: none;
   border-radius: 12px;
   box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
   background: var(--navy);
   padding: 10px 6px;
   margin-top: 6px;
   animation: dropIn .25s ease;
 }

 @keyframes dropIn {
   from {
     opacity: 0;
     transform: translateY(-8px)
   }

   to {
     opacity: 1;
     transform: translateY(0)
   }
 }

 #mainNav .dropdown-item {
   color: rgba(255, 255, 255, .8);
   font-size: .88rem;
   border-radius: 8px;
   padding: 8px 16px;
   transition: all .2s;
 }

 #mainNav .dropdown-item:hover {
   background: rgba(255, 255, 255, .1);
   color: var(--gold);
 }

 .navbar-toggler {
   border: none;
   padding: 6px 10px;
   background: rgba(255, 255, 255, .12);
   border-radius: 8px;
 }
 

 .navbar-toggler-icon {
   filter: invert(1);
 }

 .nav-cta {
   background: var(--accent) !important;
   color: var(--navy) !important;
   border-radius: 30px !important;
   padding: 8px 20px !important;
   font-weight: 600 !important;
   margin-left: 8px;
 }

 .nav-cta:hover {
   background: var(--gold) !important;
   color: var(--navy);
   transform: translateY(-1px);
 }



 /* ═══════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════ */
 /* =========================
   GALLERY HEADING FIX
========================= */

#gallery {
  padding: 120px 0; /* 184px bahut zyada tha */
  background: var(--white);
}

/* heading wrapper */
#gallery .text-center {
  max-width: 700px;
  margin: 0 auto 50px;
}

/* label */
#gallery .sec-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8a020;
  margin-bottom: 10px;
}

/* main title */
#gallery .sec-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* divider */
#gallery .sec-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #e8a020, #f5c842);
  margin: 12px auto 0;
  border-radius: 30px;
}

 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-template-rows: 240px 240px;
   gap: 16px;
 }

 .gallery-item {
   border-radius: 16px;
   overflow: hidden;
   position: relative;
   cursor: pointer;
 }

 .gallery-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform .5s ease;
 }

 .gallery-item:hover img {
   transform: scale(1.08);
 }

 .gallery-item::after {
   content: '\f4c3';
   font-family: 'bootstrap-icons';
   position: absolute;
   inset: 0;
   background: rgba(10, 22, 40, .55);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   color: var(--white);
   opacity: 0;
   transition: opacity .35s;
 }

 .gallery-item:hover::after {
   opacity: 1;
 }











 /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
 footer {
   background: var(--navy);
   color: rgba(255, 255, 255, .7);
   padding: 80px 0 0;
 }

 /*   */
 .footer-brand p {
   font-size: .88rem;
   line-height: 1.7;
   color: rgba(255, 255, 255, .55);
   max-width: 280px;
 }

 .footer-social {
   display: flex;
   gap: 10px;
   margin-top: 24px;
 }

 .footer-social a {
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background: rgba(255, 255, 255, .08);
   display: flex;
   align-items: center;
   justify-content: center;
   color: rgba(255, 255, 255, .65);
   font-size: 1rem;
   transition: all .3s;
   text-decoration: none;
 }

 .footer-social a:hover {
   background: var(--accent);
   color: var(--navy);
   transform: translateY(-3px);
 }

 .footer-heading {
   font-family: 'DM Sans', sans-serif;
   font-size: .78rem;
   font-weight: 700;
   letter-spacing: 2.5px;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 22px;
   position: relative;
   padding-bottom: 12px;
 }

 .footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 30px;
   height: 2px;
   background: var(--accent);
   border-radius: 2px;
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-links li {
   margin-bottom: 10px;
 }

 .footer-links a {
   color: rgba(255, 255, 255, .55);
   text-decoration: none;
   font-size: .88rem;
   display: flex;
   align-items: center;
   gap: 8px;
   transition: all .25s;
 }

 .footer-links a::before {
   content: '';
   width: 5px;
   height: 5px;
   border-radius: 50%;
   background: var(--accent);
   flex-shrink: 0;
   transition: transform .25s;
 }

 .footer-links a:hover {
   color: var(--white);
   transform: translateX(4px);
 }

 .footer-links a:hover::before {
   transform: scale(1.5);
 }

 .footer-contact-item {
   display: flex;
   gap: 12px;
   margin-bottom: 16px;
   align-items: flex-start;
 }

 .footer-contact-item i {
   color: var(--accent);
   font-size: 1rem;
   margin-top: 2px;
   flex-shrink: 0;
 }

 .footer-contact-item span {
   font-size: .86rem;
   color: rgba(255, 255, 255, .55);
   line-height: 1.5;
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .08);
   margin-top: 60px;
   padding: 22px 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 12px;
 }

 .footer-bottom p {
   margin: 0;
   font-size: .83rem;
   color: rgba(255, 255, 255, .4);
 }

 .footer-bottom a {
   color: var(--gold);
   text-decoration: none;
 }

 