        :root {
            --primary: #1A242F;   /* Midnight Navy */
            --accent: #D4AF37;    /* Metallic Gold */
            --light: #F8F9FA;     /* Soft Gray */
            --white: #FFFFFF;
            --transition: all 0.3s ease;
        }

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

        /* make media scale fluidly */
        img, picture, video, iframe {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* utility container for consistent padding and centering */
        .container {
            width: min(1200px, 100%);
            margin: 0 auto;
            padding: 0 20px;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--light);
            color: var(--primary);
            line-height: 1.6;
        }

        h1, h2 {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* --- Navigation --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 12px clamp(12px, 3vw, 30px);
            background: #18233d;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: none;
            flex-wrap: wrap;
        }

        .nav-logo {
            display: flex;
            flex-direction: column;
            gap: 4px;
            text-decoration: none;
            min-width: 50px;
        }

        .nav-logo img {
            width: clamp(40px, 8vw, 60px);
            height: clamp(40px, 8vw, 60px);
        }


        .brand-main {
            font-family: "Playfair Display", Georgia, serif;
            font-size: clamp(16px, 4vw, 25px);
            font-weight: 700;
            line-height: 1;
            color: #f4ad17;
            letter-spacing: 0;
            text-transform: none;
            display: block;
            margin-left: auto;
            margin-right: auto;
            margin-top: 0;
        }
        
        .nav-logo img .brand-main {
            align-items: center;

        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: clamp(15px, 3vw, 30px);
            margin: 0 auto;
            padding-left: 0;
        }

        .nav-links a {
            text-decoration: none;
            color: #afb3b8;
            font-weight: 600;
            font-size: clamp(12px, 2vw, 15px);
            transition: var(--transition);
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a.active {
            color: var(--accent);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: auto;
        }

        .phone-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #afb3b8;
            text-decoration: none;
            font-size: clamp(11px, 2vw, 14px);
            font-weight: 600;
        }

        .phone-link :hover {
            color: var(--accent);
        }

        .phone-link i {
            width: 12px;
            height: 12px;
            color: #dce4f2;
        }

        .quote-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            padding: 0 18px;
            border-radius: 8px;
            background: #f4ad17;
            color: #151f34;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }

        .quote-btn:hover {
            background: #ffd36b;
        }

        /* --- Hero Section --- */
        .marquee-wrapper {
            width: 100%;
            overflow: hidden;           /* hides content that slides out */
                       /* change to your hero background */
            color: #fff;
            padding: 1rem;
            margin: 0 1rem;
            border-top: 1px solid rgba(255,255,255,0.15);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            position: relative;        /* establish stacking context */
            /*z-index: 1;                /* sit above the hero overlay (z-index:1) */
        }

        .marquee-content {
            display: inline-flex;
            align-items: center;             /* vertically center logo and text */
            white-space: nowrap;
            animation: scroll 5s linear infinite;
        }

        .logo {
            height: 58px;               /* adjust to your logo size */
            width: auto;
            vertical-align: middle;
        }

        /* center content inside the scrolling track */
        .marquee-track {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: -20px;         /* shift upward */
        }

        .inline-logo {
        height: 1.4em;
        margin: 0 0.8rem;
        vertical-align: middle;
        filter: brightness(1.8); /* brighten logo image */
        }

        @keyframes scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-100%); }
        }


        .hero {
            height: 100vh;
            min-height: 60vh;
            background: linear-gradient(rgba(26, 36, 47, 0.8), rgba(26, 36, 47, 0.8)), 
                        url('images/hero1.jpg') no-repeat center center/cover;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 80px 20px 20px; /* push content below fixed nav */
            position: relative;
        }

        /* override height/backgrounds for page-specific heroes */
        .contact-hero {
            height: 75vh;
            background: linear-gradient(rgba(26, 36, 47, 0.75), rgba(26, 36, 47, 0.75)),
                        url(images/hero2.jpg) no-repeat center center/cover;
        }
        .contact-hero .hero-content {
            max-width: 600px;
        }
        
        .projects-hero {
            height: 90vh;
            background: linear-gradient(rgba(26, 36, 47, 0.75), rgba(26, 36, 47, 0.75)),
                        url('images/hero1.jpg') no-repeat center center/cover;
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 20, 40, 0.75);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            max-width: 700px;
            z-index: 2; /* keep above overlay */
        }

        .subtitle {
            color: #f5a623;
            letter-spacing: 2px;
            font-size: clamp(10px, 2.5vw, 14px);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero h1 {
            font-size: clamp(28px, 7vw, 60px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
            font-family: "Playfair Display", Georgia, serif;
        }

/*        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            max-width: 900px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            font-weight: 300;
            opacity: 0.9;
        }
*/
        .btn-group {
            display: flex;
            gap: 20px;
                justify-content: center;
                flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .btn-gold {
            background-color: var(--accent);
            color: var(--primary);
        }

        .btn-gold:hover {
            background-color: transparent;
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-outline {
            border-color: var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }

       .highlight {
            color: #f5a623;
        }

        .description {
            color: #ddd;
            font-size: clamp(14px, 3.5vw, 18px);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* --- Animations --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .btn-group { flex-direction: column; 
                width: 100%; align-items: center;}
            .btn { width: 100%; max-width: 280px; }
            .hero { 
                padding: 50px 16px 20px; 
                min-height: 80vh;
            }
        }
        
        @media (max-width: 640px) {
            .nav-logo img {
                width: 45px;
                height: 45px;
            }
            .hero {
                padding: 50px 12px 20px;
                min-height: 75vh;
            }
            .btn { width: 100%; max-width: 260px; }
        }
        
        @media (max-width: 480px) {
            .nav-logo img {
                width: 40px;
                height: 40px;
            }
            .hero {
                padding: 40px 10px 15px;
                min-height: 70vh;
            }
            .btn-group { gap: 12px; }
            .btn { width: 100%; max-width: 240px; padding: 12px 24px; }
        }
        
        /* tablet / small laptop adjustments */
        @media (max-width: 1024px) {
            /* collapse multi‑column grids to a single column */
            .services-grid,
            .about-wrapper,
            .portfolio-grid,
            .why-grid,
            .testimonials-grid,
            .contact {
                grid-template-columns: 1fr;
            }

            .nav-links a {
                font-size: clamp(11px, 2vw, 14px);
            }
        }

/* --- Services Section --- */
.services {
    padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 8%);
    background-color: var(--white);
    text-align: center;
}

.section-header {
    margin-bottom: clamp(40px, 8vw, 60px);
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--light);
    padding: 50px 30px;
    border-top: 5px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background: var(--white);
}

.icon-box {
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    color: var(--accent);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.service-card p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #666;
}


/* --- Portfolio Section --- */
.portfolio {
    padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 8%);
    background: #f3f4f6;
    color: var(--white);
}

.portfolio .section-header h2 {
    color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 36, 47, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: 'Montserrat';
    color: var(--accent);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.portfolio-item:hover h4 {
    transform: translateY(0);
}

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

    .portfolio-item {
        height: 300px;
    }
}


/* --- Why Choose Us --- */
.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #f4ad17;
}

.why-choose {
    background: #111e37;
    color: #fff;
    padding: 100px 8%;
}

.why-choose-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.why-choose h2 {
    margin: 14px 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5.5vw, 66px);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.05;
}

.why-subtitle {
    color: #b8c2d4;
    font-size: clamp(14px, 4vw, 20px);
    margin-bottom: clamp(36px, 6vw, 56px);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 36px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item i {
    color: #f4ad17;
    font-size: 22px;
    margin-top: 2px;
}

.why-item h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(14px, 3.5vw, 20px);
    font-weight: 600;
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
}

.why-item p {
    margin: 0;
    color: #b7c2d5;
    font-size: clamp(12px, 2.5vw, 16px);
    line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-section {
    background: #f3f4f6;
    padding: 96px 8%;
}

.testimonials-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section h2 {
    margin: 14px 0 clamp(36px, 6vw, 54px);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5.5vw, 72px);
    text-transform: none;
    letter-spacing: 0;
    color: #0f1f38;
    line-height: 1.06;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    text-align: left;
}

.testimonial-card {
    border: 1px solid #d8dde5;
    border-radius: 10px;
    background: #fff;
    padding: 28px 26px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.stars i {
    color: #f4ad17;
    font-size: 18px;
}

.testimonial-card .quote {
    font-style: italic;
    color: #5b6d80;
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.55;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(13px, 2.5vw, 16px);
    color: #111f39;
}

.testimonial-card span {
    color: #667a90;
}

/* --- Project CTA --- */
.project-cta {
    background: #f4ad17;
    padding: 20px 8%;
}

.project-cta-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.project-cta h2 {
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5vw, 72px);
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.06;
    color: #111f39;
}

.project-cta p {
    margin: 0 auto 30px;
    max-width: 600px;
    color: #15233e;
    font-size: clamp(14px, 3.5vw, 18px);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 6px;
    background: #111f39;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.cta-btn i {
    width: 18px;
    height: 18px;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--white);
}

.contact iframe {
    width: 100%;
    border: 0;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .contact { padding: 80px 6%; }
    .contact iframe { height: 200px; }
}

.contact-info h2 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-form {
    background: var(--light);
    padding: clamp(20px, 5vw, 40px);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent);
}

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

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Footer --- */
footer {
    background: var(--primary);
    color: var(--white);
    padding: clamp(50px, 10vw, 80px) clamp(16px, 5vw, 8%);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 5vw, 40px);
    margin-bottom: clamp(40px, 8vw, 60px);
}

.footer-brand .logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: var(--accent);
}

.footer-brand img {
    width: 80px;
    height: 80px;
}

.footer-brand p {
    color: #888;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons i {
    cursor: pointer;
    transition: var(--transition);
}

.social-icons i:hover {
    color: var(--accent);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

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

@media (max-width: 480px) {
    footer {
        padding: 40px clamp(12px, 3vw, 16px);
    }
    .footer-brand p {
        max-width: 100%;
        font-size: 0.85rem;
    }
}


/* --- Mobile Menu Styles --- */
.menu-toggle {
    /* keep in DOM, visible on small devices via media query below */
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: var(--white);
}

/* make the icon itself easier to see and provide fallback */
.menu-toggle i {
    font-size: 1.5rem;
    display: inline-block;
    color: var(--white);
}

/* unicode fallback if lucide doesn't inject SVG */
.menu-toggle i[data-lucide="menu"]::before {
    content: "\2630"; /* ☰ */
}

@media (max-width: 768px) {
    nav {
        padding: 12px 16px;
    }

    .brand-main {
        font-size: 32px;
    }

    .brand-sub {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        /* ensure it floats above other nav content */
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        display: flex;
        position: fixed;
        right: -100%;
        top: 0px;
        height: clamp(100vh, 70vh, 100vh);
        width: clamp(60%, 75%, 100%);
        background: #18233d;
        flex-direction: column;
        justify-content: left;
        padding-left: 50px;
        align-items: left;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        margin-top: 60px;
    }

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

    .nav-links a {
        color: var(--white);
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-top: 20px;
    }

    .why-choose,
    .testimonials-section,
    .project-cta {
        padding: clamp(50px, 10vw, 72px) clamp(12px, 3vw, 20px);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-subtitle {
        font-size: clamp(14px, 4vw, 16px);
        margin-bottom: clamp(24px, 6vw, 34px);
    }

    .project-cta p {
        font-size: clamp(14px, 3.5vw, 16px);
    }
}

@media (max-width: 910px) {
    .nav-actions {
        display: none;
    }
}


/* --- Success Toast Notification --- */
#success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    animation: slideIn 0.5s ease;
}

@media (max-width: 480px) {
    #success-toast {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: clamp(12px, 2.5vw, 14px);
    }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}




/* About Section */
.about-section {
    padding: clamp(50px, 10vw, 72px) 0 clamp(60px, 10vw, 82px);
    background: #f3f4f6;
}

.about-section .container {
    width: min(1290px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 32px);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 42px;
    align-items: start;
}

/* Left Side */
.section-label {
    display: inline-block;
    color: #e89b00;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 6px;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 30px;
}

.about-text h1 {
    margin: 0 0 20px;
    max-width: 620px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5.5vw, 62px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.6px;
    text-transform: none;
    color: #0e203e;
}

.about-text p {
    max-width: 650px;
    margin-bottom: 16px;
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.45;
    color: #526577;
}

/* Right Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-cards .card {
    min-height: 240px;
    padding: 34px 26px 28px;
    background: #ffffff;
    border: 1px solid #d4d9df;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cards .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.about-cards .card .icon {
    margin-bottom: 18px;
}

.about-cards .icon i {
    font-size: 38px;
    color: #e89b00;
}

.about-cards .card h3 {
    margin: 0 0 14px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(16px, 3.5vw, 22px);
    font-weight: 600;
    line-height: 1.25;
    color: #101f38;
    text-transform: none;
    letter-spacing: 0;
}

.about-cards .card p {
    margin: 0;
    font-size: clamp(13px, 2.5vw, 16px);
    line-height: 1.45;
    color: #56697b;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .about-section .container {
        padding: 0 20px;
    }

    .about-text h1 {
        max-width: 100%;
    }

    .about-text p {
        max-width: 100%;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 56px 0 64px;
    }

    .section-label {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .about-cards .card {
        min-height: 0;
        padding: 26px 20px;
    }
}

/* --- About Page --- */
.section-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 32px);
}

.about-page-hero {
    padding: clamp(100px, 15vw, 150px) 0 clamp(60px, 10vw, 90px);
    background: linear-gradient(rgba(17, 27, 48, 0.86), rgba(17, 27, 48, 0.86)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1974&auto=format&fit=crop") center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-page-hero h1 {
    margin-bottom: 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: 0;
}

.about-page-hero p {
    max-width: 960px;
    font-size: clamp(14px, 3.5vw, 18px);
    opacity: 0.95;
    color: #d9e0ef;
    margin-left: clamp(12px, 5vw, 80px);
    padding: 0 clamp(12px, 3vw, 20px);
}

.company-story {
    padding: clamp(60px, 10vw, 90px) 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 44px);
    align-items: center;
}

.story-copy h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 5vw, 48px);
    text-transform: none;
    letter-spacing: 0;
    color: #0f1f38;
}

.story-copy p {
    margin-bottom: 14px;
    color: #526577;
    font-size: clamp(13px, 2.5vw, 17px);
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    min-height: 420px;
}

.values-section {
    padding: clamp(60px, 10vw, 90px) clamp(16px, 5vw, 8%);
    background: #f3f4f6;
}

.values-header {
    text-align: center;
    margin-bottom: clamp(24px, 5vw, 36px);
}

.values-header h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 5vw, 50px);
    text-transform: none;
    letter-spacing: 0;
    color: #101f38;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid #d6dce3;
    border-radius: 14px;
    padding: 30px 24px;
}

.value-card i {
    color: #e89b00;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
}

.value-card h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 4vw, 24px);
    color: #101f38;
}

.value-card p {
    color: #56697b;
    font-size: clamp(13px, 2.5vw, 15px);
}

.stats-strip {
    padding: clamp(50px, 8vw, 70px) 0;
    background: #18233d;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 3vw, 20px);
    text-align: center;
    padding: 0 clamp(16px, 5vw, 8%);
}

.stat-item h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(22px, 4.5vw, 52px);
    color: #f4ad17;
    line-height: 1;
}

.stat-item p {
    color: #dce4f2;
    margin-top: 8px;
    font-size: clamp(11px, 2.5vw, 14px);
}

@media (max-width: 992px) {
    .section-shell {
        padding: 0 20px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .about-page-hero p {
        font-size: clamp(12px, 3vw, 16px);
        opacity: 0.95;
        color: #d9e0ef;
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .stat-item h3 {
        font-size: clamp(18px, 4vw, 28px);
    }
}

/* --- Services Page --- */
.services-page-hero {
    padding: 150px 0 90px;
    background: linear-gradient(rgba(17, 27, 48, 0.86), rgba(17, 27, 48, 0.86)),
        url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?q=80&w=2070&auto=format&fit=crop") center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.services-page-hero h1 {
    margin: 14px 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5.5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: 0;
}

.services-page-hero p {
    max-width: 960px;
    font-size: clamp(14px, 3.5vw, 18px);
    color: #d9e0ef;
    margin-left: clamp(12px, 5vw, 80px);
    padding: 0 clamp(12px, 3vw, 20px);
}

.service-detail-section {
    padding: clamp(60px, 10vw, 90px) clamp(16px, 5vw, 8%);
    background: #f3f4f6;
}

.service-detail-head {
    margin-bottom: clamp(24px, 5vw, 34px);
}

.service-detail-head h2 {
    margin-top: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 5vw, 52px);
    color: #101f38;
    text-transform: none;
    letter-spacing: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-detail-card {
    background: #fff;
    border: 1px solid #d8dde5;
    border-radius: 12px;
    padding: 26px 22px;
}

.service-detail-card i {
    color: #e89b00;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
}

.service-detail-card h3 {
    margin: 0 0 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    color: #101f38;
}

.service-detail-card p {
    color: #5a6c80;
    margin-bottom: 12px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    position: relative;
    color: #3f5063;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-detail-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e89b00;
    position: absolute;
    left: 0;
    top: 9px;
}

.process-section {
    padding: clamp(60px, 10vw, 90px) clamp(16px, 5vw, 8%);
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.process-step {
    border: 1px solid #d8dde5;
    border-radius: 12px;
    padding: 24px 20px;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4ad17;
    color: #111f39;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step h3 {
    margin-bottom: 8px;
    font-family: "Playfair Display", Georgia, serif;
    color: #101f38;
    font-size: clamp(14px, 3.5vw, 18px);
}

.process-step p {
    color: #55687c;
    font-size: clamp(12px, 2.5vw, 14px);
}

.industries-section {
    padding: clamp(60px, 10vw, 90px) clamp(16px, 5vw, 8%);
    background: #111e37;
}

.industries-section .service-detail-head h2 {
    color: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.industries-grid div {
    border: 1px solid rgba(220, 228, 242, 0.25);
    border-radius: 10px;
    padding: clamp(12px, 3vw, 20px);
    color: #e1e8f5;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: clamp(12px, 2.5vw, 14px);
}

.industries-grid i {
    width: 20px;
    height: 20px;
    color: #f4ad17;
}

.pricing-section {
    padding: clamp(60px, 10vw, 90px) clamp(16px, 5vw, 8%);
    background: #f3f4f6;
}

.pricing-head {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px);
}

.pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid #d8dde5;
    border-radius: 12px;
    padding: 26px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card h3 {
    margin-bottom: 8px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    color: #0f1f38;
}

.pricing-card .price {
    font-size: 30px;
    font-weight: 700;
    color: #111f39;
    margin-bottom: 6px;
}

.pricing-card .price-note {
    color: #5d7084;
    margin-bottom: 14px;
    min-height: 48px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.pricing-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: #3f5063;
    font-size: 14px;
}

.pricing-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e89b00;
    position: absolute;
    left: 0;
    top: 9px;
}

.pricing-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    background: #111f39;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
}

.pricing-card.featured {
    border: 2px solid #f4ad17;
    box-shadow: 0 12px 30px rgba(17, 31, 57, 0.12);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 18px;
    background: #f4ad17;
    color: #111f39;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #f4ad17;
    box-shadow: 0 16px 34px rgba(17, 31, 57, 0.14);
}

.pricing-card:hover a {
    background: #f4ad17;
    color: #111f39;
}

.service-cta {
    padding: 86px 0;
    background: #f4ad17;
}

.service-cta-inner {
    text-align: center;
}

.service-cta h2 {
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 5vw, 64px);
    text-transform: none;
    letter-spacing: 0;
    color: #111f39;
}

.service-cta p {
    max-width: 640px;
    margin: 0 auto 26px;
    color: #1a2841;
    font-size: clamp(14px, 3.5vw, 18px);
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .services-page-hero p {
        font-size: 12px;
        color: #d9e0ef;
        margin-left: 0px;
    }
    .services-page-hero {
        padding: 120px 0 80px;
    }
    .services-page-hero h1 {
        font-size: clamp(32px, 5vw, 48px);
        padding: 0 20px;
    }
    .section-eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
        padding: 40px 0 12px;
    }
    .section-eyebrow1{
        font-size: 12px;
        letter-spacing: 4px;
        padding: 0;
        color: #f4ad17;
    }

}

@media (max-width: 768px) {
    .services-page-hero,
    .service-detail-section,
    .process-section,
    .industries-section,
    .service-cta {
        padding: 72px 0;
    }

    .service-detail-grid,
    .process-grid,
    .industries-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
     .services-page-hero p {
        font-size: 12px;
        color: #d9e0ef;
        margin-left: 0px;
    }
}

/* --- Projects Page Styles --- */
.projects-section {
    padding: 100px 8%;
    background: var(--white);
}

.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e6e9ee;
    background: #fff;
    color: #334155;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.filter-btn:hover { transform: translateY(-2px); }

.filter-btn.active {
    background: var(--accent);
    color: #111f39;
    border-color: var(--accent);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16,24,40,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-meta {
    padding: 18px 16px;
}

.project-meta h3 {
    margin: 0 0 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

.project-meta p { color: #6b7280; font-size: 0.95rem; margin: 0; }

.project-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(16,24,40,0.12); }

/* Project detail view */
#project-detail { padding: 60px 8%; background: #f9fafb; }

#project-detail .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.detail-image img { width: 100%; height: auto; border-radius: 10px; display: block; }

.detail-info { padding: 6px 0; }

.detail-info h2 { 
    margin-top: 0; 
    font-size: clamp(20px, 4vw, 32px);
}

.project-specs { list-style: none; padding: 0; margin-top: 14px; }
.project-specs li { margin-bottom: 8px; color: #475569; font-size: clamp(13px, 2.5vw, 15px); }

#back-to-list { margin-bottom: 18px; }

/* Compact contact block used on projects page */
.contact-compact { 
    padding: 60px 8%; 
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%); 
    text-align: center; 
}
.contact-compact-inner { 
    max-width: 900px; 
    margin: 0 auto;
     
}
.contact-compact h2 { 
    margin-bottom: 12px; 
    font-family: "Playfair Display", Georgia, serif; 
    font-size: clamp(26px, 5vw, 64px); 
    text-transform: none; 
    letter-spacing: 0; 
    color: #111f39; 
}
.contact-compact p { 
    max-width: 640px; 
    margin: 0 auto 26px; 
    color: #1a2841; 
    font-size: clamp(14px, 3.5vw, 18px);}



@media (max-width: 992px) {
    #project-detail .detail-grid { grid-template-columns: 1fr; }
    .project-card img { height: 200px; }
}

@media (max-width: 576px) {
    .project-card img { height: 160px; }
    .projects-section { padding: 48px 6%; }
    .filter-btn { padding: 8px 10px; }
}

/* --- Transitions & Animations --- */
.project-card { will-change: transform, box-shadow; }
.project-card img { transition: transform 0.6s cubic-bezier(.2,.9,.2,1), filter 0.35s ease, opacity 0.35s ease; }
.project-card:hover img { transform: scale(1.04); }

.project-meta { transition: transform 0.35s ease, opacity 0.35s ease; }
.project-card:hover .project-meta { transform: translateY(-4px); }

/* Smooth reveal for project detail using the [hidden] attribute */
#project-detail { opacity: 0; transform: translateY(8px); transition: opacity 0.45s ease, transform 0.45s ease; }
#project-detail:not([hidden]) { opacity: 1; transform: translateY(0); }

.detail-image img { transition: transform 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.45s ease; }
.detail-image img:hover { transform: scale(1.02); }

.detail-info { opacity: 0; transform: translateY(6px); transition: opacity 0.45s ease, transform 0.45s ease; }
#project-detail:not([hidden]) .detail-info { opacity: 1; transform: translateY(0); }

.contact-compact-inner { transition: transform 0.45s ease, box-shadow 0.35s ease; }
.contact-compact-inner:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,24,40,0.06); }

/* subtle fade for project list when detail opens */
.projects-section { transition: opacity 0.42s ease, transform 0.42s ease; }
.projects-section[hidden] { opacity: 0.18; transform: scale(0.997); pointer-events: none; }

/* --- Testimonials responsive tweaks --- */
.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

@media (max-width: 992px) {
    .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap:20px; }
    .testimonial-card { padding: 22px; }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; gap:18px; }
    .testimonial-card { padding: 18px; }
    .testimonial-card .quote { font-size: 1rem; }
    .testimonial-card h4 { font-size: 1rem; }
    .hero h1 { font-size: clamp(22px, 6vw, 36px); }
    /* Make testimonial form stack on small screens */
    #testimonial-form > div { flex-direction: column; }
    #testimonial-form > div input, #testimonial-form textarea, #testimonial-form select { width: 100%; }
}

@media (max-width: 480px) {
    .testimonial-card .quote { font-size: 0.95rem; }
    .testimonial-form { padding: 0 6px; }
}
