/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
    background-image: url('images/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

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

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

/* Header Styles */
.header-top {
    background-color: #092c6a;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.header-top a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-top a:hover {
    color: #e8e8e8;
}

.header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-contact span {
    font-weight: 500;
}

.navbar {
    background-color: transparent;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a, .dropdown-trigger {
    text-decoration: none;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
}

.nav-menu a:hover, .dropdown-trigger:hover {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background-color: #eb0509 !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c20408 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(235, 5, 9, 0.3);
    transform: translateY(-2px);
}

/* Ensure CTA button always has white text on all pages */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #eb0509;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar-solid .mobile-menu-toggle span {
    background-color: #eb0509;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-category {
    position: relative;
}

.dropdown-category h4 {
    color: #2c3e50;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-category h4:hover {
    background-color: rgba(9, 44, 106, 0.1);
    border-left-color: #092c6a;
    color: #092c6a;
    border-radius: 6px;
    margin: 0 10px;
}

.dropdown-category .category-services {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown-category:hover .category-services {
    display: block;
}

.dropdown-category a {
    display: block;
    color: #333 !important;
    text-decoration: none;
    padding: 8px 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-category a:hover {
    background-color: rgba(9, 44, 106, 0.1);
    color: #092c6a !important;
    border-left-color: #092c6a;
    padding-left: 23px;
    border-radius: 6px;
    margin: 0 10px;
}

.navbar-solid .dropdown-category h4 {
    color: #2c3e50 !important;
}

.navbar-solid .dropdown-category h4:hover {
    color: #092c6a !important;
}

.navbar-solid {
    background-color: (255, 255, 255, 0) !important;
}

.navbar-solid .nav-menu a, 
.navbar-solid .dropdown-trigger {
    color: #333 !important;
    text-shadow: none !important;
}

.navbar-solid .nav-menu a:hover, 
.navbar-solid .dropdown-trigger:hover {
    background-color: rgba(9, 44, 106, 0.1) !important;
    color: #092c6a !important;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: -1;
}

.hero-text-container {
    max-width: 800px;
    padding-left: 200px;
    padding-right: 0px;
}

/* Mobile hero text positioning */
@media (max-width: 768px) {
    .hero-text-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero h1, .hero-h1 {
        font-size: 4 rem;
        text-align: left;
    }
    
    .hero-h2 {
        font-size: 1.8rem;
        text-align: left;
    }
    
    .service-info {
        padding: 0 20px;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.hero h1, .hero-h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    text-align: left;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2.7rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    text-align: left;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    text-transform: none;
    line-height: 1.2;
}

.hero-title {
    position: relative;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-title .cursor {
    animation: blink-cursor 1s infinite;
    font-weight: normal;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-button {
    display: inline-block;
    background-color: #092c6a;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #061d47;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 44, 106, 0.3);
}

/* Section Styles */
section {
    padding: 20px 0;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd 20%, #ddd 80%, transparent);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #34495e;
}

/* About Section */
.about {
    background-color: rgba(255, 255, 255, 0.6);
}

.about-summary {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.about-summary p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-learn-more {
    display: inline-block;
    background-color: #092c6a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.about-learn-more:hover {
    background-color: #061d47;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 44, 106, 0.3);
}

/* Services Section */
.services {
    background-color: rgba(255, 255, 255, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.service-card img[loading="lazy"] {
    opacity: 0;
}

.service-card img[loading="lazy"].loaded {
    opacity: 1;
}

.service-card h3 {
    padding: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.service-list {
    padding: 0 20px 20px;
}

.service-list ul {
    list-style: none;
}

.service-list li {
    margin-bottom: 8px;
}

.service-list a {
    color: #092c6a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-list a:hover {
    color: #061d47;
}

/* Detailed Services */

/* Projects Section */
.projects {
    background-color: rgba(255, 255, 255, 0.6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.projects-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    margin-top: 50px;
    scroll-behavior: smooth;
}

.projects-horizontal::-webkit-scrollbar {
    height: 8px;
}

.projects-horizontal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.projects-horizontal::-webkit-scrollbar-thumb {
    background: #092c6a;
    border-radius: 4px;
}

.projects-horizontal::-webkit-scrollbar-thumb:hover {
    background: #061d47;
}

.projects-horizontal .project-card {
    flex: 0 0 300px;
    width: 300px;
}

.projects-cta {
    background-color: #092c6a;
    text-align: center;
    margin-top: 40px;
}

.projects-view-all {
    display: inline-block;
    background-color: #092c6a;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.projects-view-all:hover {
    background-color: #061d47;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(9, 44, 106, 0.3);
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.project-card img[loading="lazy"] {
    opacity: 0;
}

.project-card img[loading="lazy"].loaded {
    opacity: 1;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.project-info p {
    color: #555;
    margin-bottom: 5px;
}

.project-location {
    font-weight: 500;
    color: #34495e !important;
}

.project-services {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
    background-color: #092c6a;
    color: white;
}

.testimonials h2 {
    color: white;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 600px;
    margin: 50px auto 0;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin: 0;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
}

.testimonial span {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.prev-btn {
    margin-left: -25px;
}

.next-btn {
    margin-right: -25px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Associations Section */
.associations {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 20px 0;
}

.associations-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    justify-content: flex-start;
}

.associations-logos::-webkit-scrollbar {
    height: 8px;
}

.associations-logos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.associations-logos::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.associations-logos::-webkit-scrollbar-thumb:hover {
    background: #092c6a;
}

.associations-logos img {
    height: 80px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    min-width: 100px;
}

.associations-logos img:hover {
    opacity: 1;
}

/* Contact Section */
.contact {
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item a {
    color: #092c6a;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* Form Styles */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #092c6a;
    box-shadow: 0 0 0 3px rgba(9, 44, 106, 0.1);
}

.submit-button {
    background-color: #092c6a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #061d47;
}

/* Footer */
.footer {
    background-color: #d6d6d6;
    color: #061d47;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #061d47;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #092c6a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #eb0509;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #092c6a;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.social-links a {
    color: #092c6a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #061d47;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(9, 44, 106, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #eb0509;
    transform: translateY(-2px);
}

.social-icon svg {
    transition: all 0.3s ease;
}

.footer .social-links {
    justify-content: flex-start;
}

.footer .social-links a {
    color: #092c6a !important;
}

.footer .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer .social-icon:hover {
    background-color: white;
    color: #092c6a !important;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    background: white;
    margin: 80px 20px 20px;
    border-radius: 15px;
    padding: 30px 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(9, 44, 106, 0.1);
    color: #092c6a;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-dropdown-trigger:hover {
    background-color: rgba(9, 44, 106, 0.1);
    color: #092c6a;
}

.mobile-dropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background: #f8f9fa;
    padding: 10px 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-category {
    margin-bottom: 15px;
}

.mobile-category:last-child {
    margin-bottom: 0;
}

.mobile-category-title {
    padding: 10px 40px;
    font-weight: 600;
    color: #092c6a;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-category-item {
    display: block;
    padding: 8px 40px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-category-item:hover {
    background-color: rgba(9, 44, 106, 0.1);
    color: #092c6a;
    padding-left: 45px;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
 
    
    .hero-h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .about-summary {
        padding: 0 20px;
    }
    
    
    .service-image {
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-horizontal {
        padding: 20px 0 20px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .projects-horizontal .project-card {
        flex: 0 0 280px;
        width: 280px;
    }
    
    .testimonials-slider-wrapper {
        max-width: 100%;
        margin: 30px auto 0;
        padding: 0 10px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial span {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        margin-left: -20px;
    }
    
    .next-btn {
        margin-right: -20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .hero h1, .hero-h1 {
        font-size: 2rem;
    }
    
    .hero-h2 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .service-text {
        padding: 25px;
    }
    
    .testimonials-slider-wrapper {
        padding: 0 5px;
        margin: 20px auto 0;
    }
    
    .testimonial {
        padding: 25px 15px;
    }
    
    .testimonial p {
        font-size: 0.9rem;
    }
    
    .testimonial span {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .prev-btn {
        margin-left: -17px;
    }
    
    .next-btn {
        margin-right: -17px;
    }
    
    .slider-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-categories {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
}

.service-category-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-category-box:hover {
    transform: translateY(-5px);
}

.service-category-box h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #092c6a;
    font-size: 1.5rem;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.service-item {
    display: block;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-item:hover {
    background: white;
    border-left-color: #092c6a;
    transform: translateX(5px);
    color: #092c6a;
}

.services-cta {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.services-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-button-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.cta-button-outline:hover {
    background: white;
    color: #092c6a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Individual Service Page Styles */
.service-hero {
    background: rgba(255, 255, 255, 0.6);
    padding: 120px 0 0px;
    margin-top: 0px;
}

.service-hero-new {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-hero-new .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-hero-new .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
}

.service-hero-new .container {
    position: relative;
    z-index: 3;
}

.service-hero-new .breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-hero-new .breadcrumb a {
    color: white;
    text-decoration: none;
}

.service-hero-new .breadcrumb span {
    color: white;
}

.service-hero-new h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-hero-new {
        height: 50vh;
        min-height: 400px;
    }
    
    .service-hero-new h1 {
        font-size: 2rem;
    }
}

.service-hero-content {
    color: #092c6a;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #092c6a;
    text-decoration: none;
}

.breadcrumb span {
    color: black;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-details {
    background: rgba(255, 255, 255, 0.6);
}

.service-content {
    display: block;
}

.service-image {
    width: 100%;
    margin-bottom: 40px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: none;
}

.service-info {
    padding: 0 40px;
}

.service-description h2 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.service-benefits {
    margin-top: 40px;
}

.service-benefits h3 {
    color: #2c3e50;
    margin-bottom: 40px;
    margin-top: 10px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.benefit-item {
    padding: 0px;
    background: white;
    border-radius: 10px;
}

.benefit-item h4 {
    color: #092c6a;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.related-services {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.6);
}

.related-services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    margin: 0;
}

.related-card p {
    padding: 0 20px 20px;
    color: #555;
    margin: 0;
}

.service-cta-section {
    background: #092c6a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.service-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #092c6a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(9, 44, 106, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #061d47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 44, 106, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-1px);
}

/* Page Hero Styles */
.page-hero {
    background: transparent;
    color: white;
    padding: 150px 0 100px;
    margin-top: 40px;
}

.page-hero .breadcrumb {
    display: none;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.company-overview {
    padding: 0px 0;
    background: rgba(255, 255, 255, 0.6);
}

.overview-content {
    display: block;
    text-align: center;
    padding: 20px;
}

.overview-text h2 {
    margin-top: 40px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.overview-text p {
    margin: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.6);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

.our-values {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 20px;
}

.values-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    padding: 30px;
    border-left: 4px solid #092c6a;
    background: white;
    border-radius: 0 10px 10px 0;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: #092c6a;
    margin-bottom: 15px;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    color: #555;
    line-height: 1.6;
}

.experience-stats {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.experience-stats h2 {
    color: white;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-cta {
    padding: 80px 0;
    background: #092c6a;
    color: white;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Projects Page Styles */
.projects-overview {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.6);
}

.projects-overview h2 {
    text-align: center;
    margin-bottom: 30px;
}

.projects-overview p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.project-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #092c6a;
    display: block;
}

.project-stats .stat-label {
    color: #555;
    font-size: 1rem;
}

.projects-gallery {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.6);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ccc;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #092c6a;
    color: white;
    border-color: #092c6a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .project-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: white;
}

.project-overlay .project-location {
    color: white !important;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: rgba(9, 44, 106, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-process {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
}

.project-process h2 {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #092c6a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.projects-cta {
    padding: 0px 0;
    color: white;
    text-align: center;
}

.projects-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.projects-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 0px 0;
    background: rgba(255, 255, 255, 0.6);
}

.contact-intro {
    text-align: center;
}

.contact-intro h2 {
    margin-top: 20px;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.contact-info-bottom {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-method-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-details-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details-bottom strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-details-bottom span {
    color: #555;
}

.contact-details-bottom a {
    color: #092c6a;
    text-decoration: none;
}

.contact-details-bottom a:hover {
    text-decoration: underline;
}

.contact-info {
    padding-top: 40px;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}


.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #092c6a;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}


.contact-form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
}

.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-form > p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #092c6a;
    box-shadow: 0 0 0 3px rgba(9, 44, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: #092c6a;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #061d47;
}

.service-areas {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.area-card h3 {
    margin-bottom: 20px;
    text-align: center;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #ddd;
}

.area-card li:last-child {
    border-bottom: none;
}

.areas-note {
    text-align: center;
    color: #555;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-services {
    padding: 60px 0;
    background: #eb0509;
    color: white;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-icon {
    flex-shrink: 0;
}

.emergency-text h2 {
    color: white;
    margin-bottom: 20px;
}

.emergency-text p {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-button {
    background: white;
    color: #eb0509;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.emergency-button:hover {
    background: white;
    transform: translateY(-2px);
}

/* Active Navigation State */
.nav-menu a.active {
    color: #eb0509 !important;
    font-weight: 600;
}

.navbar-solid .nav-menu a.active {
    color: #eb0509 !important;
    background-color: rgba(235, 5, 9, 0.1);
    border-radius: 6px;
    font-weight: 600;
}

.navbar-solid .nav-menu a.active:hover {
    color: #eb0509 !important;
    background-color: rgba(235, 5, 9, 0.15);
}

/* Active dropdown trigger */
.dropdown-trigger.active {
    color: #eb0509 !important;
    font-weight: 600;
}

.navbar-solid .dropdown-trigger.active {
    color: #eb0509 !important;
    background-color: rgba(235, 5, 9, 0.1);
    border-radius: 6px;
    font-weight: 600;
}

.navbar-solid .dropdown-trigger.active:hover {
    color: #eb0509 !important;
    background-color: rgba(235, 5, 9, 0.15);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .project-stats {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.project-card,
.testimonial {
    animation: fadeInUp 0.6s ease forwards;
}

/* Areas of Services Section */
.service-areas {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.6);
}

.service-areas h2 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.area-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 350px;
    position: relative;
    padding: 0;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.area-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.area-title {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    margin: 0;
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.area-card:hover .area-image img {
    transform: scale(1.05);
}

/* Responsive design for Areas of Services */
@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .area-card {
        height: 220px;
    }
    
    .service-areas h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-areas {
        padding: 60px 0;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
    
    .area-card {
        height: 180px;
    }
    
    .area-title {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .service-areas h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .area-card {
        height: 200px;
    }
}