﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #0f172a; /* Navy */
    --accent: #d97706; /* Gold/Orange */
    --light: #f8fafc;
    --dark: #1e293b;
    --text: #334155;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-primary:hover {
        background: #b45309;
    }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 10px;
    }

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
}

.white-divider {
    background: var(--white);
}

/* Header & Nav */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .nav-links a {
        color: var(--primary);
        font-weight: 500;
        font-size: 1rem;
    }

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 5px;
    margin-right: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--primary);
    border-radius: 4px;
    transition: 0.3s;
}

    .lang-btn:hover {
        background: #e2e8f0;
    }

    .lang-btn.active {
        background: var(--primary);
        color: var(--white);
    }

body.hindi-font * {
    font-family: 'Tiro Devanagari Hindi', 'Poppins', sans-serif;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    background: rgba(15, 23, 42, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* About Grid */
.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-list {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

    .feature-list li {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

    .service-card:hover {
        transform: translateY(-5px);
        border-bottom: 4px solid var(--accent);
    }

    .service-card .icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        color: var(--primary);
        margin-bottom: 10px;
    }

/* GALLERY STYLES */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* TESTIMONIALS STYLES */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent);
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
}

.client-area {
    font-size: 0.85rem;
    color: #888;
}

/* Area Section (SEO) */
#areas h2 {
    color: var(--white);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .area-box h3 {
        color: var(--accent);
        margin-bottom: 15px;
    }

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #cbd5e1;
        border-radius: 5px;
        outline: none;
    }

.full-width {
    width: 100%;
}

/* POPUP MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.5s;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

    .close-btn:hover {
        color: #000;
    }

.modal h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.modal p {
    margin-bottom: 20px;
    color: #555;
}

.popup-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* Footer & Float Button */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: 0.3s;
}

    .float-wa:hover {
        transform: scale(1.1);
    }

    .float-wa img {
        width: 35px;
        height: 35px;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

        .nav-links.active {
            right: 0;
        }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-secondary {
        color: var(--white);
        border-color: var(--white);
    }

    .nav-container {
        position: relative;
    }

    .lang-switch {
        position: absolute;
        right: 60px;
        top: 20px;
        margin-right: 0;
    }
} 
