
    /* @font-face {
      font-family: "Steelfish Rounded";
      src: url("/fonts/steelfish/Steelfish Rounded Bd.otf") format("opentype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    } */

    :root{
      --brand-blue: #235A70;    /* main building blue (from logo) */
      --brand-olive: #7A7A3A;   /* Ganesh olive/gold */
      --accent: #D9B66A;        /* warm accent derived from logo gold */
      --muted: #f3f5f6;
      --text-dark: #0f1720;
    }

    /* Reset & base */
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      /* font-family: "Steelfish Rounded", "Segoe UI", Roboto, Arial, sans-serif; */
      color:var(--text-dark);
      /* background: linear-gradient(180deg,#fbfcfd 0%, #f3f5f6 100%); */
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.38;
    }

    /* Header */
    .site-header{
      position:fixed;
      top:0;
      left:0;
      right:0;
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:10px 40px;
      z-index:60;
      background:transparent;
      transition:background .25s ease, box-shadow .25s ease;
    }
    .site-header.scrolled{
      background:rgba(255,255,255,0.96);
      box-shadow:0 8px 30px rgba(8,15,20,0.08);
      backdrop-filter: blur(6px);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      text-decoration:none;
    }
    .brand img{
      height:64px;
      width:auto;
      display:block;
    }
    .brand .title{
      font-size:20px;
      letter-spacing:0.6px;
      color:var(--brand-olive);
      margin:0;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:20px;
    }
    .nav a{
      text-decoration:none;
      color:rgba(15,23,32,0.86);
      font-weight:700;
      padding:8px 12px;
      border-radius:8px;
      transition:background .15s ease, color .15s ease;
    }
    .nav a:hover{ background: rgba(35,90,112,0.06); color:var(--brand-blue); }
    .btn-primary{
      background: linear-gradient(90deg,var(--brand-blue), #17707f);
      color: #fff;
      padding:10px 18px;
      border-radius:10px;
      font-weight:700;
      text-decoration:none;
      box-shadow:0 8px 20px rgba(35,90,112,0.12);
      transition:transform .12s ease, box-shadow .12s ease;
    }
    .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(35,90,112,0.16); }

    /* Hero */
    .hero{
      min-height:78vh;
      display:grid;
      grid-template-columns: 1fr 480px;
      gap:48px;
      align-items:center;
      padding:120px 6vw 80px;
      position:relative;
      overflow:visible;
    }
    .hero .content{
      max-width:780px;
      z-index:2;
    }
    .eyebrow{
      display:inline-block;
      background: linear-gradient(90deg, rgba(122,122,58,0.12), rgba(217,182,106,0.06));
      color:var(--brand-olive);
      padding:6px 12px;
      border-radius:999px;
      font-weight:700;
      margin-bottom:18px;
      font-size:13px;
    }
    .hero h1{
      margin:0 0 18px 0;
      font-size:46px;
      line-height:1.02;
      color:var(--brand-blue);
      letter-spacing:0.5px;
    }
    .hero p.lead{
      margin:0 0 28px;
      color:rgba(15,23,32,0.78);
      font-size:18px;
      max-width:62ch;
    }
    .hero .cta-row{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
    .secondary{
      background:transparent;
      color:var(--brand-blue);
      border:2px solid rgba(35,90,112,0.12);
      padding:10px 16px;
      border-radius:10px;
      text-decoration:none;
      font-weight:700;
    }

    /* Visual card (right) */
    .visual-card{
      background:linear-gradient(180deg, rgba(35,90,112,0.06), rgba(122,122,58,0.02));
      border-radius:18px;
      padding:28px;
      box-shadow:0 20px 60px rgba(5,20,30,0.06);
      display:flex;
      flex-direction:column;
      gap:18px;
      align-items:center;
    }
    .visual-card .logo-wrap{
      width:220px; height:220px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      background:linear-gradient(180deg,#ffffff 0%, rgba(243,245,246,0.7)100%);
      box-shadow: inset 0 -6px 18px rgba(22,40,50,0.02);
    }
    .visual-card img{ max-width:200px; max-height:200px; display:block; }

    .features{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      width:100%;
    }
    .feature{
      background:#fff;
      border-radius:12px;
      padding:12px 14px;
      display:flex; gap:12px; align-items:center;
      box-shadow:0 4px 18px rgba(8,20,30,0.04);
    }
    .feature .dot{
      width:12px; height:12px; border-radius:50%;
      background:var(--brand-olive);
    }
    .feature .txt{ font-size:14px; font-weight:700; color:#22303a; }

    /* Sections */
    .section{
      max-width:1200px;
      margin:40px auto;
      padding:40px 6vw;
      background:transparent;
    }
    .section .heading{
      display:flex; align-items:center; gap:12px; margin-bottom:18px;
    }
    .section .heading h3{
      margin:0; color:var(--brand-blue); font-size:26px;
    }

    /* Plots grid */
    .plots-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
      gap:18px;
    }
    .plot{
      border-radius:14px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 30px rgba(8,20,30,0.05);
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .plot:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(8,20,30,0.08); }
    .plot img{ width:100%; height:180px; object-fit:cover; display:block; }
    .plot .meta{ padding:14px 16px; }
    .plot h4{ margin:0 0 8px 0; font-size:18px; color:var(--brand-blue); }
    .plot p{ margin:0; color:rgba(15,23,32,0.64); font-size:14px; }

    /* Map card */
    .map-card{
      border-radius:14px; overflow:hidden;
      box-shadow:0 16px 40px rgba(8,20,30,0.06);
    }
    .map-card iframe{ width:100%; height:420px; border:0; display:block; }

    /* Footer */
    footer{
      background: linear-gradient(90deg, rgba(35,90,112,0.06), rgba(122,122,58,0.03));
      margin-top:36px;
      padding:28px 6vw;
      text-align:center;
      color:rgba(15,23,32,0.7);
      border-top:1px solid rgba(15,23,32,0.03);
    }
    footer .small{ font-size:13px; }

    /* Responsive */
    @media (max-width:1000px){
      .hero{ grid-template-columns:1fr; padding:120px 5vw 60px; gap:26px; }
      .visual-card{ order:-1; }
      .brand img{ height:56px; }
    }
    @media (max-width:560px){
      .site-header{ padding:10px 18px; height:68px; }
      .brand .title{ font-size:16px; }
      .hero h1{ font-size:34px; }
      .hero p.lead{ font-size:15px; }
      .visual-card .logo-wrap{ width:180px; height:180px; }
    }

    /* small helpers */
    .muted { color: rgba(15,23,32,0.54); font-weight:600; }
    .kicker { font-size:12px; text-transform:uppercase; letter-spacing:1px; color:rgba(15,23,32,0.36); }
 
    .btn-primary {
    background: linear-gradient(90deg, var(--brand-blue), #17707f);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(35,90,112,0.12);
    transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(35,90,112,0.16);
}

.btn-secondary {
    background: #fff;
    color: var(--brand-blue);
    border: 2px solid rgba(35,90,112,0.12);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.btn-secondary:hover {
    background: rgba(35,90,112,0.08);
    color: var(--brand-blue);
}
/* Grid layout for better responsiveness */
.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Individual project card */
.plot {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.plot:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    opacity: 1;
}

/* Image with elegant border radius */
.plot img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.3s ease;
}

.plot:hover img {
    transform: scale(1.05);
}

/* Text section */
.plot .meta {
    padding: 24px;
    background: #f9f9f9;
    border-radius: 0 0 16px 16px;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
}

.plot .meta h4 {
    font-size: 1.35rem;
    color: #004d40;
    margin-bottom: 14px;
    font-weight: 700;
}

.plot .meta p {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.6rem;
    margin-bottom: 20px;
}

/* Premium button */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #00796b;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #004d40;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.plots-grid {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Make Contact button more vibrant */
.btn-secondary {
    background-color: #006d77; /* Strong green color */
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #004d40; /* Darker shade on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    background-color: #003d35; /* Even darker shade for active state */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Logo section background */
.hero .visual-card {
    background: #f1f8f6; /* Light background for the logo section */
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero .visual-card img {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero .visual-card .trusted {
    font-size: 1.25rem;
    font-weight: 700;
    color: #006d77;
    margin-bottom: 15px;
}

.hero .visual-card .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.hero .visual-card .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.hero .visual-card .feature .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00796b;
}
/* -------- SMALLER PROJECT GRID -------- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

/* -------- SMALL COMPACT CARD -------- */
.project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(8,20,30,0.06);
    overflow: hidden;
    transition: 0.2s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(8,20,30,0.08);
}

/* Smaller image */
.project-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: 0.2s ease;
}

.project-card:hover img {
    transform: scale(1.03);
}

/* Smaller padding & text */
.project-info {
    padding: 10px 12px 14px 12px;
}

.project-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.project-desc {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Small button */
.small-btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 6px;
}
/* HEADER WRAPPER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(8,20,30,0.05);
    transition: all 0.25s ease;
}

/* INNER CONTAINER */
.nav-container {
    max-width: 1280px;
    /* margin: auto; */
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #102A43;
    text-decoration: none;
}

.brand img {
    height: 42px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    text-decoration: none;
    position: relative;
    transition: 0.25s ease;
}

/* Underline on hover */
.nav-links a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: #235A70;
    transition: 0.25s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Primary Button */
.btn-nav {
    padding: 8px 18px;
    background: var(--accent, #235A70);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(35, 90, 112, 0.25);
}

/* Button Hover */
.btn-nav:hover {
    background: #1D4E62;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #102A43;
    border-radius: 3px;
    transition: 0.25s ease;
}

/* MOBILE STYLES */
@media (max-width: 820px) {
    .nav-links {
        position: fixed;
        top: 78px;
        right: -100%;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(12px);
        width: 250px;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 8px 30px rgba(8,20,30,0.12);
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Shrink on scroll */
.scrolled {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}
.section {
    padding: 20px 20px; /* top/bottom padding */
    margin: 0 auto;
    max-width: 1200px;
}

.section .heading {
    margin-bottom: 30px; /* spacing between heading and content */
}

.section p {
    margin-bottom: 16px; /* spacing between paragraphs */
}

.hero {
    padding-top: 80px;
    padding-bottom: 60px;
}

.plots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; /* spacing between plot cards */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
