/* General resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Main container */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Combined Box for Header and Hero Section */
.header-hero-box {
    width: 100%;
    background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%); 
    color: #fff; 
    padding: 0; 
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 100px;
}

.active {
    color: #c8a971 !important;
    font-weight: bold;
}

/* Logo styling */
.logo img {
    width: 250px;
    height: auto;
}

/* Navigation styling */
.navbar {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: #1a4f8e;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.menu li a:hover {
    color: #c8a971;
    background-color: rgba(200, 169, 113, 0.1);
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #1a4f8e;
}

/* Hero section */
*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .hero {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            min-height: 80vh;
            padding: 40px 5%;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(26, 79, 142, 0.8), rgba(200, 169, 113, 0.6));
            z-index: 1;
        }

        .content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out;
        }

        .txt-right {
            flex: 1;
            padding-right: 40px;
            text-align: left;
            order: 1; /* Default order for desktop */
        }

        .imgtop {
            flex: 1;
            height: 750px;
            background-image: url('Img/CareNest\ Flier.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            order: 2; /* Default order for desktop */
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .txt-right p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fff;
            max-width: 500px;
        }

        .cta-button {
            padding: 15px 30px;
            background-color: #c8a971;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(200, 169, 113, 0.4);
        }

        .cta-button:hover {
            background-color: #b5975a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(200, 169, 113, 0.6);
        }

        /* Responsive design for tablets */
        @media (max-width: 992px) {
            .content {
                flex-direction: column;
                text-align: center;
            }
            
            .txt-right {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
                order: 1; /* Ensure text comes first */
            }
            
            .imgtop {
                width: 100%;
                height: 350px;
                order: 2; /* Ensure image comes after text */
            }
            
            h1 {
                font-size: 36px;
            }
        }

        /* Responsive design for mobile devices */
        @media (max-width: 768px) {
            .hero {
                padding: 30px 20px;
                min-height: auto;
            }
            
            .content {
                flex-direction: column;
            }
            
            .txt-right {
                order: 1; /* Text first on mobile */
                margin-bottom: 30px;
                width: 100%;
            }
            
            .imgtop {
                order: 2; /* Image after text on mobile */
                height: 300px;
                width: 100%;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .txt-right p {
                font-size: 16px;
            }
            
            .cta-button {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .imgtop {
                height: 250px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            .cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Services Section */
        .services-section {
            padding: 80px 10%;
            background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
            text-align: center;
        }

        .services-header {
            margin-bottom: 60px;
        }

        .services-header h2 {
            font-size: 36px;
            color: #1a4f8e;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .services-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1a4f8e, #c8a971);
            border-radius: 2px;
        }

        .services-header p {
            color: #4a5568;
            font-size: 18px;
            max-width: 800px;
            margin: 30px auto 0;
            line-height: 1.6;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-category {
            margin-bottom: 50px;
        }

        .service-category h3 {
            font-size: 24px;
            color: #1a4f8e;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(26, 79, 142, 0.1);
            position: relative;
            display: inline-block;
        }

        .service-category h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #c8a971;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a4f8e, #3a7bd5, #c8a971);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
            color: white;
            font-size: 28px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover .icon-container {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(26, 79, 142, 0.3);
        }

        .service-card h4 {
            font-size: 20px;
            color: #1a4f8e;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .service-card:hover h4 {
            color: #3a7bd5;
        }

        .service-card p {
            color: #4a5568;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        .approach-section {
            background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
            color: white;
            text-align: left;
            box-shadow: 0 15px 35px rgba(26, 79, 142, 0.2);
        }

        .approach-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
            position: relative;
            display: inline-block;
        }

        .approach-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #c8a971;
            border-radius: 2px;
        }

        .approach-section p {
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .services-section {
                padding: 60px 5%;
            }
        }

        @media (max-width: 768px) {
            .services-header h2 {
                font-size: 30px;
            }
            
            .services-header p {
                font-size: 16px;
            }
            
            .service-cards {
                grid-template-columns: 1fr;
            }
            
            .approach-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 480px) {
            .services-header h2 {
                font-size: 28px;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .icon-container {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }

/* About Us section */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background-color: #ffffff;
    color: #333;
}

.about-content {
    flex: 1;
    padding-right: 40px;
}

.about-content h2 {
    font-size: 36px;
    color: #c8a971;
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #3a7bd5;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Mobile View - Stack content vertically */
@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 50px 5%;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image {
        order: 2;
    }
}

/* Stats section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #3a7bd5 0%, #1a4f8e 100%);
    padding: 60px 10%;
    border-radius: 0;
    opacity: 1;
    color: white;
}

/* Individual stat item */
.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: calc(var(--item-index) * 0.2s);
}

/* Stat number styling */
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #c8a971;
    margin-bottom: 10px;
}

/* Stat label styling */
.stat-label {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

/* Add responsiveness */
@media (max-width: 768px) {
    .stats-section {
        flex-direction: column;
        padding: 40px 5%;
    }

    .stat-item {
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 80px 10%;
    text-align: center;
    background-color: #f8f9fa; 
}

.why-us-section h2 {
    font-size: 36px;
    color: #1a4f8e; 
    margin-bottom: 60px;
    position: relative;
}

.why-us-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a971;
}

/* Container for image and text */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Image container */
.image-container {
    flex: 1;
    margin-right: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Text container */
.text-container {
    flex: 1;
    text-align: left;
}

/* Individual text items */
.text-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fas.fa-check-circle {
    font-size: 24px;
    color: #c8a971;
    margin-right: 15px;
    flex-shrink: 0;
}

.text-content h3 {
    font-size: 18px;
    color: #1a4f8e;
    margin: 0 0 10px 0;
}

.text-content p {
    color: #4a5568;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

/* Media queries for responsiveness */
@media (max-width: 968px) {
    .content-container {
        flex-direction: column;
    }

    .image-container {
        margin-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .text-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 60px 5%;
    }
    
    .text-item {
        flex-direction: column;
        text-align: center;
    }
    
    .fas.fa-check-circle {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 10%;
    background-color: #f0f7ff;
    text-align: center;
}

.reviews-section h2 {
    font-size: 36px;
    color: #1a4f8e;
    margin-bottom: 60px;
    position: relative;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a971;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card h4 {
    color: #1a4f8e;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    color: #1a4f8e;
    margin-bottom: 60px;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a971;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3a7bd5;
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 15px 30px;
    background-color: #3a7bd5;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1a4f8e;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 430px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 430px;
    border: none;
}

/* Contact Info Section */
        .contact-section {
            padding: 80px 10%;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            text-align: center;
        }

        .contact-section h2 {
            font-size: 36px;
            color: #1a4f8e;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }

        .contact-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1a4f8e, #c8a971);
            border-radius: 2px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px 25px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .contact-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a4f8e, #3a7bd5, #c8a971);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .contact-item:hover::before {
            transform: scaleX(1);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
            color: white;
            font-size: 28px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .contact-item:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 20px rgba(26, 79, 142, 0.3);
        }

        .contact-item:nth-child(1) .icon-wrapper {
            background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
        }

        .contact-item:nth-child(2) .icon-wrapper {
            background: linear-gradient(135deg, #3a7bd5 0%, #4f8cd6 100%);
        }

        .contact-item:nth-child(3) .icon-wrapper {
            background: linear-gradient(135deg, #4f8cd6 0%, #639ce4 100%);
        }

        .contact-item:nth-child(4) .icon-wrapper {
            background: linear-gradient(135deg, #639ce4 0%, #7aafea 100%);
        }

        .contact-details {
            text-align: center;
        }

        .contact-details p {
            margin: 0;
            color: #4a5568;
            font-size: 16px;
            line-height: 1.6;
        }

        .contact-details a {
            color: #1a4f8e;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .contact-details a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, #1a4f8e, #c8a971);
            transition: width 0.3s ease;
        }

        .contact-details a:hover {
            color: #3a7bd5;
        }

        .contact-details a:hover::after {
            width: 100%;
        }

        .contact-label {
            display: block;
            font-size: 14px;
            color: #718096;
            margin-bottom: 5px;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 5%;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
            
            .contact-item {
                padding: 25px 20px;
            }
        }

        @media (max-width: 480px) {
            .contact-section h2 {
                font-size: 28px;
            }
            
            .icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }

/* FAQ Section */
.faq-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-div {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #1a4f8e;
    font-size: 36px;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8a971;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: #1a4f8e;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #3a7bd5;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 20px;
    margin: 20px 0;
    color: #4a5568;
    line-height: 1.6;
    text-align: justify;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 20px 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a4f8e 0%, #3a7bd5 100%);
    color: #fff;
    padding: 60px 10% 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #c8a971;
}

.footer-column p, .footer-column a {
    color: #e9ecef;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c8a971;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e9ecef;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #c8a971;
}

.social-iconss {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-iconss a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-iconss a:hover {
    background-color: #c8a971;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #e9ecef;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 15px 5%;
    }
    
    .about-us, 
    .stats-section,
    .why-us-section,
    .reviews-section,
    .contact-section,
    .faq-section,
    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 20px 0;
    }
    
    .menu.show {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .menu-icon {
        display: block;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .content p {
        font-size: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-iconss {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 200px;
    }
    
    .hero {
        height: 70vh;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .about-content h2,
    .why-us-section h2,
    .reviews-section h2,
    .contact-section h2,
    .faq-section h2 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}