* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: hwb(0 20% 80%);
}

/* Header */
header {
    background: linear-gradient(135deg, #008f45 0%, #00b356 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

.logo-img {
    width: 200px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo span {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.nav-links li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown>a::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Desktop Dropdown Menu - Wide with Scroll */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    min-width: 400px;
    max-width: 500px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Custom Scrollbar for Dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #008f45;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #006633;
}

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #f0f9f4 0%, #e6f5ed 100%);
    border-left-color: #008f45;
    color: #008f45;
    padding-left: 1.8rem;
}

/* MOBILE MENU ICON */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
}

/* MOBILE SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #008f45;
    box-shadow: -3px 0 20px rgba(0, 0, 0, 0.25);
    padding: 25px;
    transition: 0.3s ease-in-out;
    z-index: 2000;
}

.mobile-sidebar.active {
    right: 0;
}

.close-btn {
    font-size: 30px;
    cursor: pointer;
}

/* Sidebar Items */
.mobile-nav-list {
    list-style: none;
    margin-top: 30px;
}

.mobile-nav-list li {
    margin-bottom: 15px;
}

.mobile-nav-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    font-size: 18px;
    display: block;
    cursor: pointer;
}

.mobile-dropdown {
    list-style: none;
    margin-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.mobile-dropdown.active {
    max-height: 400px;
}

.mobile-dropdown li a {
    font-size: 16px;
}


/* .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
} */

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
        gap: 0.5rem;
    }

    .logo-img {
        width: 150px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, #008f45 0%, #00b356 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }

    /* Mobile Dropdown */
    .dropdown>a {
        position: relative;
        padding-right: 2.5rem;
    }

    .dropdown>a::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin: 0;
        min-width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
        overflow-y: auto;
    }

    .dropdown.active>a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Mobile Dropdown Scrollbar */
    .dropdown.active .dropdown-menu::-webkit-scrollbar {
        width: 5px;
    }

    .dropdown.active .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown.active .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    .dropdown-menu a {
        color: white;
        padding: 0.9rem 1rem 0.9rem 2rem;
        font-size: 0.9rem;
        border-left: none;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.3;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 2.3rem;
        color: white;
        border-left-color: transparent;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    } */
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 120px;
    }

    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.8rem 1rem 0.8rem 1.5rem;
    }
}

.section-break {
    margin-top: 90px;
}

.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 180px 2rem 120px;
    margin-top: 90px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
}

.slider-btn {
    background: rgba(0, 143, 69, 0.7);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(0, 143, 69, 0.9);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #008f45;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 140px 1rem 100px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
        gap: 8px;
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: #008f45;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose {
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 143, 69, 0.2);
}

.feature-card h3 {
    color: #008f45;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.feature-card p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: #555;
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {

    .container {
        padding: 0 1rem;
    }

    .features-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .feature-card {
        padding: 1.25rem;
    }
}

/* Company Overview */
.company-overview {
    padding: 80px 2rem;
    background: white;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #008f45;
    margin-bottom: 1.5rem;
}

.overview-text h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #333;
    margin-bottom: 1rem;
}

.overview-text p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.overview-image {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 143, 69, 0.2);
}

/* MVV Section */
.mvv-section {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #008f45;
    margin-bottom: 3rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #008f45;
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    color: #666;
}

@media (max-width: 768px) {

    .company-overview {
        padding: 50px 1rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-image {
        height: 300px;
    }

    .mvv-section {
        padding: 50px 1rem;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvv-card {
        padding: 2rem 1.5rem;
    }

}

@media (max-width: 480px) {


    .overview-image {
        height: 250px;
    }


    .mvv-card {
        padding: 1.5rem 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 2rem;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #008f45;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    height: 400px;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, #00b356 0%, #008f45 100%); */
    border-radius: 10px;
}

/* Services Section */
/* .services {
            padding: 80px 2rem;
            background: #f9f9f9;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 143, 69, 0.2);
        }

        .service-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .service-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-content h3 {
            color: #008f45;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        } */

/* Services Section */
.services {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 143, 69, 0.2);
}

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #008f45;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #008f45;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    color: #666;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.8rem;
}

.book-now-btn {
    background: linear-gradient(135deg, #008f45 0%, #00b356 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 143, 69, 0.3);
    align-self: flex-start;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #00b356 0%, #00d468 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 143, 69, 0.4);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 143, 69, 0.3);
}

/* Hidden services initially */
.hidden-service {
    display: none;
}

.services-grid.show-all .hidden-service {
    display: flex;
}

/* View More Button styling */
#viewMoreBtn {
    padding: 15px 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #008f45;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

#viewMoreBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 143, 69, 0.4);
    background: #006633;
}

/* Responsive Design */

/* Large Desktop - 2 columns */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 2.5rem;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .service-content p {
        font-size: 0.8rem;
    }
}


/* Medium Desktop - 2 columns */
@media (min-width: 992px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-image {
        height: 220px;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }

    .service-content p {
        font-size: 0.8rem;
    }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .services {
        padding: 60px 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-content {
        padding: 1.75rem;
    }

    .service-content h3 {
        font-size: 1.15rem;
    }

    .service-content p {
        font-size: 0.75rem;
    }

    .service-image {
        height: 200px;
    }
}

/* Mobile Landscape & Small Tablet - 1 column */
@media (min-width: 576px) and (max-width: 767px) {
    .services {
        padding: 50px 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-content {
        padding: 1.75rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.75rem;
    }

    .service-image {
        height: 200px;
    }

    .book-now-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait - 1 column */
@media (max-width: 575px) {
    .services {
        padding: 40px 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        max-width: 100%;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .service-image {
        height: 200px;
    }

    .book-now-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }

    #viewMoreBtn {
        width: 100%;
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Extra Small Mobile - 1 column */
@media (max-width: 375px) {
    .services {
        padding: 30px 0.75rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-content h3 {
        font-size: 1rem;
    }

    .service-content p {
        font-size: 0.7rem;
    }

    .service-image {
        height: 180px;
    }

    .book-now-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
}

/*Our Services*/
/* Services List Section */
.our-services-list {
    padding: 80px 2rem;
    background: white;
}

.our-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.6s ease-out;
}

.our-service-item:nth-child(even) {
    direction: rtl;
}

.our-service-item:nth-child(even)>* {
    direction: ltr;
}

.our-service-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 143, 69, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.our-service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 143, 69, 0.2), rgba(0, 179, 86, 0.2));
    transition: opacity 0.3s;
}

.our-service-item:hover .service-image {
    transform: scale(1.05);
}

.our-service-item:hover .service-image::before {
    opacity: 0;
}

.our-service-content {
    padding: 2rem;
}

.our-service-number {
    display: inline-block;
    background: linear-gradient(135deg, #008f45, #00b356);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.our-service-content h2 {
    font-size: 2.2rem;
    color: #008f45;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.our-service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.our-service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.our-service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.our-service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #008f45;
    font-weight: bold;
    font-size: 1.3rem;
}

.our-btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #008f45, #00b356);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 143, 69, 0.3);
}

.our-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 143, 69, 0.4);
}

/* Alternating Styles */
.our-service-item:nth-child(3n+1) .service-image {
    border-radius: 15px 80px 15px 80px;
}

.our-service-item:nth-child(3n+2) .service-image {
    border-radius: 80px 15px 80px 15px;
}

.our-service-item:nth-child(3n) .service-image {
    border-radius: 15px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* Responsive */
@media (max-width: 768px) {


    .our-service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .our-service-item:nth-child(even) {
        direction: ltr;
    }

    .our-service-image {
        height: 300px;
    }

    .our-service-content h2 {
        font-size: 1.8rem;
    }

}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .whatsapp-float:hover {
    width: auto;
    padding: 0 15px;
    border-radius: 50px;
    justify-content: center;
} */

.whatsapp-float a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    height: 100%;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    display: block;
    transition: opacity 0.3s ease;
}

.whatsapp-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    display: none;
    margin-left: 10px;
}

/* .whatsapp-float:hover .whatsapp-icon {
    display: none;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline;
} */

.call-contact-float {
    position: fixed;
    bottom: 15px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #e55a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .call-contactt-float:hover {
    width: auto;
    padding: 0 15px;
    border-radius: 50px;
    justify-content: center;
} */

.call-contact-float a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    height: 100%;
}

.call-contact-icon {
    width: 30px;
    height: 30px;
    display: block;
    fill: white;
    /* icon color */
    transition: opacity 0.3s ease;
}

.call-contact-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    display: none;
    margin-left: 10px;
}

/* .call-contact-float:hover .call-contact-icon {
    display: none;
}

.call-contact-float:hover .call-contact-text {
    display: inline;
} */

/* Logo Slider */
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

/* Logo Track for scrolling effect */
.logo-track {
    display: flex;
    gap: 60px;
    /* Adjust spacing between logos */
    animation: scroll 40s linear infinite;
}

/* Individual logos */
.logo-track img {
    width: 200px;
    /* Adjust size to fit exactly 7 logos */
    height: 100px;
    flex-shrink: 0;
}

/* Hover effect to pause animation */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Keyframe animation for continuous scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-600%);
    }
}

/* Testimonials */
.testimonials {
    padding: 80px 2rem;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #008f45;
}

/* FAQ */
.faq {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: bold;
    color: #008f45;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 143, 69, 0.9), rgba(0, 179, 86, 0.9)),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 2rem 80px;
    margin-top: 60px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 1rem;
}



.breadcrumb {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Company Overview */
/* .company-overview {
    padding: 80px 2rem;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #008f45;
    margin-bottom: 1.5rem;
}

.overview-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.overview-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #00b356 0%, #008f45 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 143, 69, 0.2);
    background-image: url('https://images.unsplash.com/photo-1563453392212-326f5e854473?w=800&h=600&fit=crop');
    background-size: cover;
    background-position: center;
} */

/* Mission Vision Values */
.mvv-section {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #008f45;
    margin-bottom: 3rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: #008f45;
    margin-bottom: 1rem;
}

.mvv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #00b356 0%, #008f45 100%);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #008f45;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-info span {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 2rem;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: #f9f9f9;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: white;
    border-color: #008f45;
    box-shadow: 0 10px 30px rgba(0, 143, 69, 0.1);
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: #008f45;
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.contact-info-card a {
    color: #008f45;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-info-card a:hover {
    color: #006633;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 2rem;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #008f45;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-loader {
    margin-left: 5px;
    font-weight: bold;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-left: 5px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008f45;
    box-shadow: 0 0 0 3px rgba(0, 143, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group select {
    cursor: pointer;
} */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

label .required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #008f45;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #006633;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 143, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {

    .form-container {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .form-container {
        padding: 20px 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 12px 30px;
    }

}

/* Map Section */
.map-section {
    padding: 80px 2rem;
    background: white;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #00b356 0%, #008f45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 2rem;
    background: white;
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #008f45;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Emergency CTA */
.emergency-cta {
    padding: 60px 2rem;
    background: linear-gradient(135deg, #008f45 0%, #00b356 100%);
    color: white;
    text-align: center;
}



.emergency-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.emergency-cta p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.emergency-cta .phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-white {
    background: white;
    color: #008f45;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #008f45 0%, #00b356 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Popup Styles */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 18px 22px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    display: none;
    z-index: 9999;
}

.popup.success {
    background: #008f45;
}

.popup.error {
    background: #d9534f;
}

/* Services List Section */
.services-list {
    padding: 80px 2rem;
    background: white;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even)>* {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 143, 69, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 143, 69, 0.2), rgba(0, 179, 86, 0.2));
    transition: opacity 0.3s;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-item:hover .service-image::before {
    opacity: 0;
}

.service-content {
    padding: 2rem;
}

.service-number {
    display: inline-block;
    background: linear-gradient(135deg, #008f45, #00b356);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-content h2 {
    font-size: 2.2rem;
    color: #008f45;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #008f45;
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #008f45, #00b356);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 143, 69, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 143, 69, 0.4);
}

/* Alternating Styles */
.service-item:nth-child(3n+1) .service-image {
    border-radius: 15px 80px 15px 80px;
}

.service-item:nth-child(3n+2) .service-image {
    border-radius: 80px 15px 80px 15px;
}

.service-item:nth-child(3n) .service-image {
    border-radius: 15px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

/* CTA Section */
.cta-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, #008f45, #00b356);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: #008f45;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}


/* Footer */
footer {
    background: linear-gradient(135deg, #006633 0%, #008f45 100%);
    color: white;
    padding: 4rem 2rem 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="1100" cy="300" r="100" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="200" r="60" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.4rem;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ff6b35;
    padding-left: 5px;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}