
/* ================= ROOT COLORS ================= */
:root {
  --primary: #2E5DAA;
  --secondary: #D4A64F;
  --light: #ffffff;
  --dark: #1a1a1a;
  --muted: #6c757d;
}

/* ================= GLOBAL RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}


/* ================= NAVBAR ================= */
.main-nav{
  background:#ffffff;
  padding:14px 0;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  transition:.3s ease;
  z-index:999;
}

/* LOGO */
.nav-logo{
  height:125px;
}

/* BRAND TEXT */
.brand-title{
  font-size:20px;
  font-weight:800;
  color:#2E5DAA;
  line-height:1;
}

.brand-sub{
  font-size:13px;
  font-weight:600;
  color:#D4A64F;
}

/* NAV LINKS */
.nav-link{
  font-weight:600;
  color:#1a1a1a;
  position:relative;
  padding:6px 0;
  transition:.3s ease;
}

/* GOLD UNDERLINE ANIMATION */
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:3px;
  background:#D4A64F;
  transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-link:hover{
  color:#2E5DAA;
}

/* CALL BUTTON */
.call-btn{
  background:#2E5DAA;
  color:#fff;
  padding:8px 22px;
  border-radius:30px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:.3s ease;
  text-decoration: none;
}

.call-btn:hover{
  background:#D4A64F;
  color:#000;
}

/* TOGGLER ICON */
.navbar-toggler{
  border:none;
  font-size:26px;
  color:#2E5DAA;
}

.navbar-toggler:focus{
  box-shadow:none;
}

/* MOBILE MENU */
@media(max-width:991px){

  .navbar-collapse{
    background:#ffffff;
    padding:20px;
    border-radius:12px;
    margin-top:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
  }

  .nav-link{
    padding:10px 0;
  }

  .call-btn{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }

  .brand-title{
    display: none;
  }

  .brand-sub{
    display: none;
  }
}



/* ================= HERO SECTION ================= */
.hero-section{
  position:relative;
}

.carousel-item img{
  height:95vh;
  object-fit:cover;
}

/* BLUE OVERLAY */
.carousel-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(51, 51, 51, 0.75),
    rgba(22, 22, 22, 0.75)
  );
}

/* CONTENT CENTER */
.hero-content{
  z-index:2;
  bottom:50%;
  transform:translateY(50%);
}

.hero-content h1{
  font-size:clamp(30px,5vw,60px);
  font-weight:800;
  color:#fff;
}

.hero-content p{
  font-size:18px;
  margin:20px 0;
}

/* BUTTON */
.hero-btn{
  padding:12px 32px;
  background:#D4A64F;
  color:#000;
  font-weight:700;
  border-radius:30px;
  transition:.3s ease;
  display:inline-block;
  text-decoration: none;
}

.hero-btn:hover{
  background:#fff;
  color:#000;
}

.hero-btn.gold{
  background:#fff;
  color:#2E5DAA;
}

.hero-btn.gold:hover{
  background:#D4A64F;
}

/* CONTROLS */
.custom-control{
  background-color:#D4A64F;
  border-radius:50%;
  padding:18px;
}

/* INDICATORS */
.carousel-indicators [data-bs-target]{
  background-color:#fff;
  width:12px;
  height:12px;
  border-radius:50%;
}

.carousel-indicators .active{
  background-color:#D4A64F;
}

/* RESPONSIVE */
@media(max-width:768px){
  .carousel-item img{
    height:75vh;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-content p{
    font-size:14px;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section{
  padding:100px 0;
  background:#f8f9fa;
}

.about-img img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content h2{
  font-weight:800;
  font-size:clamp(28px,3vw,40px);
  margin-bottom:20px;
}

.about-content h2 span{
  color:#2E5DAA;
}

.about-content p{
  color:#555;
  margin-bottom:15px;
}

/* FEATURES */
.about-features{
  margin-top:20px;
  margin-bottom:25px;
}

.feature{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-weight:600;
}

.feature i{
  color:#D4A64F;
  font-size:18px;
}

/* BUTTON */
.about-btn{
  padding:10px 28px;
  background:#2E5DAA;
  color:#fff;
  border-radius:30px;
  font-weight:600;
  transition:.3s ease;
  text-decoration: none;
}

.about-btn:hover{
  background:#D4A64F;
  color:#000;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-section{
    padding:70px 0;
  }
}


/* ================= TICKER SECTION ================= */
.ticker-section{
  background:#2E5DAA;
  padding:18px 0;
  overflow:hidden;
  position:relative;
}

/* GOLD TOP & BOTTOM LINE */
.ticker-section::before,
.ticker-section::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:#D4A64F;
}

.ticker-section::before{ top:0; }
.ticker-section::after{ bottom:0; }

.ticker-wrapper{
  white-space:nowrap;
  overflow:hidden;
}

.ticker-track{
  display:inline-block;
  animation:scrollLeft 25s linear infinite;
}

.ticker-track span{
  display:inline-block;
  margin:0 20px;
  color:#fff;
  font-weight:600;
  font-size:16px;
}

/* ANIMATION */
@keyframes scrollLeft{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .ticker-track span{
    font-size:14px;
    margin:0 15px;
  }
}


/* ================= PREMIUM SERVICES ================= */
.premium-services{
  padding:110px 0;
  background:#2E5DAA;
  position:relative;
}

/* TITLE */
.premium-services .section-title h2{
  color:#fff;
  font-weight:800;
  font-size:clamp(30px,3vw,42px);
}

.premium-services .section-title span{
  color:#D4A64F;
}

.premium-services .section-title p{
  color:#ddd;
}

/* CARD */
.premium-card{
  background:#ffffff;
  padding:40px 25px;
  border-radius:25px;
  text-align:center;
  transition:.4s ease;
  height:100%;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
  position:relative;
  overflow:hidden;
}

/* ICON */
.premium-card i{
  font-size:40px;
  color:#2E5DAA;
  margin-bottom:20px;
  display:block;
  transition:.4s ease;
}

/* TITLE */
.premium-card h4{
  font-weight:700;
  margin-bottom:15px;
}

/* TEXT */
.premium-card p{
  font-size:14px;
  color:#555;
}

/* GOLD HOVER EFFECT */
.premium-card:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.premium-card:hover i{
  color:#D4A64F;
}

/* RESPONSIVE */
@media(max-width:768px){
  .premium-services{
    padding:80px 0;
  }
}


/* ================= WHY SECTION ================= */
.why-section{
  padding:110px 0;
  background:#f8f9fa;
}

.why-section .section-title h2{
  font-weight:800;
  font-size:clamp(30px,3vw,42px);
}

.why-section .section-title span{
  color:#2E5DAA;
}

.why-section .section-title p{
  color:#666;
}

/* CARD */
.why-card{
  background:#ffffff;
  padding:40px 25px;
  border-radius:20px;
  text-align:center;
  transition:.4s ease;
  height:100%;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* ICON CIRCLE */
.why-icon{
  width:75px;
  height:75px;
  background:#2E5DAA;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:0 auto 20px;
  font-size:30px;
  transition:.4s ease;
}

/* TITLE */
.why-card h4{
  font-weight:700;
  margin-bottom:12px;
}

/* TEXT */
.why-card p{
  font-size:14px;
  color:#555;
}

/* HOVER EFFECT */
.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.why-card:hover .why-icon{
  background:#D4A64F;
  color:#000;
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-section{
    padding:80px 0;
  }
}


/* ================= PREMIUM GALLERY ================= */
.gallery-section{
  padding:120px 0;
  background:#f4f6f9;
}

.gallery-section .section-title span{
  color:#2E5DAA;
}

/* CARD LINK */
.gallery-card{
  display:block;
  text-decoration:none;
}

/* CARD BOX */
.gallery-box{
  position:relative;
  width:100%;
  height:300px;              /* 🔥 FIXED HEIGHT */
  overflow:hidden;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  transition:all .4s ease;
  background:#000;
}

/* IMAGE SAME SIZE */
.gallery-box img{
  width:100%;
  height:100%;
  object-fit:cover;          /* 🔥 PERFECT FILL */
  transition:all .5s ease;
}

/* PREMIUM OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(46,93,170,.85),
    rgba(46,93,170,.85)
  );
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:all .4s ease;
}

.gallery-overlay i{
  font-size:45px;
  color:#fff;
  transition:.3s;
}

/* HOVER EFFECT */
.gallery-box:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 70px rgba(0,0,0,.25);
  border:3px solid #D4A64F;
}

.gallery-box:hover img{
  transform:scale(1.12);
}

.gallery-box:hover .gallery-overlay{
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:992px){
  .gallery-box{
    height:260px;
  }
}

@media(max-width:576px){
  .gallery-box{
    height:220px;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section{
  padding:120px 0;
  background:#f8f9fa;
}

/* TITLE */
.contact-section .section-title span{
  color:#2E5DAA;
}

/* CARD */
.contact-card{
  background:#ffffff;
  padding:40px 25px;
  border-radius:22px;
  text-align:center;
  transition:.4s ease;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  height:100%;
  position:relative;
  overflow:hidden;
}

/* ICON CIRCLE */
.contact-icon{
  width:75px;
  height:75px;
  background:#2E5DAA;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:0 auto 20px;
  font-size:28px;
  transition:.4s ease;
}

/* SPECIAL ICON COLORS */
.contact-icon.whatsapp{
  background:#25D366;
}

.contact-icon.location{
  background:#D4A64F;
  color:#000;
}

/* NAME */
.contact-card h5{
  font-weight:700;
  margin-bottom:10px;
}

/* LINK */
.contact-card a{
  font-size:18px;
  font-weight:700;
  color:#2E5DAA;
  text-decoration:none;
  transition:.3s;
}

.contact-card a:hover{
  color:#D4A64F;
}

/* HOVER EFFECT */
.contact-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.contact-card:hover .contact-icon{
  background:#D4A64F;
  color:#000;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-section{
    padding:80px 0;
  }
}


/* ================= MAP SECTION ================= */
.map-section{
  padding:110px 0;
  background:#f8f9fa;
}

.map-section .section-title span{
  color:#2E5DAA;
}

/* MAP WRAPPER */
.map-wrapper{
  position:relative;
  width:100%;
  height:450px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  border:4px solid #D4A64F;
}

/* IFRAME */
.map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
}

/* RESPONSIVE */
@media(max-width:768px){
  .map-wrapper{
    height:300px;
  }
}


/* ================= PREMIUM FOOTER ================= */
.premium-footer{
  background:#1f3f7a;
  color:#fff;
  padding:100px 0 40px;
}

/* LOGO */
.footer-logo{
  height:120px;
  margin-bottom:15px;
}

.footer-brand h4{
  font-weight:800;
  color:#D4A64F;
}

/* ABOUT TEXT */
.footer-about{
  font-size:14px;
  opacity:.9;
}

/* TITLE */
.footer-title{
  font-weight:700;
  margin-bottom:20px;
  color:#D4A64F;
}

/* LINKS */
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
  font-size:14px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  transition:.3s ease;
}

.footer-links a:hover{
  color:#D4A64F;
  padding-left:5px;
}

/* CONTACT ICON */
.premium-footer i{
  margin-right:8px;
  color:#D4A64F;
}

/* SOCIAL ICONS */
.footer-social a{
  display:inline-flex;
  width:40px;
  height:40px;
  background:#ffffff;
  color:#1f3f7a;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:10px;
  transition:.3s ease;
}

.footer-social a:hover{
  background:#D4A64F;
  color:#000;
}

/* COPYRIGHT */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:50px;
  padding-top:20px;
  font-size:14px;
}

.footer-bottom a{
  color:#D4A64F;
  text-decoration:none;
  font-weight:600;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
  .premium-footer{
    text-align:center;
  }
}


/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:65px;
  height:65px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  transition:.3s ease;
}

/* GOLD GLOW RING */
.whatsapp-float::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#D4A64F;
  z-index:-1;
  animation:pulse 2s infinite;
  opacity:.6;
}

/* PULSE ANIMATION */
@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:.6;
  }
  70%{
    transform:scale(1.6);
    opacity:0;
  }
  100%{
    transform:scale(1);
    opacity:0;
  }
}

/* HOVER EFFECT */
.whatsapp-float:hover{
  transform:translateY(-5px) scale(1.1);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* TOOLTIP */
.whatsapp-tooltip{
  position:absolute;
  right:80px;
  background:#2E5DAA;
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  font-size:14px;
  white-space:nowrap;
  opacity:0;
  transition:.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip{
  opacity:1;
}

/* MOBILE ADJUST */
@media(max-width:768px){
  .whatsapp-float{
    width:55px;
    height:55px;
    font-size:24px;
  }

  .whatsapp-tooltip{
    display:none;
  }
}


/* ================= SCROLL TO TOP ================= */
.scroll-top{
  position:fixed;
  bottom:100px;
  right:25px;
  width:55px;
  height:55px;
  border:none;
  background:#2E5DAA;
  color:#fff;
  border-radius:50%;
  font-size:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all .3s ease;
  z-index:9998;
}

/* SHOW WHEN ACTIVE */
.scroll-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* GOLD HOVER EFFECT */
.scroll-top:hover{
  background:#D4A64F;
  color:#000;
  transform:translateY(-5px);
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* MOBILE */
@media(max-width:768px){
  .scroll-top{
    width:45px;
    height:45px;
    font-size:18px;
    bottom:90px;
  }
}
