
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
}

.top-bar .social-icons a {
    margin-right: 10px;
    color: #fff;
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: #ff9800;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center;
    background-color: #000000;
    padding: 15px 20px;
    border-bottom: 2px solid #0e0e0e;
    position: relative;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
}

nav .logo img {
    height: 80px;
    width: 90px;
    
    margin-right: 10px;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    position: relative;
    margin: 0 auto; /* Center the nav-links */
}

nav .nav-links li {
    position: relative;
}

nav .nav-links a {
    text-decoration: none;
    color: #f8f1f1;
    font-size: 18px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: #ff9800;
}

nav .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #ff9800;
    transition: width 0.3s;
}

nav .nav-links a:hover::after {
    width: 100%;
}

nav .cta a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #f0eee9;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

nav .cta a:hover {
    background-color: #f3f1ef;
}
/* Hamburger Menu */
nav .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    left: 20px;
}

nav .hamburger div {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: transform 0.4s ease, background-color 0.4s ease;
}



/* Background Overlay */
nav .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 998;
}

nav .overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Navigation */
@media (max-width: 1024px) {
    nav {
        flex-wrap: wrap;
    }

   
    nav .nav-links {
        position: absolute;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background-color: #f7cc0c;
        flex-direction: column;
        padding: 20px; /* Padding inside the capsule */
        gap: 20px;
        border-radius: 20px; /* Capsule shape */
        transition: left 0.5s ease-in-out;
        z-index: 999;
    }

    nav .nav-links.active {
        left: 0;
    }

    nav .nav-links li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    nav .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    nav .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    nav .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    nav .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    nav .hamburger {
        display: flex;
    }

    nav .cta {
        display: none;
    }

    /* Hamburger Animation */
    nav.active .hamburger div:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #ff9800;
    }

    nav.active .hamburger div:nth-child(2) {
        opacity: 0;
    }

    nav.active .hamburger div:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #ff9800;
    }
}
/* Popup Overlay Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
    overflow: auto; /* Allow scrolling if content overflows */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Timer Styles */
.timer {
    font-size: 18px; /* Reduced font size for smaller screens */
    font-weight: bold;
    color: #ff0000;
    background: white;
    padding: 8px 16px; /* Reduced padding for smaller screens */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px; /* Adjusted position for smaller screens */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

/* Popup Content Styles */
.popup-content {
    background: url('images/achiv.gpg') no-repeat center center/cover; /* Default background image */
    width: 90vw;
    max-width: 350px; /* Reduced max-width for smaller screens */
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: slideIn 0.5s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Reduced padding for smaller screens */
    color: white;
    margin: 20px; /* Added margin to avoid touching screen edges */
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Form Input Styles */
.popup-content input,
.popup-content select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px; /* Reduced font size for smaller screens */
}

.popup-content button {
    width: 100%;
    padding: 10px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

/* Responsive Styles for Smaller Screens */
@media only screen and (max-width: 375px) {
    .popup-content {
        width: 95vw;
        max-width: 300px; /* Further reduced max-width for very small screens */
        padding: 15px; /* Further reduced padding */
    }

    .timer {
        font-size: 16px; /* Smaller font size for very small screens */
        padding: 6px 12px; /* Smaller padding */
        top: -10px; /* Adjusted position */
    }

    .popup-content input,
    .popup-content select {
        font-size: 12px; /* Smaller font size for inputs */
        padding: 8px; /* Smaller padding for inputs */
    }

    .popup-content button {
        font-size: 14px; /* Smaller font size for button */
        padding: 8px; /* Smaller padding for button */
    }
}


/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    margin: 20px;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: white;
}

/* Search Bar Styles */
.search-container {
    position: absolute;
    top: 60px; /* Positioned below the hamburger menu */
    right: 15px; /* Aligned with hamburger menu */
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

#searchInput {
    padding: 12px 16px;
    width: 0;
    border: none;
    border-radius: 50px; /* Rounded corners for modern look */
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smoother animation */
    opacity: 0;
    visibility: hidden;
    outline: none; /* Remove outline on focus */
}

#searchInput.active {
    width: 240px;
    opacity: 1;
    visibility: visible;
}

#searchInput:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on focus */
}

.suggestions {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border: none;
    border-radius: 12px;
    width: 240px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.suggestions div {
    padding: 12px 16px;
    cursor: pointer;
    color: #333;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.suggestions div:last-child {
    border-bottom: none;
}

.suggestions div:hover {
    background: #f7f7f7;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    font-size: 22px;
    color: white;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.search-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive Styles - comprehensive for all devices */
@media (max-width: 1200px) {
    #searchInput.active {
        width: 220px;
    }
}

@media (max-width: 992px) {
    #searchInput.active {
        width: 200px;
    }
    
    .suggestions {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .search-container {
        top: 40px; /* Maintain position below hamburger menu */
        right: 2px; /* Keep aligned with hamburger menu */
    }
    
    #searchInput.active {
        width: 180px;
    }
    
    .suggestions {
        width: 180px;
    }
    
    .search-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .search-container {
        top: 40px; /* Consistent positioning */
        right: 5px;
    }
    
    #searchInput.active {
        width: 150px;
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .suggestions {
        width: 150px;
        top: 45px;
    }
    
    .suggestions div {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .search-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    #searchInput.active {
        width: 120px;
    }
    
    .suggestions {
        width: 120px;
    }
}

/* For extremely small devices */
@media (max-width: 320px) {
    #searchInput.active {
        width: 100px;
    }
    
    .suggestions {
        width: 100px;
    }
    
    .search-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    background: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Input Fields Styling */
.popup-content input,
.popup-content select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    color: black;
}

.popup-content input::placeholder {
    color: grey;
}

/* Responsive Form Row for Inputs */
.popup-content .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.popup-content .form-row input {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
}

/* Dropdown Styling */
.popup-content select {
    width: 100%;
    background: white;
    color: black;
    font-size: 16px;
    border: 1px solid #ccc;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.checkbox-container input {
    margin-right: 10px;
}

/* Submit Button */
.popup-content button {
    width: 100%;
    background: black;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: white;
    color: black;
}

/* Snowfall Effect */
.snow {
    position: absolute;
    top: -10px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}
/* contact icon*/

/* Hero Section with Video */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Fullscreen Background Video */
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* contact icon*/

.fixed-contact {
    position: fixed;
    left: 20px;  /* Distance from the left */
    bottom: 50px;  /* Distance from the bottom */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000; /* Ensures it stays on top */
}

.fixed-contact a img {
    width: 50px;  /* Adjust size */
    height: 50px;
    border-radius: 50%;  /* Make it round */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.fixed-contact a img:hover {
    transform: scale(1.1);
}

/* Content Overlay */
.hero .content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    font-size: 2rem;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin: 0;
}
 /* Runner Banner */
 .runner-banner {
    width: 100%;
    overflow: hidden;
    background-image: url('images/dark-background-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
    position: relative;
    margin-top: -5px;
    color: #fff;
}

.runner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Running Loop */
.runner-loop {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: max-content;
    animation: scroll-loop 35s linear infinite;
    will-change: transform;
    gap: 10px;
    position: relative;
    z-index: 2;
}

/* Runner Items */
.runner-item {
    flex: 0 0 auto;
    width: 220px;
    height: 280px;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    background-color: rgba(255, 39, 6, 0.679);
    border-radius: 8px;
    color: #fffefe;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hover Effects */
.runner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Runner Item Image */
.runner-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

/* Runner Item Heading */
.runner-item h3 {
    margin: 8px 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f1f2f3;
}

/* Runner Item Paragraph */
.runner-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #fcf8f8;
    white-space: normal;
}
/* Pause animation on hover */
.runner-banner:hover .runner-loop {
    animation-play-state: paused;
}

/* Keyframes for Scrolling Animation */
@keyframes scroll-loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Media Queries for Tablets */
@media screen and (max-width: 768px) {
    .runner-banner {
        padding: 15px 0;
    }

    .runner-loop {
        animation: scroll-loop 40s linear infinite;
    }

    .runner-item {
        width: 220px;
        height: 280px;
    }

    .runner-item img {
        max-width: 60px;
    }

    .runner-item h3 {
        font-size: 14px;
    }

    .runner-item p {
        font-size: 12px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .runner-banner {
        padding: 10px 0;
    }

    .runner-loop {
        animation: scroll-loop 40s linear infinite;
    }

    .runner-item {
        width: 220px;
        height: 280px;
    }

    .runner-item img {
        max-width: 50px;
    }

    .runner-item h3 {
        font-size: 12px;
    }

    .runner-item p {
        font-size: 10px;
    }
}
/* Stats Section */
.stats-section {
    text-align: center;
    padding: 100px 20px; /* Increased padding for better spacing */
    background-image: url('images/suces.webp'); /* Add your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff; /* White text for better contrast */
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
    z-index: 1;
}

.stats-section h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
    gap: 20px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Stat Items */
.stat-item {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px); /* Blur effect for glassmorphism */
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Stat Numbers */
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffa500; /* Orange color for numbers */
    margin-bottom: 10px;
}

/* Labels */
.stat-label {
    font-size: 18px;
    color: #fff; /* White text for labels */
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 10px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    background: url('images/bgfront.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e55d00;
}
/* Trust Section */
.trust-section {
    background-image: url('images/suces.webp'); /* Add your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px; /* Increased padding for better spacing */
    text-align: center;
    color: #fff; /* White text for better contrast */
    position: relative;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff; /* White text for better contrast */
    margin-bottom: 30px;
    text-transform: uppercase;
}

.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trust-item img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.trust-item h3 {
    font-size: 22px;
    color: #222; /* Dark text for contrast on light background */
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: #666; /* Dark text for contrast on light background */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-item {
        width: 220px;
    }
}

@media (max-width: 767px) {
    /* Mobile swipe container */
    .trust-stats {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 10px 0 20px 0;
        margin: 0 -20px;
        padding: 0 20px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile swipe items */
    .trust-item {
        flex: 0 0 85%;
        min-width: 250px;
        margin-right: 15px;
        scroll-snap-align: start;
    }
    
    /* Add swipe indicator text */
    .trust-container:after {
        content: "Swipe left to see more →";
        display: block;
        font-size: 14px;
        color: #fff; /* White text for better contrast */
        margin-top: 15px;
    }
}

@media (max-width: 479px) {
    .trust-container h2 {
        font-size: 24px;
    }
    
    .trust-item h3 {
        font-size: 18px;
    }
    
    .trust-item p {
        font-size: 14px;
    }
}



footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px 10px;
    font-family: sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-section {
    flex: 1 1 200px;
  }
  
  .footer-section h3 {
    color: #f4c10f;
    margin-bottom: 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section a {
    text-decoration: none;
    color: #ccc;
  }
  
  .footer-section a:hover {
    color: #f4c10f;
  }
  
  .footer-section input,
  .footer-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .footer-section button {
    width: 100%;
    padding: 10px;
    background-color: #f4c10f;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .footer-bottom {
    text-align: center;
    color: #aaa;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 10px;
    font-size: 14px;
  }
  
  /* Mobile Layout Fix */
  @media (max-width: 768px) {
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      text-align: left;
    }
  
    .quick-links     { grid-column: 1; grid-row: 1; }
    .address         { grid-column: 2; grid-row: 1; }
    .contact-info    { grid-column: 1; grid-row: 2; }
    .follow-us       { grid-column: 2; grid-row: 2; }
    .contact-us      { grid-column: 1 / span 2; grid-row: 3; text-align: center; }
  
    .footer-section form {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .footer-bottom {
      margin-top: 15px;
    }
  }
  