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

body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #202124;
}

.language-toggle {
    position: relative;
}

.lang-btn {
    background: white;
    color: #192E04;
    border: 2px solid #192E04;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #192E04;
    color: white;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-btn.active .arrow {
    transform: rotate(180deg);
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: -80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    z-index: -1;
}

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

.hero-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 62px;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #202124;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: transparent;
    color: #192E04;
    border-color: #192E04;
}

.btn-primary:hover {
    background: #192E04;
    color: white;
    border-color: #192E04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 46, 4, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #192E04;
    border-color: #192E04;
}

.btn-secondary:hover {
    background: #192E04;
    color: white;
    border-color: #192E04;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 46, 4, 0.3);
}

/* Statistics Section Styles */
.statistics {
    padding: -40px 0;
    background: transparent;
    position: relative;
    margin-top: -160px;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 33.33%;
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.stats-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 66.66%;
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

/* About Us Section Styles */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    max-width: 500px;
}

.about-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 25px;
}

.about-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

.btn-about {
    background: #D1E2BE;
    color: #1C2C07;
    border-color: #D1E2BE;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #1C2C07;
    color: #D1E2BE;
    border-color: #1C2C07;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 44, 7, 0.3);
}

.about-image {
    text-align: center;
}

.person-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon .icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #202124;
    margin-bottom: 15px;
}

.feature-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Services Section Styles */
.services {
    padding: 100px 0;
    background: white;
}

.services-header {
    max-width: 800px;
    margin-bottom: 80px;
}

.services-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #202124;
    margin-bottom: 25px;
}

.services-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #FAFAFA;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    background: #D6E0C2;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    position: absolute;
    top: 30px;
    left: 30px;
}

.service-icon .icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #202124;
    margin-bottom: 15px;
    margin-top: 80px;
}

.service-description {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.testimonials-title-section {
    max-width: 600px;
}

.testimonials-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-title {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2;
    color: #202124;
}

.testimonials-navigation {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.nav-btn .arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(1000%) hue-rotate(60deg) brightness(0.1) contrast(1);
}

.nav-btn:hover {
    background: #D6E0C2;
}

.nav-btn.disabled {
    background: #1C2C07;
}

.nav-btn.disabled .arrow-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1) contrast(1);
}

.testimonials-container {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 350px;
    background: #FAFAFA;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    background: #F9FBF4;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.rating .star {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.testimonial-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #202124;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    flex: 1;
}

.client-name {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #202124;
    margin-bottom: 5px;
}

    .client-title {
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #666;
    }

    /* Contact Us Section Styles */
    .contact {
        padding: 100px 0;
        background: #FAFAFA;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }

    .contact-info {
        max-width: 500px;
    }

    .contact-title {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        font-size: 42px;
        line-height: 1.2;
        color: #202124;
        margin-bottom: 25px;
    }

    .contact-description {
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.6;
        color: #202124;
        margin-bottom: 40px;
    }

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

    .contact-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-icon .icon {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .contact-text {
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #202124;
        line-height: 1.4;
    }

    .contact-form {
        max-width: 500px;
    }

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

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
    }

    .form-row .form-group {
        flex: 1;
        margin-bottom: 0;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 15px 20px;
        border: none;
        border-radius: 25px;
        background: white;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #20212480;
        transition: all 0.3s ease;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: #20212480;
        opacity: 1;
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(25, 46, 4, 0.2);
    }

    .form-textarea {
        resize: vertical;
        min-height: 120px;
    }

    .btn-contact {
        background: #192E04;
        color: #FFFFFF;
        border-color: #192E04;
        width: 100%;
        padding: 18px 30px;
        font-size: 18px;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-contact:hover {
        background: #1C2C07;
        border-color: #1C2C07;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(25, 46, 4, 0.3);
    }

    /* Footer Styles */
    .footer {
        background: #000000;
        padding: 60px 0 30px;
        border-top: 1px solid #333;
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

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

    .footer-nav {
        margin-bottom: 40px;
    }

    .footer-nav-list {
        display: flex;
        justify-content: center;
        list-style: none;
        gap: 40px;
        margin: 0;
        padding: 0;
    }

    .footer-nav-link {
        color: #FFFFFF;
        text-decoration: none;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .footer-nav-link:hover {
        color: #D6E0C2;
    }

    .footer-copyright {
        color: #FFFFFF;
        font-family: 'Gilroy', sans-serif;
        font-weight: 400;
        font-size: 14px;
        opacity: 0.8;
    }

    /* Section Title Styles */
    .section-title {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        font-size: 36px;
        text-align: center;
        margin-bottom: 40px;
        color: #333;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .testimonials-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .testimonials-navigation {
        justify-content: center;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 25px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-nav-list {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 12px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
}

/* Language Toggle Animation */
.lang-btn {
    transition: all 0.3s ease;
}

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

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