/* Global Reset & CSS Variables */
:root {
    --bg-light: #f7f9fc;
    --navy-dark: #0f1c2e;
    --navy-hero: #122138;
    --gold: #c69251;
    --gold-hover: #b07e3f;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #e2e8f0;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

    .btn-gold:hover {
        background-color: var(--gold-hover);
        transform: translateY(-2px);
    }

.btn-outline {
    display: inline-block;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* Navigation Bar */
header {
    background-color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.85rem;
    image-orientation:
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 4rem;
    align-items: center;
}

    .nav-links a {
        color: var(--navy-hero);
        font-size: 0.9rem;
        font-family: Calibri;
        text-transform: uppercase;
        font-weight: 700;
        transition: var(--transition);
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(18, 33, 56, 0.92) 0%, rgba(15, 28, 46, 0.96) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 6rem 0 10rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.feature-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .feature-card-dark.gold-bg {
        background: var(--gold);
        border-color: var(--gold);
    }

    .feature-card-dark svg {
        width: 36px;
        height: 36px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
    }

/* Floating Feature Cards (Overlapping Hero) */
.floating-cards-section {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 5rem;
}

.floating-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.top-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

    .top-card:hover {
        transform: translateY(-5px);
    }

.top-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.top-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.top-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Solutions Section */
.solutions-section {
    padding-left: 3em;
    padding-right: 3em;
}

.section-title {
    font-size: 2.2rem;
    color: var(--navy-dark);
    margin-bottom: 3rem;
    font-weight: 600;
    font-family: Avian;
    color: burlywood;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.solution-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .solution-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.badge-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

    .badge-icon.gold {
        background: var(--gold);
    }

    .badge-icon svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
    }

.solution-content {
    padding: 2rem 1.5rem 1.5rem;
}

    .solution-content h3 {
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .solution-content p {
        color: var(--text-gray);
        font-size: 0.88rem;
        margin-bottom: 1.5rem;
    }

/* How We Work & Form Section */
.workflow-section {
    padding: 4rem 0 6rem;
    background-color: #ffffff;
}

.workflow-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.workflow-left p.sub-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .step-circle svg {
        width: 26px;
        height: 26px;
        stroke: var(--navy-dark);
        fill: none;
        stroke-width: 2;
    }

.step-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.step-item span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 -1rem 2.5rem;
    position: relative;
}

    .step-connector::after {
        content: '→';
        position: absolute;
        right: 0;
        top: -10px;
        color: var(--text-gray);
        font-size: 0.8rem;
    }

/* Consultation Form Card */
.form-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    color: darkblue;
    font-family: Cambria;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

    .form-card h3 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: darkblue;
        font-family: Cambria;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group.full-width {
        grid-column: span 2;
    }

.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

    .form-control::placeholder {
        color: #94a3b8;
    }

    .form-control:focus {
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.12);
    }

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-cards {
        justify-content: center;
    }

    .floating-grid, .solutions-grid {
        grid-template-columns: 1fr;
    }

    .workflow-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

.google-map {
    width: 100%;
    height: 300px;
    border: 5px solid #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.bandh3 {
    font-family: Ink Free;
    color: burlywood;
    font-size: 2em;
}

.para {
    font-family: Avian;
    color: burlywood;
    font-size: 1em;
}

/* Container holding the marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Track containing two identical sets of images for continuous looping */
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

/* Pause scrolling when hovering over the marquee area */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Individual clickable card styling */
.marquee-item {
    position: relative;
    margin: 0 15px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

    .marquee-item img {
        height: 250px;
        width: 350px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .marquee-item:hover img {
        transform: scale(1.08);
    }

    /* Hover overlay text */
    .marquee-item .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .marquee-item:hover .overlay {
        opacity: 1;
    }

/* Left-to-right infinite scrolling keyframes */
@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Modal dialog styling */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1e293b;
    padding: 20px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

    .modal-content img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .modal-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}

    .close-btn:hover {
        color: #ffffff;
    }

.address {
    font-family: Avian;
    color: navy;
    font-size: 15px;
}

.address-header {
    padding-top: 15px;
    padding-bottom: 5px;
}

.view-map {
    font-family: Ink Free;
    color: burlywood;
    font-weight: 600;
}

.tab-button {
    padding: 10px 10px;
    color: burlywood; /* Default text color */
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    /* Color state applied on click */
    .tab-button.active {
        color: burlywood; /* Active text color (White) */
    }
button:hover {
    background-color: burlywood;
}
/* Footer */
footer {
    background-color: #1a252f;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}
