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

:root {
    --primary-blue: #1a73e8;
    --dark-blue: #150463;
    --light-blue: #5a9cf8;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
     overflow-x: hidden;
}

.container {
    /* max-width: 90vw;
    margin: 0 auto;
    padding: 0 20px; */
    /* width: 92%; 
    max-width: 1280px; 
    margin: 0 auto;
    padding: 0 15px; */
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2px 0;
    font-size: 16px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar p {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
     font-style: italic;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
     font-style: italic;
}

.top-bar a:hover {
    text-decoration: underline;
}

.aog-request {
    /* background: rgba(255, 255, 255, 0.2); */
    padding: 5px 15px;
    /* border-radius: 4px; */
    /* transition: background 0.3s; */
}

/* .aog-request:hover {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none !important;
} */

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    /* z-index: 1000; */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 20px;
    color: var(--dark-blue);
    font-weight: 600;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 3px 0;
    transition: 0.3s;
}
/* =========================================
   MEDIA QUERIES (The Logic for your Images)
   ========================================= */

/* 1. Large Screens (Desktops 1200px+) - Image Left */
@media screen and (min-width: 1025px) {
    .nav-links {
        gap: 45px; /* Wide spacing for large screens */
    }
}

/* 2. Tablet Screens (iPad/Tablets ~800px) - Image Right */
/* We KEEP the menu visible here, just tighten the spacing */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 95%; /* Use more screen real estate on tablet */
    }
    
    .nav-links {
        gap: 25px; /* Reduced gap so links don't break to next line */
    }
    
    .logo h1 {
        font-size: 22px; /* Slightly smaller logo for tablet balance */
    }
}

/* 3. Mobile Screens (Phones < 768px) */
/* Only here do we switch to the Hamburger menu */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex; /* Show hamburger */
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 25px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        
        /* Hide menu functionality */
        display: none; 
    }

    .nav-links.active {
        display: flex; /* Show when JS adds 'active' class */
    }
    
    .top-bar {
        font-size: 12px; /* Smaller text for top bar on phone */
    }
}

/* --- Hero Section --- */
.hero {
    /* Requirement: Simple Background Color, No Gradient */
    background-color: var(--dark-blue);
    position: relative;
    width: 100%;
    /* 1. Increased Height (was 90vh) to match the image's vertical space */
    min-height: 700px; /* Use a fixed pixel height for better control */
    /* Alternatively, keep 100vh if you want it to fill the entire screen */
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding-top: 0; 
    padding-bottom: 0;
    overflow: hidden;
}



/* Update the .hero-content to vertically align items */
.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center; /* This is key for vertical centering within the row */
    flex-grow: 1;
    /* Removed: background-color: palegoldenrod; */
    /* Added: Added vertical padding inside the content wrapper */
    padding-top: 150px; 
    padding-bottom: 150px;
}

/* Update the .hero-text section for alignment and width */
.hero-text {
    color: var(--white);
    max-width: 50%; 
    padding-left: 0;
    /* Removed: background-color: yellow; */
}

.hero-text h2 {
    font-size: 30px; /* Increased font size for prominence */
    line-height: 1.2;
    margin-bottom: 20px; /* Increased margin */
    font-weight: 600;
    /* Removed: background-color: red; */
}

.hero-text p {
    font-size: 20px; /* Increased font size */
    color: rgba(158, 153, 153, 0.9);
    margin-bottom: 40px; /* Increased margin */
    line-height: 1.5;
}

/* Image Wrapper Adjustment */
.hero-image-wrapper {
    /* Ensure the image wrapper takes up the remaining space */
    width: 50%;
    display: flex;
    justify-content: flex-end; 
    border-radius: 8px;
    /* Add any specific styling for the image itself here, e.g., max-width */
}

/* --- Buttons --- */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: scale(0.98);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    transform: scale(0.98);
}

/* --- The Marquee / Bottom Blue Strip --- */
.hero-marquee {
    width: 100%;
    background-color: var(--dark-blue); 
    color: var(--white);
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20; 
    margin-top: auto; /* Space between text/image and bottom bar */
    overflow: hidden; /* Crucial: Hides the duplicated content until it scrolls into view */
    white-space: nowrap; /* Prevents the text from wrapping */
}

.marquee-content {
    display: inline-block; /* Allows content to exceed the parent width */
    animation: marquee 30s linear infinite; 
    animation-play-state: running;
}

/* Ensure the duplicated text is inline */
.marquee-content p {
  display: inline-block; /* CRUCIAL: Use inline-block so padding/margin works reliably */
    padding-right: 100px; /* INCREASED GAP for clear separation */
    margin: 0; /* Remove default margin that might interfere */
    white-space: nowrap;
}

/* Keyframes define the animation path */
@keyframes marquee {
    0% {
        /* Start position: 0% of the content width off the right edge */
        transform: translateX(100%);
    }
    100% {
        /* End position: Move left by 100% of the content width */
        transform: translateX(-100%);
    }
}

/* =========================================
   MEDIA QUERIES
   ========================================= */

/* --- LARGE SCREENS (1280px) --- */
@media screen and (min-width: 1025px) {
    .hero-image-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 55%; /* Width of image area */
        height: 100%;
        /* CRITICAL: Low Z-Index ensures it stays BEHIND text and marquee */
        z-index: 1; 
    }

    .parallax-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image fills the area */
        object-position: center;
        will-change: transform;
    }
}

/* --- TABLET & SMALL SCREENS (1024px and below) --- */
@media screen and (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Reset Image to stack normally */
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1;
        margin-bottom: 0; /* Touches the marquee */
    }

    .parallax-img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }
    
    /* Ensure Marquee is visible */
    .hero-marquee {
        margin-top: 0;
        position: relative;
        z-index: 20;
    }
}


/* About Section */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

.about-section .container {
    max-width: 1400px;
    padding: 0 40px;
}

.about-content {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-content h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content .highlight {
    color: var(--primary-blue);
    font-style: italic;
}

.about-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    width: 100vw;             /* FULL SCREEN WIDTH */
    height: 100vh;            /* FULL SCREEN HEIGHT */
    margin: 40px auto 0;      /* spacing above image */
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* image covers full area */
}

.about-image.shrunk {
    width: 90vw;              /* shrink to 90% of screen width */
    height: 90vh;             /* slight height shrink too */
}



/* Why Choose Section */
.why-choose-section {
    /* background: var(--light-gray); */
    /* background-color: pink; */
    /* padding: 80px 0; */
}

.why-choose-intro {
    max-width: 1200px;
    /* margin: 0 auto 60px; */
}

.why-choose-intro p {
    font-size: 23px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    padding-left: 0;
    /* background-color: red; */
}

.features-list li {
    font-size: 20px;
    color: #333;
    line-height: 2;
    padding-left: 25px;
    position: relative;
    /* background-color: yellow; */
}

.features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 24px;
}

.closing-text {
    margin-top: 30px;
    font-size : 5px;
    /* background-color: hotpink; */
    width: 1400px;
}

.section-title {
    text-align: center;
    font-size: 35px;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 60px;
}

.reasons-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; */
    display: flex;
    flex-direction: column;
    gap: 50px; /* big gap like screenshot */
    max-width: 1200px;
    margin: 0 0;
}

.reason-card {
    background: var(--white);
    padding: 0;
}

.reason-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}

.reason-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Expertise Section */

/* Section Styling */
.expertise-section {
    background: #ffffff; /* var(--white) */
    padding: 80px 0;
    font-family: sans-serif; /* Ensure you have a clean font loaded */
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling */
.expertise-title {
    text-align: center;
    font-size: 42px;
    color: #000;
    font-weight: 700;
    margin-bottom: 80px; /* Increased margin to match picture */
}

.expertise-title .highlight {
    color: #0066FF; /* var(--primary-blue) - Adjusted to match image blue */
}

/* Grid System */
.expertise-row {
    display: grid;
    gap: 40px; /* Gap between columns */
}

/* Top Row: 3 Columns */
.top-row {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px; /* Space between the two rows */
}

/* Bottom Row: 2 Columns */
.bottom-row {
    grid-template-columns: repeat(2, 1fr);
}

/* Card Styling */
.expertise-card {
    position: relative;
    padding-top: 25px; /* Space between line and text */
}

/* Lines */
.card-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* This ensures line spans full width of the column */
    height: 2px; /* Thinner line as requested */
}

.blue-line {
    background-color: #0066FF; /* var(--primary-blue) */
}

.dark-line {
    background-color: #000000;
}

/* Typography */
.expertise-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.expertise-card p {
    font-size: 15px;
    color: #555; /* Slightly darker grey for readability */
    line-height: 1.6;
    margin: 0;
}

/* Responsive: Stack everything on mobile */
@media (max-width: 768px) {
    .top-row, .bottom-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/* Footer */
.footer-section {
    background: #14006E;           /* deep royal blue like screenshot */
    padding: 20px 0;
    width: 100%;
}

.footer-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-right img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}




@media (max-width: 768px) {
    .expertise-section {
        padding: 60px 0;
    }

    .expertise-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expertise-card h3 {
        font-size: 20px;
    }

    .expertise-card p {
        font-size: 15px;
    }
}




/* Responsive for Why Choose Section */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-intro p,
    .features-list li,
    .reason-card p {
        font-size: 16px;
    }

    .reason-card h3 {
        font-size: 22px;
    }
}

/* Responsive for Expertise Section */
@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .btn {
        text-align: center;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 80px 0 100px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.form-left h2 {
    font-size: 35px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.form-left p {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
}

.form-right {
    background: var(--white);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.progress-step {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s;
}

.progress-step.active {
    background: #000;
}

.step-indicator {
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Form Container */
.form-container {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    min-height: 380px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Radio Options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.radio-option:hover {
    border-color: #ccc;
    background: #f9f9f9;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s;
    /* flex-shrink: 0; */
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: #000;
    background: #000;
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    display: block;
    color: #000;
    font-size: 16px;
    margin-bottom: 2px;
}

.radio-content small {
    color: #666;
    font-size: 14px;
}

/* Form Fields */
.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-field textarea {
    resize: vertical;
}

/* Part Details */
.form-step.scrollable {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.form-step.scrollable::-webkit-scrollbar {
    width: 8px;
}

.form-step.scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-step.scrollable::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.form-step.scrollable::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.part-group {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.part-group h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-add-part {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.btn-add-part:hover {
    background: #000;
    color: #fff;
}

/* Delivery Options */
.delivery-options {
    margin-bottom: 30px;
}

.delivery-options h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.toggle-buttons {
    display: flex;
    gap: 15px;
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #000;
    color: #fff;
}

.toggle-btn:hover:not(.active) {
    background: #f0f0f0;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-back,
.btn-continue,
.btn-submit {
    flex: 1;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #000;
}

.btn-back {
    background: transparent;
    color: #000;
}

.btn-back:hover {
    background: #000;   /* black background */
    color: #fff;        /* white text */
    border-color: #000; /* match border */
}

.btn-continue,
.btn-submit {
    background: #b8c5d6;
    color: #666;
    border-color: #b8c5d6;
    cursor: not-allowed;
}

.btn-continue:not(:disabled),
.btn-submit:not(:disabled) {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
    cursor: pointer;
}

.btn-continue:not(:disabled):hover,
.btn-submit:not(:disabled):hover {
    background: #000;
}

.form-step[data-step="1"] .btn-continue {
    width: 90%;
    display: block;
    margin-top: 30px;
    margin-left: 25px;
}


.form-step[data-step="1"] {
    max-height: 450px;   /* same as container */
    overflow-y: auto;
    padding-right: 10px;
}


.form-step[data-step="1"]::-webkit-scrollbar {
    width: 6px;
}
.form-step[data-step="1"]::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}



/* Contact Info Footer */
.contact-info-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.info-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-value {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.footer-icon img {
    width: 28px;
    height: 28px;
    filter: invert(1); /* if footer is dark background */
    transition: 0.3s ease;
}

.footer-icon img:hover {
    transform: scale(1.15);
}


/* Responsive */
@media (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 25px;
    }

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

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .toggle-buttons {
        flex-direction: column;
    }

    .form-left h2 {
        font-size: 32px;
    }
}

.contact-us-section {
    padding: 60px 0;
}

.contact-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.5fr;  /* left small, right large */
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-size: 32px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-left p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

/* Map styling */
.contact-map {
    width: 100%;
    height: 450px;           /* Your required height */
    border-radius: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 40vh;
    }
}
