/* --- CSS RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* --- STICKY HEADER & NAVBAR --- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: currentColor;
}
.icon-chevron {
  margin-left: 6px;
  transition: transform 0.3s;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-link {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #333;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
  font-size: 15px;
}
.nav-link:hover {
  color: #0d47a1;
}

/* Desktop Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  list-style: none;
  z-index: 1001;
  border-radius: 0 0 6px 6px;
}
.dropdown .dropdown {
  top: 0;
  left: 100%;
  border-radius: 0 6px 6px 6px;
}
.nav-item:hover > .dropdown {
  display: block;
}
.dropdown .nav-item {
  width: 100%;
}
.dropdown .nav-link {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.btn-contact {
  background-color: #0d47a1;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
  margin-left: 10px;
}
.btn-contact:hover {
  background-color: #002171;
}

/* Mobile Toggle Hamburger Icon */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  background: #f1f5f9;
}
.menu-toggle .icon {
  width: 26px;
  height: 26px;
  fill: #0d47a1;
}

/* --- HERO SLIDER --- */
.slider-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 75px);
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; }
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.slide-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  z-index: 2;
}
.slide-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #e0e0e0;
}
.slide-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.15;
}
.slide-desc {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 300;
}
.btn-readmore {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-readmore:hover {
  background: #fff;
  color: #0d47a1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.slider-btn:hover { background: rgba(0, 0, 0, 0.8); }
.slider-btn .icon { width: 24px; height: 24px; }
.prev { left: 15px; }
.next { right: 15px; }

/* --- POPUP FORM MODALS --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.modal-box h2 {
  margin-bottom: 20px;
  color: #0d47a1;
  font-size: 22px;
}
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  font-size: 14px;
}
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #0d47a1;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: #002171; }
.btn-interest-submit { background: #e65100; }
.btn-interest-submit:hover { background: #bf360c; }

/* --- ABOUT US SECTION --- */
.about-section {
  padding: 60px 20px;
  background-color: #ffffff;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-image { flex: 1; width: 100%; }
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.about-content { flex: 1; }
.about-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #0d47a1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.25;
}
.about-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-about {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0d47a1;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
}

/* --- PROJECT CAROUSEL SECTIONS --- */
.projects-section, .future-section {
  padding: 60px 20px;
  background-color: #f4f6f9;
}
.completed-section {
  padding: 60px 20px;
  background-color: #ffffff;
}
.projects-container {
  max-width: 1200px;
  /*max-width: 100%;*/
  margin: 0 auto;
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.projects-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #0d47a1;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.projects-title { font-size: 30px; color: #222; }
.projects-controls { display: flex; gap: 10px; }
.project-btn {
  background: #ffffff;
  border: 1px solid #ddd;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-btn:hover {
  background: #0d47a1;
  color: #ffffff;
  border-color: #0d47a1;
}

.projects-slider-wrapper, .completed-slider-wrapper, .future-slider-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  background: #ffffff;
}
.projects-track, .completed-track, .future-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}

.project-card, .completed-card, .future-card {
  flex: 0 0 100%;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  min-height: 480px;
}
.card-image {
  position: relative;
  flex: 1.2;
  min-height: 350px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card-body {
  flex: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-title { font-size: 26px; color: #0d47a1; margin-bottom: 12px; }
.card-desc { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 20px; }

.project-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #f8fafc;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  border: 1px solid #e2e8f0;
}
.detail-label { font-size: 11px; color: #777; text-transform: uppercase; font-weight: 600; display: block; }
.detail-value { font-size: 13px; color: #222; font-weight: 600; }

.badge {
  position: absolute;
  top: 18px; left: 18px;
  background: #0d47a1;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.badge-completed { background: #2e7d32; }
.badge-future { background: #e65100; }

.btn-visit {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0d47a1;
  color: #ffffff;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}
.btn-future {
  border: 1px solid #e65100;
  color: #e65100;
  background: transparent;
  width: 100%;
  cursor: pointer;
}
.btn-future:hover { background-color: #e65100; color: #ffffff; }

/* --- TESTIMONIALS --- */
.testimonial-section { padding: 60px 20px; background-color: #ffffff; }
.testimonial-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.testimonial-title { font-size: 32px; margin-bottom: 8px; }
.testimonial-subtitle { font-size: 15px; color: #666; margin-bottom: 35px; }
.testimonial-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-viewport { overflow: hidden; width: 100%; padding: 15px 0; }
.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  touch-action: pan-y;
}
.testimonial-card-item {
  flex: 0 0 calc(33.333% - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-box {
  background: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  width: 100%;
  /*min-height: 220px;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.quote-icon2 { width: 32px; height: 32px; margin-bottom: 12px; }
.quote-icon2 svg { fill: #5392d0; width: 100%; height: 100%; }
.testimonial-text { font-size: 13px; color: #666; line-height: 1.6; }
.author-block { margin-top: 18px; display: flex; flex-direction: column; align-items: center; }
.avatar-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: #0b1727;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.avatar-icon svg { width: 24px; height: 24px; fill: #fff; }
.author-name { font-size: 14px; color: #333; font-weight: 600; }
.testi-arrow { background: transparent; border: none; cursor: pointer; padding: 6px; }
.testi-arrow svg { width: 32px; height: 32px; fill: #1952a2; }
.dots-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.dot { width: 10px; height: 10px; background-color: #ddd; border-radius: 50%; cursor: pointer; transition: background-color 0.3s; }
.dot.active { background-color: #0d47a1; }

/* --- CONTACT BANNER & FOOTER --- */
.contact-banner-section {
  position: relative;
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.contact-banner-section p.contact-subtitle { margin-bottom:15px; font-weight: 600; letter-spacing: 1.5px;}
.contact-banner-section h2.contact-title, .contact-banner-section h1.contact-title { margin-bottom: 15px; font-size: 38px; line-height: 1.2;}
.contact-banner-section p.contact-address-text { margin-bottom:25px; font-size: 16px; opacity: 0.9;}

.contact-banner-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.78);
}
.contact-banner-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.btn-contact-banner {
  padding: 12px 36px;
  background-color: #1d68b8;
  color: #fff; border: none; border-radius: 4px; cursor: pointer;
  font-weight: 600; font-size: 15px;
}

.site-footer { background-color: #10559e; color: #ffffff; }
.site-footer h3.footer-col-title { margin-bottom:15px; font-size: 18px;}
.footer-contact-info p { margin-bottom:12px; font-size: 14px; line-height: 1.5;}

.footer-container { max-width: 1200px; margin: 0 auto; display: flex; }
.footer-brand-card { background-color: #0b1727; width: 300px; padding: 45px 30px; text-align: center; flex-shrink: 0; }
.footer-logo { height: 70px; margin: 0 auto 15px auto; }
.footer-tagline { font-size: 14px; color: #cbd5e1; line-height: 1.5; }
.footer-socials { display: flex; gap: 12px; justify-content: center; margin-top: 20px;}
.social-btn { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; background: rgba(255,255,255,0.1); }
.social-btn svg { width: 18px; height: 18px; fill: #ffffff; }
.footer-links-content { flex-grow: 1; padding: 45px 40px 20px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 30px; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { font-size: 14px; color: #e2e8f0; transition: color 0.2s; }
.footer-list a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; margin-top: 35px; font-size: 13px; color: #cbd5e1; }

.whatsapp-float {
  position: fixed; bottom: 25px; right: 15px;
  width: 52px; height: 52px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); z-index: 1000;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* --- HOME LOAN & CALCULATOR --- */
.loan-calc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.range-group {
  margin-bottom: 25px;
}
.range-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.range-label {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}
.range-val-badge {
  background: #eef2ff;
  color: #0d47a1;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}
.slider-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
}
.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0d47a1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.result-box {
  background: #0d47a1;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.result-item:last-child {
  border-bottom: none;
}
.result-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 5px;
}
.result-value {
  font-size: 26px;
  font-weight: 700;
}
.result-value.highlight {
  font-size: 34px;
  color: #4ade80;
}
.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.bank-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.bank-card:hover {
  transform: translateY(-5px);
}
.bank-name {
  font-weight: 700;
  color: #0d47a1;
  font-size: 18px;
  margin-bottom: 8px;
}
.bank-rate {
  font-size: 14px;
  color: #555;
}



/* Specific styles for Contact Us page layout */
    .page-banner {
      background-image: url('../images/contact-bg.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      padding: 140px 20px;
      text-align: center;
      color: #ffffff;
    }
    .page-banner::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(15, 23, 42, 0.75);
    }
    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
    .banner-title {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .breadcrumb {
      font-size: 14px;
      color: #cbd5e1;
    }
    .breadcrumb a {
      color: #ffffff;
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: #60a5fa;
    }

    /* Contact Details Cards & Section */
    .contact-page-section {
      padding: 60px 20px;
      background-color: #f8fafc;
    }
    .contact-grid-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
    }

    .info-cards-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-info-card {
      background: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    .info-icon {
      width: 48px;
      height: 48px;
      background: #eef2ff;
      color: #0d47a1;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .info-icon svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }
    .info-details h3 {
      font-size: 18px;
      color: #0d47a1;
      margin-bottom: 6px;
    }
    .info-details p, .info-details a {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }
    .info-details a:hover {
      color: #0d47a1;
      text-decoration: underline;
    }

    /* Contact Form Box */
    .contact-form-card {
      background: #ffffff;
      padding: 35px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
    }
    .form-title {
      font-size: 24px;
      color: #0d47a1;
      margin-bottom: 8px;
    }
    .form-subtitle {
      font-size: 14px;
      color: #666;
      margin-bottom: 25px;
    }

    /* Map Section */
    .map-section {
      width: 100%;
      line-height: 0;
    }
    .map-section iframe {
      width: 100%;
      height: 400px;
      border: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .contact-grid-container {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 600px) {
      .contact-form-card {
        padding: 20px;
      }
      .banner-title {
        font-size: 28px;
      }
      .map-section iframe {
        height: 300px;
      }
    }

img.img-responsive { width:100%; margin:0 auto;}

/* Hero Banner Styling */
    .complete-banner {
      background-image: linear-gradient(rgba(11, 23, 39, 0.75), rgba(11, 23, 39, 0.75)), url('../images/contact-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 20px;
      text-align: center;
      color: #ffffff;
    }
    .complete-banner-title {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }
    .complete-banner-desc {
      max-width: 780px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.6;
      color: #d1d5db;
    }

    /* Complete Projects Section */
    .complete-projects-section {
      padding: 60px 20px 80px;
      background-color: #f8fafc;
    }
    
    /* Responsive Grid layout for cards */
    .complete-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Modern Card UI with Hover Effects */
    .complete-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
    }
    .complete-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(13, 71, 161, 0.15);
    }

    /* Image Wrapper with Zoom Effect */
    .complete-img-wrapper {
      position: relative;
      width: 100%;
      height: 230px;
      overflow: hidden;
    }
    .complete-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .complete-card:hover .complete-img-wrapper img {
      transform: scale(1.08);
    }

    .complete-card-body {
      padding: 24px 20px 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .complete-project-title {
      font-size: 22px;
      font-weight: 700;
      color: #0d47a1;
      margin-bottom: 6px;
    }

    .complete-project-type {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 16px;
      font-weight: 500;
    }

    /* Location Pin Display */
    .complete-location-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 24px;
      min-height: 44px;
    }
    .complete-location-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      background: #ef4444;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      margin-top: 2px;
      box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
    }
    .complete-location-icon svg {
      width: 13px;
      height: 13px;
      fill: currentColor;
    }
    .complete-location-text {
      font-size: 13.5px;
      color: #334155;
      line-height: 1.45;
      font-weight: 500;
    }

    /* Download Button Styling */
    .complete-btn-wrapper {
      margin-top: auto;
    }
    .btn-download-brochure {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, #0d47a1, #1565c0);
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
      border: none;
      cursor: pointer;
    }
    .btn-download-brochure:hover {
      background: linear-gradient(135deg, #002171, #0d47a1);
      box-shadow: 0 6px 16px rgba(13, 71, 161, 0.38);
      transform: translateY(-1px);
      color: #ffffff;
    }
    .btn-download-brochure svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    /* List Footer Box */
    .complete-list-box {
      max-width: 1200px;
      margin: 50px auto 0;
      background: #ffffff;
      border-radius: 12px;
      padding: 28px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.03);
      border: 1px solid #e2e8f0;
    }
    .complete-list-title {
      font-size: 15px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
    }
    .complete-list-items {
      font-size: 14px;
      color: #64748b;
      line-height: 1.8;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .complete-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    @media (max-width: 650px) {
      .complete-grid {
        grid-template-columns: 1fr;
      }
      .complete-banner-title {
        font-size: 28px;
      }
      .complete-banner-desc {
        font-size: 14px;
      }
      .complete-img-wrapper {
        height: 210px;
      }
    }


/* Hero Banner Styling */
    .future-banner {
      background-image: linear-gradient(rgba(11, 23, 39, 0.75), rgba(11, 23, 39, 0.75)), url('../images/contact-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 20px;
      text-align: center;
      color: #ffffff;
    }
    .future-banner-title {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }
    .future-banner-desc {
      max-width: 780px;
      margin: 0 auto;
      font-size: 16.5px;
      line-height: 1.6;
      color: #d1d5db;
    }

    /* Main Container */
    .future-projects-section {
      padding: 70px 20px 90px;
      background-color: #f8fafc;
    }

    .future-container {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 70px;
    }

    /* Overlapping Card Section Design (Matching Provided Reference Image) */
    .project-overlap-card {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 440px;
    }

    /* Background/Main Image Box */
    .project-img-box {
      width: 60%;
      height: 420px;
      position: absolute;
      right: 0;
      top: 0;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      z-index: 1;
    }

    .project-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .project-overlap-card:hover .project-img-box img {
      transform: scale(1.05);
    }

    /* Floating White Info Content Card */
    .project-info-card {
      width: 52%;
      background: #ffffff;
      padding: 40px 38px 36px;
      border-radius: 16px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 2;
      border: 1px solid #edf2f7;
    }

    /* Decorative Quote Icon in Card Header */
    .quote-icon {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 65px;
      line-height: 1;
      font-family: Georgia, serif;
      color: #e89252;
      opacity: 0.85;
      user-select: none;
      pointer-events: none;
    }

    /* Card Header with Thumbnail Avatar */
    .project-header-flex {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 22px;
    }

    .project-thumb {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #e2e8f0;
      box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    .project-title-meta h2 {
      font-size: 24px;
      font-weight: 700;
      color: #1e293b;
      margin: 0 0 4px 0;
      line-height: 1.2;
    }

    .project-title-meta span {
      font-size: 14px;
      color: #64748b;
      font-weight: 500;
      text-transform: capitalize;
    }

    .project-description {
      font-size: 15px;
      line-height: 1.7;
      color: #475569;
      font-style: italic;
      margin-bottom: 24px;
    }

    /* Action & Status Bar */
    .project-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #f1f5f9;
      padding-top: 18px;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background-color: #fff7ed;
      color: #c2410c;
      font-size: 12.5px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid #ffedd5;
    }

    .status-badge .dot {
      width: 7px;
      height: 7px;
      background-color: #f97316;
      border-radius: 50%;
    }

    .btn-enquire-project {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #0d47a1, #1565c0);
      color: #ffffff;
      padding: 9px 20px;
      border-radius: 25px;
      font-size: 13.5px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
      border: none;
      cursor: pointer;
    }

    .btn-enquire-project:hover {
      background: linear-gradient(135deg, #002171, #0d47a1);
      box-shadow: 0 6px 16px rgba(13, 71, 161, 0.32);
      transform: translateY(-1px);
      color: #ffffff;
    }

    /* Reverse layout for alternating visual flow */
    .project-overlap-card.reverse {
      justify-content: flex-end;
    }
    .project-overlap-card.reverse .project-img-box {
      left: 0;
      right: auto;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .project-overlap-card,
      .project-overlap-card.reverse {
        flex-direction: column;
        min-height: auto;
      }
      .project-img-box,
      .project-overlap-card.reverse .project-img-box {
        position: relative;
        width: 100%;
        height: 280px;
        border-radius: 16px 16px 0 0;
      }
      .project-info-card {
        width: 100%;
        margin-top: -30px;
        border-radius: 16px;
        padding: 30px 24px 24px;
      }
      .future-container {
        gap: 50px;
      }
    }

    @media (max-width: 576px) {
      .future-banner-title {
        font-size: 30px;
      }
      .future-banner-desc {
        font-size: 14.5px;
      }
      .project-title-meta h2 {
        font-size: 20px;
      }
      .quote-icon {
        font-size: 48px;
        right: 18px;
        top: 15px;
      }
      .project-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .btn-enquire-project {
        width: 100%;
        justify-content: center;
      }
    }



/* Hero Banner Styling */
    .policy-hero {
      background-image: linear-gradient(rgba(11, 23, 39, 0.75), rgba(11, 23, 39, 0.75)), url('../images/contact-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 20px;
      text-align: center;
      color: #ffffff;
    }
    .policy-hero-title {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .policy-hero-desc {
      max-width: 720px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.6;
      color: #94a3b8;
    }

    /* Main Section */
    .privacy-policy-section {
      padding: 60px 20px 80px;
      background-color: #f8fafc;
    }

    .policy-container {
      max-width: 1200px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 16px;
      padding: 50px 45px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
    }

    .policy-intro {
      font-size: 15.5px;
      line-height: 1.75;
      color: #334155;
      margin-bottom: 30px;
      padding-bottom: 25px;
      border-bottom: 1px solid #e2e8f0;
    }

    .policy-intro p {
      margin-bottom: 16px;
    }

    .policy-intro p:last-child {
      margin-bottom: 0;
    }

    /* Policy Content Sections */
    .policy-block {
      margin-bottom: 32px;
    }

    .policy-block:last-child {
      margin-bottom: 0;
    }

    .policy-block-title {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .policy-block-title .sec-num {
      color: #0d47a1;
      font-size: 18px;
    }

    .policy-block p {
      font-size: 15px;
      line-height: 1.7;
      color: #475569;
      margin: 0 0 12px 0;
    }

    .policy-list {
      margin: 14px 0 14px 20px;
      padding: 0;
      list-style-type: disc;
    }

    .policy-list li {
      font-size: 15px;
      line-height: 1.7;
      color: #475569;
      margin-bottom: 8px;
    }

    /* Important Highlight Box */
    .policy-callout {
      background-color: #eff6ff;
      border-left: 4px solid #1d4ed8;
      padding: 18px 22px;
      border-radius: 0 8px 8px 0;
      margin: 20px 0;
      font-size: 14.5px;
      line-height: 1.6;
      color: #1e3a8a;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .policy-hero {
        padding: 50px 15px 40px;
      }
      .policy-hero-title {
        font-size: 28px;
      }
      .policy-container {
        padding: 30px 20px;
        border-radius: 12px;
      }
      .policy-block-title {
        font-size: 16.5px;
      }
      .policy-intro, .policy-block p, .policy-list li {
        font-size: 14px;
      }
    }



.callbtn {
    float: left;
    margin-left: 0;
    bottom: 24px;
    padding: 0;
    position: fixed;
    width: auto;
    z-index: 999;
    left: 10px;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display:none;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display:none;
}
@media (max-width: 767px) {
    .hidden-xs {
        display:none;
    }
    .visible-xs {
        display:block;
    }
}


/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablets & Small Laptops (Max Width: 992px) */
@media (max-width: 992px) {
  .slide-title { font-size: 38px; }
  .slide-desc { font-size: 16px; }

  .about-container { flex-direction: column; gap: 30px; }
  .about-title { font-size: 28px; }

  .project-card, .completed-card, .future-card { flex-direction: column; min-height: auto; }
  .card-image { min-height: 280px; flex: none; }
  .card-body { padding: 25px; }

  .testimonial-card-item { flex: 0 0 calc(50% - 10px); }

  .footer-container { flex-direction: column; }
  .footer-brand-card { width: 100%; padding: 35px 20px; }
  .footer-links-content { padding: 35px 25px 20px 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
}

/* Mobile Devices & Mobile Navigation (Max Width: 850px) */
@media (max-width: 850px) {
  .calc-grid { grid-template-columns: 1fr; gap: 25px; }

  /* Mobile Drawer Nav Header */
  .menu-toggle { display: block; }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
    border-top: 1px solid #e2e8f0;
    padding-bottom: 15px;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
  }
  
  /* Mobile Multi-level Accordion Dropdowns */
  .dropdown {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    background: #f8fafc;
    border-radius: 0;
  }
  .nav-item.open > .dropdown {
    display: block;
  }
  .dropdown .nav-link {
    padding-left: 35px;
    background: #f8fafc;
  }
  .dropdown .dropdown .nav-link {
    padding-left: 50px;
    background: #f1f5f9;
  }
  .nav-item.open > .nav-link > .icon-chevron {
    transform: rotate(180deg);
  }

  .btn-contact {
    width: calc(100% - 40px);
    margin: 15px 20px;
    text-align: center;
  }

  .contact-banner-section { padding: 70px 20px; }
  .contact-banner-section h1.contact-title,
  .contact-banner-section h2.contact-title { font-size: 30px !important; }

  .testimonial-card-item { flex: 0 0 100%; }
  .testi-arrow { display: none; }
}

/* Small Phones (Max Width: 600px) */
@media (max-width: 600px) {
  .logo-img { height: 45px; }

  .slider-container { height: 420px; min-height: 420px; }
  .slide-subtitle { font-size: 12px; }
  .slide-title { font-size: 28px; }
  .slide-desc { font-size: 14px; margin-bottom: 20px; }
  .btn-readmore { padding: 10px 20px; font-size: 14px; }
  .slider-btn { padding: 8px; }
  .slider-btn .icon { width: 20px; height: 20px; }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .projects-title { font-size: 24px; }
  .project-details-grid { grid-template-columns: 1fr; }

  .loan-calc-card { padding: 20px; }
  .result-box { padding: 20px; }
  .result-value { font-size: 22px; }
  .result-value.highlight { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-links-content { padding: 30px 20px 20px 20px; }

  .modal-box { padding: 20px; }
}








