* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background-color: #000c3f;
    padding: 10px 0;
}

p{text-align: justify !important;}
.navbar {
    background: linear-gradient(135deg, #808080 45%, #e67e00 100%);
    padding: 0 0 5px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #001469 !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-left: 20px;
}

.nav-link:hover {
    color: #fff !important;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    color: white;
  
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.search-box {
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-box input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.search-box button {
    background-color: #001469;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
}

.search-box button:hover {
    background-color: #e67e00;
}

.filter-tags {
    margin-top: 20px;
}

.filter-tags span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
    font-size: 14px;
}

/* Property Section */
.properties-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.all-properties-btn {
    background-color: #001469;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.all-properties-btn:hover {
    background-color: #e67e00;
    text-decoration: none;
    color: white;
}

/* Property Card */
.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #001469;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.property-info {
    padding: 20px;
}

.property-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.property-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.property-location {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.property-actions {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.property-actions a {
    flex: 1;
    padding: 8px;
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.property-actions a:hover {
    background-color: #001469;
    color: white;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: white;
}

.features-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 8px;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 24px;
    color: #001469;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.feature-item p {
    margin: 0;
    color: #555;
    font-size: 15px;
}

.read-more-btn {
    margin-top: 20px;
    background-color: #001469;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #e67e00;
    text-decoration: none;
    color: white;
}

/* Associations Section */
.associations-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.associations-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.association-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.association-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

/* Footer */
footer {
    background-color: #020a2b;
    color: white;
    padding: 50px 0 20px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h5 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #001469;
}

.footer-contact {
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact i {
    color: #fff;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 12px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #001469;
}

/* Responsive */
@media (max-width: 768px) {
    #heroCarousel .carousel-inner{min-height: 230px !important;}
    .contact-section {
    padding: 2rem 0 !important;
}
    .overview-img-badge{bottom: 0!important;
    right: 0 !important;}
    .hero h1 {
        font-size: 32px;
    }

    .search-box button {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        gap: 20px;
    }

    .features-container {
        flex-direction: column;
    }

    .associations-container {
        gap: 20px;
    }
}

#heroCarousel .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
}
#heroCarousel .carousel-item.active {
    opacity: 1;
    z-index: 1;
    position: relative;
}
#heroCarousel .carousel-inner {
    position: relative;
    min-height: 430px;
}

.carousel-item img{height: 630px; object-fit: cover;}
.service-section-bg {
    background: linear-gradient(120deg, #f5f8ff 65%, #fff8ef 100%);
    border-top: 2px solid #e67e00;
    border-bottom: 2px solid #001469;
}
.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 32px rgba(30, 37, 89, 0.09), 0 2px 8px rgba(30, 37, 89, 0.07);
    padding-top: 50px !important;
   
    min-height: 470px;
    position: relative;
    transition: transform 0.16s cubic-bezier(.2,.85,.4,1.1), box-shadow 0.18s;
    border: none;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.018);
    box-shadow: 0 10px 32px rgba(30, 37, 89, 0.18), 0 8px 18px rgba(230, 126, 0, 0.07);
    border: 1px solid #ffd7002a;
}
.service-banner {
    margin-top: -18px;
}
.service-banner-img {
    width: 100%;

    height: 185px;
    object-fit: cover;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 2px 18px rgba(0,20,105,0.11);
    border: 2px solid #e7e7ef;
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 2rem;
    background: #fff9ed;
    box-shadow: 0 4px 14px rgba(0, 20, 105, 0.13);
    color: #e67e00;
    top: 0;
    left: 32px;
    transform: translateY(-50%);
    z-index: 3;
}
.consulting-icon {
    color: #001469;
    background: linear-gradient(45deg, #ffd700 60%, #fff9ec 100%);
    box-shadow: 0 3px 14px #ffd70033;
}
.construction-icon {
    color: #fff;
    background: linear-gradient(135deg, #ff9800 60%, #ffe0b2 100%);
    box-shadow: 0 3px 14px #e67e0033;
}
.service-title {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.text-primary, .service-title.text-primary {
    color: #001469 !important;
}
.text-construction, .service-title.text-construction {
    color: #e67e00 !important;
}
.service-desc {
    font-size: 17px;
    color: #535b6a;
    opacity: 0.90;
}
.service-list {
    padding-left: 0.1rem;
    list-style: none;
}
.service-list li {
    font-size: 1rem;
    color: #333;
    margin: 0.6rem 0;
    font-weight: 500;
}
.service-list li i {
    color: #e67e00;
    margin-right: 7px;
}
.btn-construction {
    background: #e67e00;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 30px;
    border: none;
    transition: background 0.18s;
}
.btn-construction:hover, .btn.btn-primary:hover {
    background: #001469 !important;
    color: #ffd700 !important;
}
.btn.btn-primary {
    background: #001469;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 30px;
    border: none;
    transition: background 0.18s;
}
.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #001469;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
   .carousel-item img{height: 320px; object-fit: cover;}
    .service-card {
        min-height: 370px;
        padding: 22px 6px 18px 6px !important;
    }
    .service-icon {
        left: 16px;
    }
    .section-title {
        font-size: 25px;
    }
    #services .row.g-4 {
        gap: 2.2rem 0 !important;
    }
    .service-banner-img {
        max-width: 100%;
        height: 160px;
    }
}
.carousel-caption {
    bottom: 10.25rem;
}

.testimonial-section {
    padding: 60px 0;
    background: #d9d7d7;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px dashed #bde5d6;
}

.testimonial-text {
    color: #555;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-info img {
    height: 45px;
    border-radius: 8px;
    margin-right: 12px;
}

.client-name {
    font-weight: 600;
}

.client-role {
    color: #888;
    font-size: 14px;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
    background: #1abc9c;
    color: #fff;
    border-radius: 50%;
    height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px !important;
}
.swiper-button-next, .swiper-button-prev{background: none;}

.heroInner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://images.unsplash.com/photo-1560518883-ce09059eeffa);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}


/* TOP BANNER */
.about-banner {
    background: linear-gradient(rgba(10,31,92,0.85), rgba(54, 33, 3, 0.85)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa');
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px;
    color: #fff;
    text-align: center;
}

.about-banner h1 {
    font-size: 42px;
    font-weight: 700;
}

/* STORY SECTION */
.company-story {
    padding: 50px 0;
    background: #fff;
}

.story-card {
    background: #f8f9fc;
    padding: 0px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HIGHLIGHT STRIP */
.highlight-strip {
    margin-top: -60px;
}

.highlight-box {
    background: linear-gradient(90deg, #0a1f5c, #003f3c);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

/* STATS */
.metrics-section {
    padding: 70px 0;
    background: #f4f6fb;
}

.metric-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* WHY US */
.advantage-section {
    padding: 70px 0;
}

.advantage-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* EXPERTISE */
.expertise-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* APPROACH */
.process-section {
    padding: 30px 0;
    background: linear-gradient(90deg,#0a1f5c,#f28c00);
    color: #fff;
}

/* VISION */
.vision-mission {
    padding: 40px 0;
    background: #fff;
}

.vm-card {
    background: #f4f6fb;
    padding: 30px;
    border-radius: 12px;
}

.vm-card-new {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.vm-card-new:hover {
    transform: translateY(-8px);
}

.vm-img {
    position: relative;
}

.vm-img img {
    height: 203px;
    object-fit: cover;
    width: 100%;
}

.vm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10,31,92,0.7), rgba(59, 35, 2, 0.7));
}

.vm-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #fff;
    font-weight: 600;
}

.vm-content {
    padding: 25px;
    color: #555;
}
.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-icon {
    height: 60px;
    width: 60px;
    background: linear-gradient(90deg,#0a1f5c,#0a1f5c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
}

.why-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card p {
    color: #666;
    font-size: 14px;
}




:root {
      --primary: #000c3f;
      --gold: #b89a5a;
      --gold-light: #d4b97a;
      --cream: #f7f3ed;
      --dark-text: #1a1a2e;
      --muted: #6b6b7b;
      --white: #ffffff;
    }


 
    /* ── NAVBAR ── */
    .navbar-ace {
      background: var(--primary);
      padding: 0.85rem 0;
      position: sticky;
      top: 0;
      z-index: 1050;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .navbar-ace .navbar-brand {
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--gold) !important;
      letter-spacing: 0.12em;
    }
    .navbar-ace .navbar-brand span { color: var(--white); }
    .navbar-ace .nav-link {
      color: rgba(255,255,255,0.8) !important;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.4rem 0.9rem !important;
      transition: color 0.2s;
    }
    .navbar-ace .nav-link:hover { color: var(--gold) !important; }
    .btn-enquire-nav {
      background: var(--gold);
      color: var(--primary) !important;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.45rem 1.2rem !important;
      border-radius: 0;
      transition: background 0.2s;
    }
    .btn-enquire-nav:hover { background: var(--gold-light) !important; }

    /* ── HERO ── */
    .hero2 {
      position: relative;
      min-height: 92vh;
      background: linear-gradient(135deg, var(--primary) 0%, #001166 50%, #000830 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero2::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../img/dishapuram.png') center/cover no-repeat;
      opacity: 0.3;
    }
    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(184,154,90,0.04) 40px,
        rgba(184,154,90,0.04) 41px
      );
    }
    .hero-label {
        text-align: left;
      display: inline-block;
      background: var(--gold);
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.35rem 1rem;
      margin-bottom: 1.4rem;
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 0.4rem;text-align: left;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.08em;
      margin-bottom: 2rem;
      font-weight: 300;
    }
    .hero-divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 2rem;
    }
    .hero-meta {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .hero-meta-item label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 0.2rem;
    }
    .hero-meta-item span {
      font-size: 1.3rem;
      color: var(--white);
      font-weight: 400;
    }
    .btn-primary-ace {
      background: var(--gold);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.9rem 2.2rem;
      border: none;
      border-radius: 0;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary-ace:hover {
      background: var(--gold-light);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(184,154,90,0.35);
    }
    .btn-outline-ace {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.35);
      font-weight: 400;
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border-radius: 0;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline-ace:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Hero enquiry card */
    .hero-enquiry-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,154,90,0.25);
      backdrop-filter: blur(12px);
      padding: 2.2rem;
    }
    .hero-enquiry-card h5 {
      font-size: 1.4rem;
      color: var(--white);
      margin-bottom: 0.4rem;
    }
    .hero-enquiry-card p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 1.4rem;
      letter-spacing: 0.05em;
    }
    .form-control-ace {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 0;
      color: var(--white);
      font-size: 0.82rem;
      padding: 0.75rem 1rem;
      margin-bottom: 0.75rem;
    }
    .form-control-ace::placeholder { color: rgba(255,255,255,0.35); }
    .form-control-ace:focus {
      background: rgba(255,255,255,0.1);
      border-color: var(--gold);
      color: var(--white);
      box-shadow: none;
    }

    /* ── SECTION HEADINGS ── */
    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(1.9rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--primary);
      line-height: 1.15;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .gold-rule {
      width: 48px;
      height: 2px;
      background: var(--gold);
      margin: 1.2rem 0;
    }

    /* ── HIGHLIGHTS STRIP ── */
    .highlights-strip {
      background: var(--primary);
      padding: 1.4rem 0;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: rgba(255,255,255,0.85);
      font-size: 0.82rem;
      letter-spacing: 0.04em;
    }
    .highlight-item i { color: var(--gold); font-size: 1.1rem; }
    .h-divider {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.15);
    }

    /* ── FEATURES SECTION ── */
    .features-section { padding: 6rem 0; background: var(--cream); }
    .feature-card {
      background: var(--white);
      padding: 2rem 1.8rem;
      border-top: 3px solid transparent;
      transition: all 0.3s;
      height: 100%;
    }
    .feature-card:hover {
      border-top-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,12,63,0.1);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
    .feature-icon i { color: var(--gold); font-size: 1.3rem; }
    .feature-card h5 {
      font-size: 1.2rem;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .feature-card p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .feature-num {
      font-size: 1.5rem;
      color: var(--gold);
      font-weight: 600;
      display: block;
      margin-bottom: 0.2rem;
    }

    /* ── OVERVIEW ── */
    .overview-section { padding: 6rem 0; }
    .overview-img-wrap {
      position: relative;
    }
    .overview-img-wrap img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }
    .overview-img-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--primary);
      padding: 1.4rem;
      width: 130px;
      text-align: center;
    }
    .overview-img-badge .num {
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 1;
      display: block;
    }
    .overview-img-badge .label {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .overview-body p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .overview-stat {
      border-left: 2px solid var(--gold);
      padding: 0.4rem 0 0.4rem 1.2rem;
      margin-bottom: 1.2rem;
    }
    .overview-stat strong {
      display: block;
      font-size: 1.6rem;
      color: var(--primary);
      line-height: 1.1;
    }
    .overview-stat span {
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.08em;
    }

    /* ── PROJECT DETAILS ── */
    .details-section {
      padding: 6rem 0;
      background: var(--primary);
      position: relative;
      overflow: hidden;
    }
    .details-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      border: 1px solid rgba(184,154,90,0.12);
      border-radius: 50%;
    }
    .details-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 600px;
      height: 600px;
      border: 1px solid rgba(184,154,90,0.08);
      border-radius: 50%;
    }
    .details-section .section-title { color: var(--white); }
    .detail-row {
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 1rem 0;
      display: flex;
      gap: 1rem;
    }
    .detail-row:last-child { border-bottom: none; }
    .detail-row i {
      color: var(--gold);
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .detail-row p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
      margin: 0;
      line-height: 1.7;
    }
    .detail-row strong { color: var(--white); }
    .details-img {
      width: 100%;
      height: 100%;
      min-height: 400px;
      object-fit: cover;
      display: block;
    }

    /* ── AMENITIES ── */
    .amenities-section { padding: 6rem 0; background: var(--cream); }
    .amenity-pill {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      background: var(--white);
      padding: 0.9rem 1.2rem;
      border-left: 3px solid var(--gold);
      transition: all 0.25s;
      cursor: default;
    }
    .amenity-pill:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateX(4px);
    }
    .amenity-pill:hover i { color: var(--gold); }
    .amenity-pill i { color: var(--primary); font-size: 1.1rem; }
    .amenity-pill span { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; }
    .amenities-hero-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }

    /* ── MASTER PLAN ── */
    .masterplan-section img{border: #e5e5e596 solid 3px; padding: 10px;}
    .masterplan-section { padding: 6rem 0; }
    .masterplan-img {
      width: 100%;
      border: 1px solid rgba(0,12,63,0.1);
      display: block;
    }
    .masterplan-legend-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.8rem;
      color: var(--muted);
      margin-bottom: 0.6rem;
    }
    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── LOCATION ── */
    .location-section {
      padding: 6rem 0;
      background: var(--primary);
    }
    .location-section .section-title { color: var(--white); }
    .location-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .location-item:last-child { border-bottom: none; }
    .location-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--gold);
      min-width: 28px;
      line-height: 1.2;
    }
    .location-item p {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.72);
      margin: 0;
      line-height: 1.6;
    }
    .location-map-placeholder {
      width: 100%;
      height: 420px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(184,154,90,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 1rem;
    }
    .location-map-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.5; }
    .location-map-placeholder p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

    /* ── CONTACT ── */
    .contact-section { padding: 6rem 0; }
    .contact-card {
      background: var(--primary);
      padding: 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .contact-card::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border: 1px solid rgba(184,154,90,0.15);
      border-radius: 50%;
    }
    .contact-card h2 { color: var(--white); font-size: 2.5rem; }
    .contact-card p { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
    .form-control-dark {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0;
      color: var(--white);
      font-size: 0.83rem;
      padding: 0.8rem 1.1rem;
    }
    .form-control-dark::placeholder { color: rgba(255,255,255,0.3); }
    .form-control-dark:focus {
      background: rgba(255,255,255,0.09);
      border-color: var(--gold);
      color: var(--white);
      box-shadow: none;
    }
    .contact-info-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: rgba(255,255,255,0.75);
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }
    .contact-info-row i { color: var(--gold); }

 
    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      background: #25D366;
      color: white;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 6px 20px rgba(37,211,102,0.45);
      transition: transform 0.2s;
      text-decoration: none;
    }
    .wa-float:hover { transform: scale(1.1); color: white; }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .textlet{text-align: left;}
    .amenity-box {
    background: #000c3f;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
    height: 100%;
}

.amenity-box i {
    font-size: 35px;
    color: #fff;
    margin-bottom: 15px;

}

.amenity-box h5 {
    margin: 0;  font-size: 16px;
    line-height: 1.4;
}

.amenity-box:hover {
    background: #6f3a18;
    transform: translateY(-5px);
}
/* =========================
   SERVICES HERO
========================= */
.services-hero{
  padding:100px 0 70px;
  background:var(--cream);
  text-align:center;
}

.services-hero .section-title{
  margin-bottom:10px;
}

/* =========================
   INTRO SECTION
========================= */
.services-intro{
  padding:80px 0;
}

.services-intro img{
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   SERVICE GRID CARDS
========================= */
.services-grid{
  padding:80px 0;
  background:#f9f9f9;
}

.service-card1{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:all 0.4s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}

.service-card1 img{
  height:180px;
  object-fit:cover;
  display:block;
}

.service-card1 h5{
  padding:15px 15px 5px;
  color:var(--primary);
}

.service-card1 p{
  padding:0 15px 20px;
  color:var(--muted);
  font-size:0.85rem;
  line-height:1.7;
}

.service-card1:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* =========================
   FEATURES SECTION
========================= */
.services-features{
  padding:80px 0;
}

.services-features img{
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.services-features ul{
  list-style:none;
  padding:0;
  margin-top:15px;
}

.services-features li{
  margin-bottom:10px;
  font-size:0.9rem;
}

/* =========================
   AMENITIES
========================= */
.services-amenities{
  padding:80px 0;
  background:var(--cream);
}

.amenity-pill{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  padding:12px 15px;
  border-radius:50px;
  font-size:0.85rem;
  color:var(--primary);
  text-align:center;
  transition:all 0.3s ease;
}

.amenity-pill:hover{
  background:var(--gold);
  color:#fff;
  transform:translateY(-3px);
}

/* =========================
   CTA SECTION
========================= */
.services-cta{
  padding:80px 0;
  text-align:center;
  background:#0a0f2c;
  color:#fff;
}

.services-cta .section-title{
  color:#fff;
}

.services-cta p{
  color:rgba(255,255,255,0.6);
}

/* =========================
   COMMON ELEMENTS
========================= */
.section-label{
  font-size:0.75rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:10px;
}

.section-title{
  font-size:2rem;
  color:var(--primary);
  margin-bottom:10px;
}

.gold-rule{
  height:2px;
  width:60px;
  background:var(--gold);
  margin:15px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

  .services-hero{
    padding:70px 0 50px;
  }

  .services-intro,
  .services-grid,
  .services-features,
  .services-amenities,
  .services-cta{
    padding:60px 0;
  }

  .section-title{
    font-size:1.6rem;
  }

}
/* =========================
   HERO
========================= */
.contact-hero{
  padding:70px 0 0px;
  background:var(--cream);
}

/* =========================
   INFO CARDS
========================= */
.contact-info-section{
  padding:30px 0 60px 0;
}

.contact-info-card{
  background:#fff;
  padding:30px 20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s;
}

.contact-info-card .icon{
  font-size:28px;
  margin-bottom:10px;
}

.contact-info-card h5{
  color:var(--primary);
  margin-bottom:5px;
}

.contact-info-card p{
    text-align: center !important;
  font-size:0.85rem;
  color:var(--muted);
}

.contact-info-card:hover{
  transform:translateY(-6px);
}

/* =========================
   MAIN SECTION
========================= */
.contact-main{
  padding:80px 0;
  background:#f9f9f9;
}

/* FORM */
.contact-form-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* INPUT */
.custom-input{
  padding:12px 15px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.1);
  font-size:0.85rem;
}

.custom-input:focus{
  border-color:var(--gold);
  box-shadow:none;
}

/* MAP */
.contact-map-box{
  height:100%;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-map-box img{
  height:100%;
  object-fit:cover;
}

/* =========================
   CTA
========================= */
.contact-cta{
  padding:80px 0;
  background:#fff;
 
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

  .contact-hero{
    padding:50px 0 0px;
  }

  .contact-main,
  .contact-cta{
    padding:60px 0;
  }

}

.faq-section {
  background: linear-gradient(135deg, #808080 45%, #e67e00 100%);
}

.accordion-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(184,154,90,0.1);
  color: #d4af37;
}

.accordion-body {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.accordion h5{color: #fff}
.faq-section  .section-title{color: #fff !important}

.sale-price-section {
  background: linear-gradient(135deg, #001469 45%, #e67e00 100%);
  color: #fff;
}

/* Title */
.sale-title {
  font-size: 2.5rem;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Price Box */
.price-box {
  background: linear-gradient(135deg, #b89a5a, #d4af37);
  padding: 25px;
  border-radius: 10px;
  color: #000;
  position: relative;
}

.price-box h3 {
  font-size: 2rem;
  margin-top: 10px;
}

.price-box .date {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 0.8rem;
}

/* Info */
.info-box {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-left: 3px solid #d4af37;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Size */
.size-box {
  background: rgba(212,175,55,0.08);
  padding: 20px;
  border-radius: 8px;
}

.size-box h5 {
  color: #d4af37;
}

/* Table */
.sale-table {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  overflow: hidden;
}

.sale-table thead {
  background: #b89a5a;
  color: #000;
}

.sale-table th {
  padding: 12px;
  font-size: 0.9rem;
}

.sale-table td {
  padding: 12px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sale-table tbody tr:hover {
  background: rgba(212,175,55,0.05);
}




  :root {
      --navy: #0d1b3e;
      --navy-light: #162550;
      --gold: #c8a84b;
      --gold-light: #e2c97e;
      --cream: #f5f0e8;
      --cream-dark: #e8dfc9;
      --white: #ffffff;
      --text-muted-gold: #9c8040;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: #2a2a2a;
    }

    h1, h2, h3, .Lato { font-family: 'Lato', serif; }
    h4, h5, .cormorant { font-family: 'Cormorant Garamond', serif; }

    /* ── NAVBAR ── */
    .navbar-custom {
      background: var(--navy);
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 2px solid var(--gold);
    }
    .navbar-brand-text {
      font-family: 'Lato', serif;
      font-size: 1.5rem;
      color: var(--gold) !important;
      letter-spacing: 2px;
    }
    .navbar-custom .nav-link {
      color: var(--cream) !important;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .navbar-custom .nav-link:hover { color: var(--gold) !important; }
    .btn-gold {
      background: var(--gold);
      color: var(--navy);
      font-family: 'Lato', serif;
      font-weight: 600;
      letter-spacing: 1px;
      border: none;
      padding: 10px 28px;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-gold:hover {
      background: var(--gold-light);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(200,168,75,0.4);
    }
    .btn-outline-gold {
      border: 2px solid var(--gold);
      color: var(--gold);
      background: transparent;
      font-family: 'Lato', serif;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 10px 28px;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--navy) 0%, #1a2d60 60%, #0d1b3e 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1609619385002-f40f1df9b7eb?w=1600&auto=format&fit=crop') center/cover no-repeat;
      opacity: 0.18;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(13,27,62,0.97) 45%, rgba(13,27,62,0.6) 100%);
    }
    .hero-content { position: relative; z-index: 2; padding: 80px 0; text-align:left; }
    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Lato', serif;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 18px;
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Lato', serif;
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .hero-title span { color: var(--gold); }
    .hero-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--cream-dark);
      font-style: italic;
      margin-bottom: 30px;
    }
    .hero-desc {
      color: rgba(245,240,232,0.8);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 520px;
      margin-bottom: 35px;
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 40px;
    }
    .stat-item { text-align: left; }
    .stat-num {
      font-family: 'Lato', serif;
      font-size: 1.8rem;
      color: var(--gold);
      font-weight: 700;
    }
    .stat-label {
      font-size: 0.75rem;
      color: var(--cream-dark);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ── SECTION STYLES ── */
    .section-label {
      font-family: 'Lato', serif;
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Lato', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-title.white { color: var(--white); }
    .gold-divider {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin-bottom: 20px;
    }
    .gold-divider.center { margin: 0 auto 20px; }
    .section-body {
      color: #4a4a4a;
      line-height: 1.8;
      font-size: 1rem;
    }
    .section-body.white { color: rgba(245,240,232,0.85); }

    /* ── HIGHLIGHTS BAR ── */
    .highlights-bar {
      background: var(--navy);
      padding: 28px 0;
      border-top: 3px solid var(--gold);
    }
    .highlight-item {
      text-align: center;
      padding: 10px 20px;
      border-right: 1px solid rgba(200,168,75,0.25);
    }
    .highlight-item:last-child { border-right: none; }
    .highlight-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 6px; }
    .highlight-title {
      font-family: 'Lato', serif;
      font-size: 0.82rem;
      color: var(--white);
      letter-spacing: 1px;
    }
    .highlight-sub { font-size: 0.75rem; color: rgba(245,240,232,0.6); }

    /* ── ABOUT ── */
    .about-section { background: var(--cream); padding: 90px 0; }
    .about-img-wrap {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
    }
    .about-img-wrap img { width: 100%; height: 380px; object-fit: cover; border-radius: 4px; }
    .about-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Lato', serif;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 20px 28px;
      border-radius: 2px;
      box-shadow: 0 8px 30px rgba(200,168,75,0.4);
    }

    /* ── WHY INVEST ── */
    .why-invest { background: var(--navy); padding: 90px 0; }
    .invest-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 4px;
      padding: 28px;
      height: 100%;
      transition: all 0.3s;
    }
    .invest-card:hover {
      background: rgba(200,168,75,0.1);
      border-color: var(--gold);
      transform: translateY(-4px);
    }
    .invest-card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
    .invest-card-title {
      font-family: 'Lato', serif;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 10px;
    }
    .invest-card-text { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.7; }

    /* ── PROJECT FEATURES ── */
    .features-section { background: var(--cream); padding: 90px 0; }
    .feature-img { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; }
    .feature-list { list-style: none; padding: 0; }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(200,168,75,0.2);
      font-size: 0.95rem;
      color: #3a3a3a;
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

    /* ── CONNECTIVITY ── */
    .connectivity { background: var(--navy-light); padding: 90px 0; }
    .conn-card {
      background: var(--navy);
      border: 1px solid rgba(200,168,75,0.25);
      border-radius: 4px;
      padding: 30px 24px;
      text-align: center;
      height: 100%;
      transition: all 0.3s;
    }
    .conn-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .conn-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 14px; }
    .conn-title { font-family: 'Lato', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
    .conn-dist { color: var(--gold); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
    .conn-sub { font-size: 0.8rem; color: rgba(245,240,232,0.6); }

    /* ── AMENITIES ── */
    .amenities-section { background: var(--cream); padding: 90px 0; }
    .amenity-box {
      background: var(--white);
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 4px;
      padding: 24px 20px;
      text-align: center;
      height: 100%;
      transition: all 0.3s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .amenity-box:hover {
      border-color: var(--gold);
      box-shadow: 0 8px 30px rgba(200,168,75,0.15);
      transform: translateY(-3px);
    }
    .amenity-box i { font-size: 2rem; color: var(--gold); margin-bottom: 10px; }
    .amenity-title { font-family: 'Lato', serif; font-size: 0.85rem; color: var(--navy); }

    /* ── NEARBY ATTRACTIONS ── */
    .attractions { background: var(--navy); padding: 90px 0; }
    .attraction-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 4px;
      overflow: hidden;
      height: 100%;
      transition: all 0.3s;
    }
    .attraction-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .attraction-card img { width: 100%; height: 180px; object-fit: cover; }
    .attraction-body { padding: 20px; }
    .attraction-name { font-family: 'Lato', serif; color: var(--gold); font-size: 1rem; margin-bottom: 6px; }
    .attraction-text { font-size: 0.85rem; color: rgba(245,240,232,0.7); line-height: 1.6; }

    /* ── PLOT LAYOUT ── */
    .layout-section { background: var(--cream); padding: 90px 0; }
    .layout-img { width: 100%; border: 2px solid var(--gold); border-radius: 4px; }

    /* ── NRI / INVESTMENT ── */
    .investment-section { background: var(--navy); padding: 90px 0; }
    .inv-point {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 22px;
    }
    .inv-icon {
      width: 44px;
      height: 44px;
      background: rgba(200,168,75,0.15);
      border: 1px solid var(--gold);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .inv-icon i { color: var(--gold); font-size: 1.1rem; }
    .inv-point-title { font-family: 'Lato', serif; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
    .inv-point-text { font-size: 0.85rem; color: rgba(245,240,232,0.7); line-height: 1.6; }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, var(--gold) 0%, #a8882d 100%);
      padding: 80px 0;
      text-align: center;
    }
    .cta-title {
      font-family: 'Lato', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      color: var(--navy);
      margin-bottom: 14px;
    }
    .cta-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--navy-light);
      margin-bottom: 30px;
    }
    .btn-navy {
      background: var(--navy);
      color: var(--gold);
      font-family: 'Lato', serif;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 14px 36px;
      border: none;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-navy:hover {
      background: var(--navy-light);
      color: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(13,27,62,0.4);
    }

    /* ── FOOTER ── */
    footer {
      background: #07101f;
      padding: 60px 0 30px;
      border-top: 3px solid var(--gold);
    }
    .footer-brand {
      font-family: 'Lato', serif;
      font-size: 1.8rem;
      color: var(--gold);
      letter-spacing: 3px;
      margin-bottom: 12px;
    }
    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      color: rgba(245,240,232,0.6);
      font-size: 1rem;
      margin-bottom: 20px;
    }
    footer .footer-link { color: rgba(245,240,232,0.6); font-size: 0.85rem; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.3s; }
    footer .footer-link:hover { color: var(--gold); }
    .footer-head { font-family: 'Lato', serif; color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 18px; }
    .footer-bottom { border-top: 1px solid rgba(200,168,75,0.15); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.78rem; color: rgba(245,240,232,0.4); }
    .social-icon { color: rgba(245,240,232,0.6); font-size: 1.2rem; margin-right: 14px; transition: color 0.3s; }
    .social-icon:hover { color: var(--gold); }

    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 768px) {
        .hero-content{padding: 30px !important}
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .highlight-item { border-right: none; border-bottom: 1px solid rgba(200,168,75,0.15); }
      .about-badge { position: static; margin-top: 16px; display: inline-block; }
    }
    .img1{width: 100%;
    max-width: 400px;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    border: 2px solid #fff;}

    .gallery-img {
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.lightbox-caption {
    color: #fff;
    margin-top: 10px;
}

.lightbox-title {
    font-size: 18px;
    font-weight: 600;
}

.lightbox-desc {
    font-size: 14px;
    opacity: 0.8;
}