/* Color Palette based on Air Works Logo */
:root {
    --primary-blue: #003194;      /* Logo Main Royal Blue */
    --accent-blue: #0d6efd;       /* Bright Blue Accent */
    --text-grey: #6c757d;         /* Logo Grey Accent */
    --dark-blue: #001f60;         /* Deep Navy Blue for Footer/Hero */
    --light-bg: #f4f7fb;          /* Soft Light Blue-Grey Background */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #2b2b2b;
    line-height: 1.6;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0 !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px; /* Header chi height fixed theवली आहे */
}
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Call Button (Royal Blue) */
.btn-call {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-call:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

/* WhatsApp Button (Official Green) */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 110px; /* Tumhala havi tevdhi logo chi height vadhava (e.g., 100px, 110px, 120px) */
    width: auto;
    transform: scale(1.3); /* Logo header chya baher aani var/khali neat zoom hoiil */
    transform-origin: left center; /* Logo left side pasun scale hoil */
    transition: transform 0.3s ease;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-grey);
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(90, 110, 150, 0.4), rgba(82, 95, 121, 0.5)), url('background-img.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0;
    min-height: calc(100vh - 80px); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 !important;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-call:hover {
    background-color: #1eb954;
}

.badge {
    background-color: #ff9900;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95rem;
}

/* About Us Section */
.about {
    padding: 70px 0;
    background-color: var(--white);
}
/* About Us Styling */
.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.section-subtitle {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.about-content .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-content h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-highlights {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about-highlights li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.about-highlights li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #25D366; /* Green Checkmark */
    font-weight: bold;
    font-size: 1.1rem;
}

.about-quote {
    background-color: #ffffff;
    border-left: 5px solid var(--primary-blue);
    padding: 15px 20px;
    font-style: italic;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top: 20px;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.section-title-left {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 70px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}

/* AMC Section */
.amc {
    padding: 70px 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-grey);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.amc-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.amc-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--light-bg);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.amc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 49, 148, 0.12);
}

.amc-card.featured {
    border-color: var(--primary-blue);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 49, 148, 0.15);
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.amc-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.amc-features {
    list-style: none;
    margin-bottom: 25px;
}

.amc-features li {
    margin-bottom: 12px;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amc-features i {
    color: var(--primary-blue);
}

.amc-features i.disable {
    color: #cbd5e1;
}

.amc-btn {
    display: block;
    text-align: center;
    background-color: var(--text-grey);
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.amc-btn.btn-highlight {
    background-color: var(--primary-blue);
}

.amc-btn:hover {
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 70px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sub-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--primary-blue);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #000;
}

/* Contact Section */
.contact {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.phone-box {
    margin: 20px 0;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-box a {
    color: white;
    text-decoration: none;
}

.address-box {
    display: flex;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.5;
    align-items: flex-start;
}

.address-box i {
    font-size: 1.8rem;
    margin-top: 3px;
}

.btn-map {
    display: inline-block;
    margin-top: 15px;
    background-color: #ffffff;
    color: var(--primary-blue);
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.btn-map:hover {
    background-color: #f0f4ff;
    transform: translateY(-2px);
}

.flyer-img {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.flyer-img img {
    max-width: 100%;
    max-height: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Media Queries (Mobile & Tablet) */
@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        max-height: 350px;
    }

    nav ul li {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .about-container, .contact-container {
        flex-direction: column;
    }
}