:root{
  --navy:#0d2c54;
  --navy-dark:#091d38;
  --blue:#1e5fa8;
  --blue-light:#eaf2fb;
  --gray-text:#6c7683;
}

/* ===== Subtle Premium CSS Entrance Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.anim-fade-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.anim-fade-right {
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.anim-scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

html, body{
  font-family:'Poppins',sans-serif;
  color:#333;
  overflow-x: hidden;
  width: 100%;
}
p, span {
  font-family: 'Inter', sans-serif;
}
p {
  font-size: 14px;
  font-weight: 400;
}
span:not([class*="fa-"]):not([class*="bi-"]):not(.stats-num):not(.stats-icon):not(.icon-circle):not(.value-check):not(.carousel-control-prev-icon):not(.carousel-control-next-icon):not(.plot-badge):not(.status-badge) {
  font-size: 16px;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .hero-heading, .stat-num, .font-display {
  font-family: 'Poppins', sans-serif !important;
}
h1, h2, .hero-title, .section-title, .hero-heading {
  font-size: 40px !important;
  font-weight: 700 !important;
}
@media (max-width: 767px) {
  h1, h2, .hero-title, .section-title, .hero-heading {
    font-size: 28px !important;
  }
}
h1 *, h2 *, h3 *, h4 *, h5 *, h6 *, 
.section-title *, .hero-title *, .hero-heading *, .font-display * {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
a{ text-decoration:none; }

/* Top bar */
.topbar{
  background:var(--navy-dark);
  color:#cfd8e3;
  font-size:0.85rem;
  padding: 8px 15px;
}
.topbar a{ color:#cfd8e3; }
.topbar .social-icon{
  width:28px;height:28px;
  background:rgba(255,255,255,0.12);
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  margin-left:6px;
  color:#fff;
  font-size:0.8rem;
}

/* Navbar */
.main-navbar{
  top:0;
  z-index:1030;
  height: 95px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  transition:box-shadow 0.25s ease;
      padding: 0px 15px;
}
.main-navbar .container {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
}
.main-navbar .navbar-brand {
  position: relative !important;
  height: 100% !important;
  width: 200px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
}
.navbar-logo-img {
  position: absolute !important;
  
  left: 0 !important;
  height: 85px !important;
  width: auto !important;
  max-width: none !important;
  z-index: 1050 !important;
  display: block !important;
}
@media (max-width: 991.98px) {
  .main-navbar {
    height: 95px !important;
  }
  .main-navbar .navbar-brand {
    width: 140px !important;
  }
  /*.navbar-logo-img {
    height: 160px !important;
    top: -30px !important;
  }*/
}
.main-navbar.scrolled{
  box-shadow:0 6px 18px rgba(13,44,84,0.12) !important;
}
.navbar-brand-logo{
  width:48px;height:48px;
  min-width:48px;
  background:var(--navy);
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;
  font-size:1.3rem;
  flex-shrink:0;
}
.navbar-brand{
  min-width:0;
}
.brand-title{
  font-family:'Playfair Display',serif;
  font-weight:700;
  color:var(--navy);
  font-size:1.1rem;
  line-height:1.15;
  white-space:nowrap;
}
.brand-sub{
  font-size:0.6rem;
  letter-spacing:0.4px;
  color:var(--gray-text);
  font-weight:500;
  white-space:nowrap;
}
.nav-link-custom{
  color:#333 !important;
  font-weight:500;
  margin:0 12px;
  padding:8px 0 !important;
  position:relative;
  white-space:nowrap;
}
.nav-link-custom.active{ color:var(--navy) !important; }
.nav-link-custom.active::after{
  content:'';
  position:absolute;
  left:0; bottom:2px;
  width:100%; height:2px;
  background:var(--navy);
}
@media (max-width: 991.98px){
  .navbar-collapse{
    background:#fff;
    margin-top:14px;
    padding:14px 4px 4px;
    border-top:1px solid #eef1f5;
  }
  .nav-link-custom{ margin:0; padding:10px 4px !important; }
  .nav-link-custom.active::after{ display:none; }
  .navbar-nav{ margin-bottom:10px; }
  .brand-sub{ display:none; }
}
.btn-navy{
  background:var(--navy);
  color:#fff;
  font-weight:500;
  padding:10px 22px;
  border-radius:4px;
}
.btn-navy:hover{ background:var(--navy-dark); color:#fff; }
.btn-outline-navy{
  border:1px solid #d7dde5;
  color:var(--navy);
  font-weight:500;
  padding:10px 22px;
  border-radius:4px;
}
.btn-outline-navy:hover{ background:var(--blue-light); color:var(--navy); }

/* Hero Carousel */
/* Split Hero Slider */
.hero-slide-split {
  background: #f8fafc;
  padding: 50px 0;
  display: flex;
  align-items: center;
  min-height: 420px;
}
.slider-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(13, 44, 84, 0.12);
  aspect-ratio: 16/10;
}
.slider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.carousel-item:hover .slider-img-wrap img {
  transform: scale(1.04);
}
@media (max-width: 767.98px) {
  .hero-slide-split {
    padding: 30px 0;
    min-height: auto;
  }
  .hero-heading {
    font-size: 1.8rem !important;
  }
}
.eyebrow{
  color:var(--blue);
  font-weight:600;
  letter-spacing:1px;
  font-size:0.9rem;
}
.hero-heading{
  font-weight:800;
  font-size:2.9rem;
  line-height:1.15;
  color:#1a1a2e;
}
.hero-heading .accent{
  color:var(--navy);
}
.hero-text{
  color:#555;
  max-width:480px;
}
.carousel-control-prev, .carousel-control-next{
  width:5%;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
  background-color:var(--navy);
  border-radius:50%;
  padding:14px;
  background-size:50%;
}
.carousel-indicators [data-bs-target]{
  background-color:var(--navy);
  width:10px; height:10px;
  border-radius:50%;
}

/* Stats bar */
.stats-bar{
  background:var(--navy);
  color:#fff;
}
.stats-icon{
  width:56px; height:56px;
  background:rgba(255,255,255,0.12);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
  margin-right:14px;
}
.stats-num{
  font-weight:700;
  font-size:1.6rem;
}
.stats-label{
  font-size:0.85rem;
  color:#c6d1e0;
}

/* About */
.about-img-wrap{ 
  position:relative; 
  overflow:hidden; 
  border-radius:12px;
}
.about-img-wrap img{
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-wrap:hover img{
  transform: scale(1.05);
}
.about-badge{
  position:absolute;
  bottom:20px; left:20px;
  background:#fff;
  border-radius:8px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  max-width:230px;
}
.about-badge .icon-circle{
  width:42px; height:42px;
  background:var(--blue-light);
  color:var(--navy);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-right:12px;
  flex-shrink:0;
}
.section-eyebrow{
  color:var(--blue);
  font-weight:600;
  letter-spacing:1px;
  font-size:0.85rem;
}
.section-title{
  font-weight:700;
  color:#1a1a2e;
}
.section-title .accent{ color:var(--navy); }

/* Projects */
.bg-soft{ background:var(--blue-light); }
.project-card{
  border:none;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(13,44,84,0.08);
  transition:transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height:100%;
}
.project-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(13,44,84,0.15);
}
.project-card img{ 
  height:190px; 
  object-fit:cover; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover img{
  transform: scale(1.06);
}
.project-card .card-title{
  font-weight:600;
  color:#1a1a2e;
}
.project-card .location{
  font-size:0.85rem;
  color:var(--gray-text);
}
.view-details{
  color:var(--blue);
  font-weight:500;
  font-size:0.9rem;
}

/* Why choose us */
.feature-icon{
  width:64px; height:64px;
  border:1.5px solid var(--navy);
  color:var(--navy);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;
  margin:0 auto 16px;
}
.feature-title{
  font-weight:600;
  color:#1a1a2e;
}
.feature-text{
  font-size:0.88rem;
  color:var(--gray-text);
}

/* Testimonials */
.testimonial-section{
  background:var(--navy-dark);
  color:#fff;
  position:relative;
  border-bottom: 2px solid #ffffff;
}
.testimonial-card{
  background:#fff;
  border-radius:10px;
  padding:34px 50px;
  color:#333;
  position:relative;
}
.quote-icon{
  color:var(--blue);
  font-size:1.6rem;
  opacity:0.5;
}
.testimonial-control{
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.35);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  background:transparent;
}
.testimonial-control:hover{ background:rgba(255,255,255,0.1); }

/* Footer */
.site-footer{
  background: radial-gradient(ellipse at top right, #0d2a5e 0%, #050d24 55%, #030814 100%) !important;
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
}

/* subtle building silhouette across the whole footer */
.footer-bg-img{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right bottom;
  opacity: 0.9;
  pointer-events: none;
}

/* ===== Top consultation bar ===== */
.consult-bar{
  background: linear-gradient(90deg, #0e2c5c 0%, #123878 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px;
  padding: 10px 20px;
  position: relative;
  z-index: 2;
}
.consult-icon{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background-color: #1a4fc4 !important;
  color: #ffffff !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult-title{
  color: #ffffff !important;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}
.consult-title span{
  color: #4d8dff !important;
}
.consult-text{
  color: #b9c6e6 !important;
  font-size: 12.5px;
  margin-bottom: 0;
  line-height: 1.5;
}
.trust-badge{
  text-align: center;
  color: #d3ddf5 !important;
  font-size: 11.5px;
  font-weight: 500;
}
.trust-badge i{
  font-size: 20px;
  color: #4d8dff !important;
  display: block;
  margin-bottom: 3px;
}
.divider-vert{
  width: 1px;
  background-color: rgba(255,255,255,0.12);
  align-self: stretch;
}

/* ===== Main footer content ===== */
.footer-main{
  position: relative;
  z-index: 2;
  padding: 15px 0 10px;
}
.footer-logo-icon{
  width: 46px;
}
.footer-brand{
  color: #ffffff !important;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
.footer-brand span{
  color: #4d8dff !important;
}
.footer-sub-brand{
  color: #9fb0d6 !important;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
}
.footer-brand-divider{
  width: 55px;
  height: 2px;
  background-color: #4d8dff;
  margin: 8px 0 16px;
}
.footer-about-text{
  color: #aab8d9 !important;
  font-size: 13.5px;
  line-height: 1.7;
}
.social-circle{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-circle:hover{
  background-color: #1a5cff !important;
  border-color: #1a5cff !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.footer-heading{
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
.footer-heading-divider{
  width: 40px;
  height: 2px;
  background-color: #4d8dff;
  margin: 5px 0 22px;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{
  margin-bottom: 16px;
}
.footer-links a{
  color: #aab8d9 !important;
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a i{
  color: #4d8dff !important;
  font-size: 12px;
}
.footer-links a:hover{
  color: #ffffff !important;
  padding-left: 4px;
}

.contact-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-item:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-icon{
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: #1a4fc4 !important;
  color: #ffffff !important;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-text{
  color: #d3ddf5 !important;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ===== Newsletter box ===== */
.newsletter-box{
  background-color: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px;
  padding: 26px 30px;
  position: relative;
  z-index: 2;
}
.newsletter-icon{
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 12px;
  background-color: #1a5cff !important;
  color: #ffffff !important;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-title{
  color: #ffffff !important;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
}
.newsletter-text{
  color: #aab8d9 !important;
  font-size: 13px;
  margin-bottom: 0;
}
.newsletter-input{
  background-color: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
}
.newsletter-input::placeholder{
  color: #7c8bb0 !important;
}
.newsletter-input:focus{
  background-color: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border-color: #4d8dff !important;
}

/* ===== Bottom bar ===== */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 2;
  padding: 12px 0;
}
.footer-bottom-text{
  color: #8fa0c7 !important;
  font-size: 13px;
  margin-bottom: 0;
}
.footer-bottom-links a{
  color: #aab8d9 !important;
  text-decoration: none;
  font-size: 13px;
  margin: 0 12px;
}
.footer-bottom-links a:hover{
  color: #ffffff !important;
}
.footer-mini-logo{
  width: 34px;
  opacity: 0.9;
}

@media (max-width: 991px){
  .divider-vert{ display: none; }
  .trust-badge{ margin-bottom: 10px; }
}
@media (max-width: 767px){
  .footer-bottom .row > div{
    text-align: center !important;
    margin-bottom: 10px;
  }
}


/* Hero Breadcrumbs Horizontal Alignment & Separator Icon */
.hero-section .breadcrumb,
.hero .breadcrumb {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hero-section .breadcrumb-item,
.hero .breadcrumb-item {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}
.hero-section .breadcrumb-item + .breadcrumb-item,
.hero .breadcrumb-item + .breadcrumb-item {
  padding-left: 0 !important;
}
.hero-section .breadcrumb-item + .breadcrumb-item::before,
.hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45) !important;
  content: "\F138" !important; /* Bootstrap icon right-chevron code */
  font-family: "bootstrap-icons" !important;
  font-size: 9px;
  display: inline-block !important;
  margin: 0 8px !important;
  padding: 0 !important;
  float: none !important;
  vertical-align: middle !important;
}

/* Text Shadow for Hero Content Legibility on Light Overlays */
.hero-title, .hero h1 {
  text-shadow: 0 2px 8px rgba(10, 31, 68, 0.4) !important;
}
.hero-section .breadcrumb-item, .hero .breadcrumb-item {
  text-shadow: 0 1px 4px rgba(10, 31, 68, 0.3) !important;
}

/* Global Button Style Synchronization */
.btn, 
.btn-navy, 
.btn-outline-navy, 
.btn-white-cta, 
.btn-white, 
.btn-outline-white,
.btn-white-cta:hover,
.btn-navy:hover,
.btn-outline-navy:hover,
.btn-white:hover,
.btn-outline-white:hover,
button:not(.navbar-toggler):not(.accordion-button):not(.carousel-control-prev):not(.carousel-control-next):not(.filter-btn):not(.lightbox-btn):not(.btn-close) {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  border-radius: 4px !important;
  height: auto !important;
  line-height: 1.5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Remove CTA image overlay and set opacity to full */
.cta-overlay {
  display: none !important;
}
.cta-banner img {
  opacity: 1 !important;
}

/* ===== Floating Action Buttons (Mobile) ===== */
.btn-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff !important;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-green 2s infinite;
}
.btn-whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-call-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #0b2247;
  color: #ffffff !important;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(11, 34, 71, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse-navy 2s infinite;
}
.btn-call-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 34, 71, 0.5);
}

/* ===== Scroll to Top Button ===== */
.btn-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  background-color: #3d7fff;
  color: #ffffff !important;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(61, 127, 255, 0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}
.btn-scroll-top:hover {
  background-color: #0b2247;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(11, 34, 71, 0.4);
}

@media (max-width: 767px) {
  .btn-scroll-top {
    bottom: 90px;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@keyframes pulse-navy {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 34, 71, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(11, 34, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 34, 71, 0);
  }
}





