:root {
    --navy:       #0E2E50;
    --navy-mid:   #143320;
    --gold:       #1EB885;
    --gold-light: #4ECFA3;
    --cream:      #EEF8F2;
    --cream-dark: #C8EADA;
    --terra:      #1A8C5C;
    --white:      #F5FBF7;
    --text-muted: #5A7A68;
    --border:     rgba(30,184,133,0.2);
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; }

  /* ── NAV ── */
  .main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #0E2E50;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #0E2E50;
    padding: 0.9rem 2rem;
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Inter', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.04em; text-decoration: none;
  }
  .nav-logo span { color: var(--cream); font-weight: 300; font-style: italic; font-size: 0.85rem; display: block; letter-spacing: 0.03em; line-height: 1; }
  .nav-link-item {
    color: rgba(238,248,242,0.75) !important;
    font-size: 0.83rem; letter-spacing: 0.05em;
    text-transform: uppercase; font-weight: 400;
    transition: color 0.3s; text-decoration: none; padding: 0.4rem 0.6rem !important;
  }
  .nav-link-item:hover { color: var(--gold) !important; }
  .nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 0.5rem 1.3rem !important; border-radius: 2px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; transition: background 0.3s; text-decoration: none;
  }
  .nav-cta:hover { background: var(--gold-light) !important; }
  .navbar-toggler { border-color: rgba(30,184,133,0.4); }
  .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30,184,133,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 9999;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25D366; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,0.55); }

  /* ── HERO ── */
  .hero {
    min-height: 70vh;
    background: var(--navy);
    position: relative; display: flex; align-items: center; overflow: hidden;
    padding-top: 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80') center/cover no-repeat;
    opacity: 0.7;
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(30,184,133,0.04) 60px),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(30,184,133,0.04) 60px);
  }
  .hero-accent {
    position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
    background: linear-gradient(135deg, transparent 0%, rgba(30,184,133,0.06) 100%);
    border-left: 1px solid rgba(30,184,133,0.12);
  }
  .hero-content { position: relative; z-index: 2; padding: 4rem 0; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.6rem;
  }
  .hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
  .hero-title {
    font-family: 'Inter', serif;
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300;
    color: var(--cream); line-height: 1.06; margin-bottom: 1rem;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 1rem; color: rgba(238,248,242,0.6);
    line-height: 1.75; margin-bottom: 2.2rem; font-weight: 300; max-width: 520px;
  }
  .hero-cta-wrap { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .btn-gold {
    display: inline-block;
    background: var(--gold); color: var(--navy);
    padding: 0.75rem 1.8rem; border-radius: 2px;
    font-size: 0.84rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none; transition: background 0.3s;
  }
  .btn-gold:hover { background: var(--gold-light); color: var(--navy); }
  .btn-ghost {
    display: inline-block;
    border: 1px solid rgba(30,184,133,0.4); color: var(--cream);
    padding: 0.75rem 1.8rem; border-radius: 2px;
    font-size: 0.84rem; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; text-decoration: none; transition: all 0.3s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-contact-bar {
    display: flex; gap: 2rem; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid rgba(30,184,133,0.15);
  }
  .hc-item { display: flex; align-items: center; gap: 0.5rem; }
  .hc-icon { color: var(--gold); font-size: 0.9rem; }
  .hc-text { font-size: 0.82rem; color: rgba(238,248,242,0.6); }
  .hc-text a { color: rgba(238,248,242,0.7); text-decoration: none; transition: color 0.3s; }
  .hc-text a:hover { color: var(--gold); }

  /* ── MARQUEE ── */
  .strip { background: var(--navy); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
  .strip-inner { display: inline-flex; animation: marquee 28s linear infinite; align-items: center; }
  .strip-item { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; font-weight: 500; padding: 0 2rem; }
  .strip-dot { width: 4px; height: 4px; background: var(--navy); border-radius: 50%; display: inline-block; opacity: 0.4; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTION COMMON ── */
  .section-pad { padding: 5.5rem 0; }
  .section-tag {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Inter', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; color: var(--navy);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-title-light { color: var(--cream); }

  /* ── ABOUT ── */
  .about-section { background: var(--white); }
  .about-img-wrap { position: relative; }
  .about-img { width: 100%; border-radius: 4px; object-fit: cover; height: 420px; display: block; }
  .about-badge {
    position: absolute; bottom: -1rem; right: -1rem;
    background: var(--gold); color: var(--navy);
    padding: 1rem 1.2rem; border-radius: 4px; text-align: center;
    font-family: 'Inter', serif; font-size: 1.8rem; font-weight: 600; line-height: 1;
  }
  .about-badge small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; margin-top: 0.2rem; }
  .about-text { font-size: 0.94rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }
  .about-highlight { display: flex; align-items: flex-start; gap: 0.6rem; }
  .ah-icon { color: var(--gold); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
  .ah-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

  /* ── CATEGORIES ── */
  .categories-section { background: var(--cream); }
  .cat-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 4px; padding: 1.8rem 1.4rem;
    cursor: pointer; transition: all 0.35s;
    position: relative; overflow: hidden; height: 100%;
  }
  .cat-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
  }
  .cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,36,22,0.1); }
  .cat-card:hover::before { transform: scaleX(1); }
  .cat-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .cat-name { font-family: 'Inter', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
  .cat-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

  /* ── SERVICES ── */
  .services-section { background: var(--navy); }
  .svc-card {
    background: rgba(238,248,242,0.04); border: 1px solid rgba(30,184,133,0.15);
    border-radius: 4px; padding: 1.8rem 1.5rem; height: 100%;
    transition: all 0.35s;
  }
  .svc-card:hover { background: rgba(30,184,133,0.08); border-color: rgba(30,184,133,0.35); transform: translateY(-3px); }
  .svc-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 1rem; }
  .svc-title { font-family: 'Inter', serif; font-size: 1.2rem; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem; }
  .svc-text { font-size: 0.84rem; color: rgba(238,248,242,0.5); line-height: 1.75; font-weight: 300; margin: 0; }
  .bstat {
    background: rgba(238,248,242,0.04); border: 1px solid rgba(30,184,133,0.15);
    padding: 1.5rem; border-radius: 4px;
  }
  .bstat-num { font-family: 'Inter', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold); }
  .bstat-label { font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(238,248,242,0.45); margin-top: 0.2rem; }

  /* ── GALLERY ── */
  .gallery-section { background: var(--white); }
  .gallery-wrap { border-radius: 4px; overflow: hidden; position: relative; }
  .gallery-img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform 0.5s; }
  .gallery-wrap:hover .gallery-img { transform: scale(1.05); }
  .gallery-wrap-tall .gallery-img { height: 100%; min-height: 220px; }

  /* ── VIDEO ── */
  .video-section { background: var(--navy); }
  .video-embed { border-radius: 4px; overflow: hidden; aspect-ratio: 16/9; }
  .video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

  /* ── CITIES ── */
  .cities-section { background: var(--cream); }
  .city-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 4px;
    padding: 1.3rem 0.8rem; text-align: center; cursor: pointer; transition: all 0.3s; height: 100%;
  }
  .city-card:hover { background: var(--navy); border-color: var(--navy); }
  .city-card:hover .city-name { color: var(--gold); }
  .city-card:hover .city-prop { color: rgba(238,248,242,0.5); }
  .city-emoji { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .city-name { font-size: 0.88rem; font-weight: 500; color: var(--navy); margin-bottom: 0.15rem; transition: color 0.3s; }
  .city-prop { font-size: 0.7rem; color: var(--text-muted); transition: color 0.3s; }

  /* ── CONTACT ── */
  .contact-section { background: var(--white); }
  .contact-card {
    background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 1.8rem; height: 100%;
  }
  .contact-card-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.7rem; }
  .contact-card-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; }
  .contact-card-val { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
  .contact-card-val a { color: var(--navy); text-decoration: none; transition: color 0.3s; }
  .contact-card-val a:hover { color: var(--gold); }
  .map-embed { width: 100%; height: 300px; border: none; display: block; }
  .form-control, .form-select {
    border-color: var(--border) !important; border-radius: 2px !important;
    font-size: 0.88rem !important; background: var(--cream) !important;
    color: var(--navy) !important;
  }
  .form-control:focus, .form-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 0.15rem rgba(30,184,133,0.2) !important;
  }

  /* ── FOOTER ── */
  footer { background: var(--navy); padding: 4rem 0 2rem; border-top: 1px solid rgba(30,184,133,0.12); }
  .footer-logo { font-family: 'Inter', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-bottom: 0.8rem; }
  .footer-about { font-size: 0.84rem; color: rgba(238,248,242,0.45); line-height: 1.8; font-weight: 300; }
  .footer-heading { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
  .footer-links a { font-size: 0.84rem; color: rgba(238,248,242,0.45); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-divider { border-color: rgba(30,184,133,0.1); margin: 1.5rem 0; }
  .footer-copy { font-size: 0.76rem; color: rgba(238,248,242,0.3); }
  .social-btn {
    width: 34px; height: 34px; border-radius: 2px;
    border: 1px solid rgba(30,184,133,0.2);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(238,248,242,0.45) !important; font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--gold) !important; color: var(--gold) !important; }

  /* ── RERA STRIP ── */
  .rera-strip {
    background: rgba(238,248,242,0.03);
    border-top: 1px solid rgba(30,184,133,0.1);
    padding: 0.75rem 0;
  }
  .rera-badge { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(238,248,242,0.25); }
  .rera-badge strong { color: rgba(238,248,242,0.4); }

  /* ── UTILITIES ── */
  .btn-outline-green {
    display: inline-block; border: 1px solid var(--gold); color: var(--gold);
    padding: 0.7rem 1.8rem; text-decoration: none; font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; transition: all 0.3s;
  }
  .btn-outline-green:hover { background: var(--gold); color: var(--navy); }

  @media (max-width: 768px) {
    .hero-title { font-size: 2.6rem; }
    .hero-contact-bar { gap: 1rem; }
    .about-badge { bottom: 0.5rem; right: 0.5rem; }
    section { padding: 3.5rem 0; }
    .section-pad { padding: 3.5rem 0; }
  }
  






  
  /*cards*/
   @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');

  .sc { font-family: 'DM Sans', sans-serif; padding: 2.5rem 1rem; background: #eaf7f4; border-radius: 16px; }

  .sc-label { text-align: center; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: #3dd6b0; margin-bottom: 0.4rem; }
  .sc-heading { text-align: center; font-size: 1.6rem; font-weight: 600; color: #333; margin-bottom: 2.2rem; }

  .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  .scard {
    background: linear-gradient(145deg, #eaf7f4, #fff);
    border: 1px solid #1a4a5a;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(28px);
    animation: riseIn 0.6s forwards;
  }
  .scard:nth-child(1) { animation-delay: 0.1s; }
  .scard:nth-child(2) { animation-delay: 0.25s; }
  .scard:nth-child(3) { animation-delay: 0.4s; }

  @keyframes riseIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .scard::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,158,117,0.18) 0%, transparent 70%);
    transition: transform 0.5s ease;
  }
  .scard:hover::before { transform: scale(2.2); }

  .scard::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
  }
  .scard:hover::after { border-color: #3dd6b0; }

  .icon-ring {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(29,158,117,0.15);
    border: 1px solid rgba(61,214,176,0.25);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.3s, transform 0.4s;
  }
  .scard:hover .icon-ring { background: rgba(29,158,117,0.3); transform: rotate(8deg) scale(1.08); }

  .icon-ring i { font-size: 24px; color: #3dd6b0; transition: transform 0.4s; }
  .scard:hover .icon-ring i { transform: rotate(-8deg); }

  .scard h3 { font-size: 1.05rem; font-weight: 600; color: #333; margin-bottom: 0.55rem; }
  .scard p { font-size: 0.84rem; color: #7aadb8; line-height: 1.75; margin-bottom: 1.4rem; }

  .sc-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.8px;
    text-transform: uppercase; text-decoration: none;
    color: #0a1628;
    background: #3dd6b0;
    border: none; border-radius: 8px;
    padding: 0.5rem 1.1rem;
    position: relative; overflow: hidden;
    transition: background 0.25s, transform 0.2s;
  }
  .sc-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.4s;
  }
  .sc-btn:hover::before { transform: translateX(110%) skewX(-15deg); }
  .sc-btn:hover { background: #2fbf9b; transform: translateY(-2px); }
  .sc-btn:active { transform: translateY(0); }

  .sc-btn i { transition: transform 0.3s; }
  .sc-btn:hover i { transform: translateX(4px); }

  .badge-dot {
    position: absolute; top: 1.1rem; right: 1.1rem;
    width: 8px; height: 8px; border-radius: 50%;
    background: #3dd6b0;
    animation: pulse 2s infinite;
  }
  .scard:nth-child(2) .badge-dot { background: #5ba8d4; animation-delay: 0.4s; }
  .scard:nth-child(3) .badge-dot { background: #a78bfa; animation-delay: 0.8s; }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(61,214,176,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(61,214,176,0); }
  }

  .scard:nth-child(2) .icon-ring { background: rgba(24,95,165,0.2); border-color: rgba(91,168,212,0.3); }
  .scard:nth-child(2) .icon-ring i { color: #5ba8d4; }
  .scard:nth-child(2):hover .icon-ring { background: rgba(24,95,165,0.35); }
  .scard:nth-child(2) .sc-btn { background: #5ba8d4; color: #0a1628; }
  .scard:nth-child(2) .sc-btn:hover { background: #4a91bd; }

  .scard:nth-child(3) .icon-ring { background: rgba(124,58,237,0.15); border-color: rgba(167,139,250,0.3); }
  .scard:nth-child(3) .icon-ring i { color: #a78bfa; }
  .scard:nth-child(3):hover .icon-ring { background: rgba(124,58,237,0.28); }
  .scard:nth-child(3) .sc-btn { background: #a78bfa; color: #0a1628; }
  .scard:nth-child(3) .sc-btn:hover { background: #9270f5; }
  
  
  /*Search bar*/
  /*search box css start here*/
.search-sec{
    background: #1A4668;padding: 2rem;
}
.search-slt{
    display: block;
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #55595c;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    height: calc(3rem + 2px) !important;
    border-radius:0;
}
.wrn-btn{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
     height: calc(3rem + 2px) !important;
     border-radius:0;
}

  /*Search bar*/