
:root {
    --ecru-white: #f6f8ef;
    --primary: #ecb704; /* Primary */
    --secondary: #2c440c; /* Secondary */
    --button-color: #f1d074; /* Button and icon color (lighter shade of primary for contrast) */
    --text-color: #333333; /* Dark neutral for text readability */
    --light-text: #ffffff; /* Light text for dark backgrounds */
    --dark: #1a1a1a;
    --background: #f9f7eb; /* Neutral background complementing primary */
    --gray: #f5f5f5; /* For subtle sections or secondary background */
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
.header {
    background-color: var(--secondary);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.logo-image {
    height: 120px;
    width: auto;
}

/* Header Styles */
.header {
    background-color: var(--secondary);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    color: var(--ecru-white);
}

.logo-image {
    height: 100px;
    width: auto;
}

.nav-content {
    background: rgba(44, 68, 12, 0.95);
    color: #ffffff; /* Ensure visible text */
    display: flex;
    align-items: center;
}



.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* Bright white text for better visibility */
    font-weight: 500;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover, .nav-links a:focus {
    color: #000; /* Black text on hover for contrast */
    
}

/* Add styles for active menu items */
.nav-links a.active {
   
    display: flex;
    align-items: center;


}

/* Hamburger menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--light-text);
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    /* Slide-in effect for nav-content */
    .nav-content {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        height: 100vh;
        width: 250px;
        background: rgba(44, 68, 12, 0.95); 
        flex-direction: column;
        justify-content: center;
        padding: 80px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-content.active {
        right: 0; /* Slide into view */
    }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(2px, 2px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, -1px);
    }

    .nav-links {
        flex-direction: column; /* Stack links vertically */
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        width: 100%;
        font-size: 18px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo-image {
        height: 50px;
    }

    .nav-content {
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
    }
}


.hero {
    background-image: url('../../assets/images/background.jpg'); /* Updated to use the new secondary color */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover; /* This will make the image cover the entire element, cropping as necessary */
    background-position: center center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.hero p{
    color: #fff;
}


.background-number {
    position: absolute;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--primary); /* Updated to use the new primary color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}


.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.hero-title {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary); /* Updated to use the new primary color */
}

.hero-description {
    color: var(--text-color); /* Updated to use the new text color for readability */
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    
}
/* Hover effect for primary button */
.hero-buttons .btn-primary:hover {
     /* Changes text color to white */
    background-color: #fff; /* You can replace with any color for hover */
}

/* Hover effect for secondary button */
.hero-buttons .btn-secondary:hover {
    /* Changes text color to white */
    background-color: #fff; /* You can replace with any color for hover */
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary); /* Updated to use the new primary color */
    color: var(--light-text); /* Ensures text contrast on the primary button */
}

.btn-secondary {
    background-color: rgba(236, 183, 4, 0.1); /* Light translucent version of the primary color */
    color: var(--text-color); /* Dark text color for contrast */
}

.btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    

    .hero-title {
        font-size: 40px;
    }

    .background-number {
        font-size: 200px;
    }
}

/* Service Section */
.services-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background);
    position: relative;  /* Updated to use the new background color */
}

.section-subtitle {
    color: var(--primary); /* Updated to use the new primary color */
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-subtitle svg {
    width: 20px;
    height: 20px;
    fill: var(--primary); /* Updated to match the new primary color */
}

.section-title {
    color: var(--text-color); /* Updated to use the new text color for readability */
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.services-section h2 {
    color: var(--primary); /* Updated to use the new primary color */
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--secondary); /* Updated to use the new secondary color */
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}


.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary); /* Updated to use the new primary color */
}


.service-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.get-in-touch {
    color: var(--secondary); /* Updated to use the new secondary color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.get-in-touch:hover {
    color: var(--primary); /* Updated to use the new primary color on hover */
}


.get-in-touch svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
}

.dot.active {
    background: var(--primary); /* Updated to use the new primary color */
}


@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }
}
/* Responsive Styling */
@media (max-width: 1024px) {
    .services-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .service-card {
        flex: 0 1 calc(50% - 20px); /* Adjust width for two cards in a row */
    }
}

@media (max-width: 768px) {
    .services-container {
        gap: 15px;
    }
    .service-card {
        flex: 0 1 100%; /* Full-width cards for smaller screens */
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px; /* Smaller title font */
    }
    .service-card {
        padding: 10px; /* Reduce padding for smaller screens */
    }
    .service-description {
        font-size: 14px; /* Adjust text size */
    }
}
@media (max-width: 360px) {
    .section-title {
        font-size: 24px; /* Further reduce title font size */
        text-align: center; /* Center align for better readability */
    }
    .service-card {
        padding: 8px; /* Reduce padding even more */
        margin-bottom: 10px; /* Add spacing between cards */
    }
    .service-title {
        font-size: 16px; /* Smaller font size for titles */
        text-align: center; /* Center align titles */
    }
    .service-description {
        font-size: 12px; /* Reduce text size */
        text-align: justify; /* Improve readability */
    }
    .get-in-touch {
        font-size: 12px; /* Adjust button text size */
        padding: 8px 12px; /* Reduce button size */
    }
    .service-icon svg {
        width: 40px; /* Smaller icons */
        height: 40px;
    }
}



/* About */
.about-section {
    background-color: var(--secondary); /* Updated to use the new secondary color */
    color: var(--white); /* Ensures text color is white for contrast */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.image-stack {
    position: relative;
    flex: 1;
}

.counter {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.counter span {
    color: #0d6efd;
}

.image-container {
    position: relative;
    display: flex;
    gap: 20px;
}

.small-image {
    width: 140px;
    height: 243px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.large-image {
    width: 300px;
    height: 513px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.content-section {
    flex: 1;
    max-width: 500px;
    color: var(--white);
}

.subtitle {
    color: #fff; /* White text color for the subtitle */
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title {
    color: #fff; /* White text color for the title */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.description {
    color: #fff; /* White text color for the description */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-item h3 {
    color: #fff; /* White text color for feature item titles */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: #fff; /* White text color for feature item descriptions */
    font-size: 14px;
    line-height: 1.6;
}

.more-about {
    color: #ecb704; /* White text color for the "More About" link */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more-about:hover {
    color:  #fff; /* Hover color for the "More About" link */
}

/* Footer Section */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 40px 0 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    text-align: center;
}

.logo-img {
    margin-bottom: 20px;
    max-height: 10%;
    max-width: 20%;
}

.address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
}

.address img {
    max-width: 10%;
    max-height: 10%;
}

/* Footer Content */
.footer-content {
    width: 100%;
}

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Subscribe Section Base Styles */
.subscribe-section {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 15px;
}

.subscribe-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.subscribe-section p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}

/* Form Styles */
.subscribe-form {
    width: 100%;
}

.input-group {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 14px;
    min-width: 0; /* Prevents input from overflowing */
}

.submit-arrow {
    padding: 8px 20px;
    background: var(--primary);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    white-space: nowrap;
}

/* Privacy Notice */
.privacy-notice {
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.privacy-notice input[type="checkbox"] {
    margin-top: 3px;
}

.privacy-link {
    color: #fff;
    text-decoration: none;
}
/* Quick Links */
.quick-links ul {
    list-style: none;
    padding: 0;

}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links h3 {
    color : #fff;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Privacy Notice */
.privacy-notice {
    font-size: 14px;
    color: #fff;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}


/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #fff;
    font-size: 14px;
}

.company-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.company-link:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscribe-section {
        padding: 0 10px;
    }

    .input-group {
        gap: 8px;
    }

    .input-group input {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .subscribe-section {
        padding: 0 5px;
    }

    .input-group {
        flex-direction: row; /* Keep input and button on same line */
    }

    .input-group input {
        min-width: 0;
        width: calc(100% - 50px); /* Adjust based on button width */
    }

    .submit-arrow {
        padding: 8px 15px;
        min-width: 40px;
    }

    .privacy-notice {
        font-size: 11px;
    }
}
/* Forms and Inputs */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid var(--gray); /* Keeps the border color neutral */
    border-radius: 5px;
    background-color: var(--white); /* Keeps the background white for clean inputs */
    color: var(--text-color); /* Updated to use the new text color for inputs */
    font-size: 16px;
}


input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary); /* Updated to use the new primary color */
    box-shadow: 0 0 5px rgba(236, 183, 4, 0.5); /* Updated to match the primary color's RGBA */
}


textarea {
    resize: vertical;
    min-height: 150px;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary); /* Updated to use the new primary color */
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--jelly-bean); /* Keeps the original hover effect */
}

.btn-secondary {
    background-color: var(--secondary); /* Updated to use the new secondary color */
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark); /* Keeps the original hover effect */
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.modal-header {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary); /* Updated to use the new primary color */
    margin-bottom: 20px;
}

.modal-body {
    font-size: 16px;
    color: var(--text-color); /* Updated to use the new text color */
}

.modal-footer {
    margin-top: 20px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: var(--secondary); /* Updated to use the new secondary color */
    cursor: pointer;
}

.close-modal:hover {
    color: var(--shamrock); /* Keeping the original hover effect */
}


/* Image Gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.1);
}

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background-color: var(--secondary); /* Updated to use the new secondary color */
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip.active {
    visibility: visible;
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary); /* Updated to use the new primary color */
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--gray); /* Retained gray color for the scrollbar track */
}


/* Animation Effects */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in {
    animation: slideIn 0.8s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--gray); /* Retained gray background */
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary); /* Updated to use the new primary color (#ecb704) */
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-subtitle svg {
    width: 20px;
    height: 20px;
    fill: var(--primary); /* Updated to use the new primary color (#ecb704) */
}


.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    color: var(--secondary); /* Updated to use the new secondary color (#2c440c) */
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary); /* Updated to use the new secondary color (#2c440c) */
    margin: 20px auto 0;
}


.testimonials-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary); /* Updated to use the new primary color (#ecb704) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.client-info {
    margin-top: 20px;
}

.client-name {
    color: var(--dark); /* Retained dark color for client name */
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.client-position {
    color: var(--primary); /* Updated to use the new primary color (#ecb704) */
    font-size: 14px;
}

.testimonial-nav {
    margin-top: 30px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary); /* Updated to use the new primary color (#ecb704) */
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.nav-dot.active {
    background: var(--primary); /* Updated to use the new primary color (#ecb704) */
}


@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
    }

    .testimonial-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--oxford-blue); /* Secondary color */
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}
.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--primary); /* Updated to use the new primary color (#ecb704) */
    stroke-width: 2;
}

.contact-info-title {
    color: var(--dark); /* Retained dark color for the title */
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-subtitle {
    color: var(--secondary); /* Updated to use the new secondary color (#1f3c63) */
    font-size: 14px;
}

.comments-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.section-title {
    color: #2c440c;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    color: var(--white);
}

.section-description {
    color: var(--secondary); /* Updated to use the new secondary color (#2c440c) */
    margin-bottom: 40px;
}


.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-control {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.message-area {
    grid-column: 1 / -1;
}

.form-note {
    color: var(--secondary); /* Updated to use the new secondary color (#2c440c) */
    font-size: 14px;
    margin-bottom: 30px;
    text-align: left;
}

.submit-button {
    background: var(--primary); /* Updated to use the new primary color (#ecb704) */
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}


.submit-button:hover {
    background: #d9a703;
}

.submit-button svg {
    width: 20px;
    height: 20px;
}





@media (max-width: 768px) {
    .footer-top .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-section {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    .address {
        justify-content: center;
        text-align: center;
    }

    .privacy-notice {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .subscribe-form .input-group {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }

    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Dynamic grid */
    gap: 30px;
    max-width: 1200px; /* Keeps content centered on larger screens */
    margin: 0 auto;
    padding: 0 20px; /* Adds padding for smaller screens */
}

/* Center align the footer content for large screens */
@media (min-width: 1200px) {
    .footer-content {
        justify-content: space-between; /* Evenly distributes columns */
        text-align: left; /* Aligns text to the left for a cleaner look */
    }

    .logo-section,
    .footer-column {
        flex: none;
    }
}

/* Tablet */
@media (max-width: 768px) {
    #about .container {
        flex-direction: column;
        text-align: center;
    }

    .image-stack {
        flex: none;
        margin-bottom: 30px;
    }

    .content-section .title {
        font-size: 24px;
    }

    .content-section .description {
        font-size: 15px;
    }

    .feature-list {
        margin-bottom: 30px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-content h3 {
        font-size: 16px;
    }
}


@media (max-width: 1024px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-info {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-card {
        width: 30%;
        text-align: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .comments-section {
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-form .submit-button {
        width: 100%;
    }

    .form-note1 {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 0 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    .contact-form .submit-button {
        font-size: 16px;
        padding: 12px 0;
    }

    .form-note1 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 20px;
    }

    .contact-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .contact-info-title {
        font-size: 16px;
    }

    .contact-info-subtitle {
        font-size: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 8px;
    }

    .contact-form .submit-button {
        font-size: 14px;
        padding: 10px 0;
    }

    .form-note1 {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 60px 20px;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .image-stack {
        width: 100%;
        text-align: center;
    }

    .image-container {
        display: block;
    }

    .counter {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .small-image img,
    .large-image img {
        width: 100%;
        height: auto;
    }

    .content-section {
        width: 100%;
        text-align: center;
    }

    .feature-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        width: 45%;
        text-align: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .more-about {
        display: inline-block;
        margin-top: 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .image-stack {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .counter {
        font-size: 40px;
    }

    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-item {
        width: 100%;
    }

    .more-about {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 20px 15px;
    }

    .container {
        flex-direction: column;
        gap: 20px;
    }

    .image-stack {
        margin-bottom: 20px;
    }

    .counter {
        font-size: 30px;
    }

    .small-image img,
    .large-image img {
        max-width: 100%;
        height: 100%;
    }

    .content-section .title {
        font-size: 20px;
        line-height: 1.4;
    }

    .content-section .description {
        font-size: 14px;
        margin-top: 15px;
    }

    .feature-list {
        gap: 15px;
    }

    .feature-item {
        width: 100%;
    }

    .more-about {
        font-size: 13px;
    }
}
