/* --- Google Fonts & Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary-blue: #132f4c;
    --primary-red: #e53935;
    --darker-red: #c62828;
    --light-gray: #f4f4f4;
    --text-color: #333;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* --- Hero Section Styling --- */
.hero-section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),  url(assets/background-image/building-space.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* --- Left Column: Content --- */
.hero-left {
    flex: 1;
    color: white;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* ============================================== */
/* === NEW STYLES for Animation & Highlighting === */
/* ============================================== */

/* 1. Define the entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Apply animation to the H1 */
.hero-left h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;

}




.highlight-text {

    background: linear-gradient(45deg, #FF8C42, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}


/* 4. (Optional but recommended) Add staggered animations to other elements */
.hero-left p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.sensor-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
}

.sensor-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sensor-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sensor-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.sensor-btn i {
    font-size: 1rem;
}

/* --- Right Column: Form --- */
.hero-right {
    flex: 0 0 420px;
}

.quote-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(19, 47, 76, 0.1);
}

.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

.security-check {
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-check label {
    font-weight: 500;
    white-space: nowrap;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: var(--darker-red);
    transform: scale(1.02);
}


/* --- Responsive Media Queries --- */

/* For Tablets */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-right {
        width: 100%;
        max-width: 500px;
        flex-basis: auto;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .sensor-buttons {
        justify-content: center;
    }
}

/* For Mobile Phones */
@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .quote-form {
        padding: 25px;
    }

    .security-check {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================== */
/* =========== About Us Section Styles ========== */
/* ============================================== */

.about-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

/* Creates an animated underline for the section title */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Column: Text Content --- */
.about-left {
    flex: 1.2;
    /* Give the left column slightly more space */
}

.about-left h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-left p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.about-left ul {
    list-style: none;
    margin-bottom: 25px;
}

.about-left ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.about-left ul li i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.certification-box {
    background-color: #eef5ff;
    /* A light blue background */
    border-left: 5px solid var(--primary-blue);
    padding: 20px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--primary-blue);
}

.certification-box strong {
    font-weight: 600;
}


/* --- Right Column: Stats Cards --- */
.about-right {
    flex: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.blue-bg {
    background-color: #3b82f6;
}

.green-bg {
    background-color: #22c55e;
}

.purple-bg {
    background-color: #8b5cf6;
}

.orange-bg {
    background-color: #f97316;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 1rem;
    color: #666;
}


/* --- CSS for Scroll Animations --- */
.about-left,
.about-right {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-left.visible,
.about-right.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- Media Queries for About Section --- */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.2rem;
    }

    .about-left h3 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack cards on very small screens */
        
        

    }
}




/* ======================================================= */
/* ========= "Why Choose Us" Section (Grid Style) ======== */
/* ======================================================= */

.why-choose-us-grid-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    /* Light gray background */
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile First: 1 column */
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* For Animation */
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin: 0 auto 20px auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Use your existing brand colors */
.primary-red-bg {
    background-color: var(--primary-red);
}

.primary-blue-bg {
    background-color: var(--primary-blue);
}


.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* --- Responsive Grid --- */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on desktops */
    }
}

/* ======================================================= */
/* ========= "Our Brands & Associations" Section ========= */
/* ======================================================= */

.brands-section {
    padding: 80px 0;
    /* No horizontal padding */
    background-color: white;

    /* For Animation */
    opacity: 0;
    transform: translateY(30px);
}

.brands-section.visible {
    opacity: 1;
    transform: translateY(2);
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;/
}

/* --- Logo Scroller Styles --- */
.logo-scroller {
    margin-top: 50px;
    overflow: hidden;
    /* This is crucial for the effect */
    /* Creates a fade-out effect on the edges */
    /* -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent); */
}

.logo-track {
    display: flex;
    gap: 60px;
    /* Space between logos */
    margin-bottom: 30px;
    /* Space between rows */
    width: fit-content;
    /* Let the track be as wide as its content */
    will-change: transform;
    /* Performance optimization */
}

.logo-track img {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
    max-width: 200px;
    object-fit: contain;
    /* Make logos grayscale initially */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-track:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- The Scrolling Animation --- */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* Move by half the track width */
}

@keyframes scroll-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Apply animations to the tracks */
.track-1,
.track-3 {
    animation: scroll 40s linear infinite;
}

.track-2 {
    animation: scroll-reverse 40s linear infinite;
    /* Middle row scrolls the other way */
}

/* Pause animation on hover for better interaction */
.logo-scroller:hover .logo-track {
    animation-play-state: paused;
}


.testimonials-section {
    padding: 80px 20px;
    background-color: white;
    /* Changed to white for a cleaner look */
    font-family: 'Poppins', sans-serif;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Re-using your existing .section-title class for consistency */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    /* Space between cards */
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    /* Two cards at a time, accounting for gap */
    min-width: calc(50% - 15px);
    background-color: #f9fafb;
    /* Light background for the card */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Ensures cards have the same height */
}

.client-details {
    margin-top: auto;
    /* Pushes details to the bottom */
    border-left: 3px solid var(--primary-red);
    padding-left: 15px;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.client-title {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* --- Carousel Navigation --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-btn:hover:not(:disabled) {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

/* --- Carousel Dots --- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        /* Show one card at a time on mobile */
        flex: 0 0 100%;
        min-width: 100%;
    }

    .carousel-btn {
        top: auto;
        bottom: -70px;
        /* Position buttons below the cards */
        transform: translateY(0);
    }

    .prev-btn {
        left: 35%;
        transform: translateX(-50%);
    }

    .next-btn {
        right: 35%;
        transform: translateX(50%);
    }

    .testimonials-section {
        padding-bottom: 120px;
        /* Add space for the repositioned buttons */
    }
}

.gallery-section {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Re-using your existing .section-title class for consistency */
.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px auto;
    /* Increased bottom margin */
}

.client-gallery-grid {
    display: grid;
    /* Responsive grid columns */
    grid-template-columns: repeat(2, 1fr);
    /* Mobile First: 2 columns */
    gap: 25px;
}


.gallery-section {
    padding: 60px 20px; /* Reduced padding for mobile */
    background-color: var(--light-gray);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- Section Titles (with mobile responsiveness) --- */
.section-title {
    font-size: 2rem; /* Optimized for 320px screens */
    font-weight: 600; /* Bolder for better visibility */
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Smaller underline for smaller title */
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem; /* Optimized for mobile */
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto; /* Adjusted margin */
}

/* --- Client Gallery Grid (Mobile First for 320px) --- */
.client-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for the smallest screens */
    gap: 15px; /* Tighter gap for small screens */
}

.gallery-item {
    background-color: white;
    padding: 15px; /* Reduced padding for smaller boxes */
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Initial state for animation */
    transform: translateY(30px);
}

.gallery-item img {
    max-width: 100%;
    height: 40px; /* Optimized image height for 320px */
    object-fit: contain;
}

/* ============================================== */
/* ========== ANIMATION AND DELAYS ============== */
/* ============================================== */

/* This class is added by JavaScript to trigger the animation */
.gallery-item.is-visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered animation delays */
.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.1s; }
.gallery-item:nth-child(7) { animation-delay: 0.2s; }
.gallery-item:nth-child(8) { animation-delay: 0.3s; }
.gallery-item:nth-child(9) { animation-delay: 0.4s; }
.gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-item:nth-child(11) { animation-delay: 0.1s; }
.gallery-item:nth-child(12) { animation-delay: 0.2s; }
.gallery-item:nth-child(13) { animation-delay: 0.3s; }
.gallery-item:nth-child(14) { animation-delay: 0.4s; }
.gallery-item:nth-child(15) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

/* ============================================== */
/* =========== RESPONSIVE MEDIA QUERIES ========= */
/* ============================================== */

/* --- Larger Phones (375px and up) --- */
@media (min-width: 375px) {
    .client-gallery-grid {
        gap: 20px; /* Slightly larger gap */
    }
    .gallery-item img {
        height: 45px; /* Slightly larger images */
    }
}

/* --- Small tablets (576px and up) --- */
@media (min-width: 576px) {
    .client-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Tablets (768px and up) --- */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.8rem; /* Restore desktop font size */
    }
    .client-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-item img {
        height: 50px; /* Restore original image height */
    }
}

/* --- Desktops (992px and up) --- */
@media (min-width: 992px) {
    .client-gallery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}



.contact-footer {
    background-color: black;
    /* Changed from blue to black */
    color: white;
    padding: 80px 20px 60px 20px;
    /* Adjusted top padding */
    position: relative;
}

/* --- The Curved Wave Separator --- */
/* DELETED the .footer-wave styles */

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    /* To stay above the wave */
    z-index: 2;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    align-items: center;
}

/* --- Left Column: Contact Info --- */
.footer-left .logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Makes a dark logo white */
}

.footer-left h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer-left h2 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-top: 5px;
}

.footer-phone {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-phone:hover {
    color: var(--footer-gold);
    transform: scale(1.02);
}

/* --- Right Column: Callback Form --- */
.callback-form {
    background-color: white;
    /* Changed from gold to white */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.callback-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(19, 47, 76, 0.2);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-red);
    /* Changed from blue to red */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    background-color: var(--darker-red);
    /* Changed to darker red on hover */
    transform: translateY(-2px);
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.5rem;
    }

    .footer-phone {
        font-size: 1.8rem;
    }

    .callback-form {
        padding: 30px;
    }
}




        


