/* Global Styles */
:root {
    --primary-color: #7cb342; /* Green from the logo */
    --secondary-color: #4d4d4d;
    --accent-color: #3a5f0b;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 0; /* Sharp edges instead of rounded corners */
    --section-spacing: 80px; /* Consistent section spacing */
    --content-spacing: 40px; /* Consistent content spacing */
}

/* Material Icons Sizing */
.material-symbols-outlined {
    font-size: 32px;
    font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    color: var(--secondary-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography updates for industrial feel */
p, li, a:not(.btn) {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, .section-title {
    text-transform: none;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}

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

/* Updated button style - Sharp edges */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Section styling - More consistent spacing */
.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 40px;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header Updates - More industrial */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

.logo-container {
    height: 50px;
    position: relative;
    transition: var(--transition);
}

.logo {
    height: 50px;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
}

.logo-white {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
}

header.scrolled .logo-container {
    height: 40px;
}

header.scrolled .logo {
    height: 40px;
}

header.scrolled .logo-white {
    opacity: 0;
}

header.scrolled .logo-dark {
    opacity: 1;
}

/* Updated navigation - Sharper, more consistent */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    padding-bottom: 4px;
}

header.scrolled nav ul li a {
    color: var(--secondary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Enhanced Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1002;
    padding: 4px;
    /* Ensure it stays on the right */
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    left: 4px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

header.scrolled .mobile-toggle span {
    background-color: var(--secondary-color);
}

.mobile-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-toggle span:nth-child(2) {
    top: 14px;
}

.mobile-toggle span:nth-child(3) {
    top: 22px;
}

/* Animated hamburger to X transformation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
    background-color: var(--primary-color);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
    background-color: var(--primary-color);
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Hero Section - Cleaner, more industrial */
.hero {
    height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for more contrast */
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover */
    z-index: 1;
    background-color: #000;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 15%; /* Left-aligned for consistency */
    transform: translateY(-50%);
    max-width: 700px;
    color: var(--white);
    z-index: 10;
    text-align: left; /* Left-aligned for consistency */
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solutions Section - Left aligned headers */
.solutions {
    background-color: var(--white);
    position: relative;
    padding: var(--section-spacing) 0;
}

.solutions-intro {
    text-align: left; /* Changed from center to left */
    max-width: 100%; /* Allow full width */
    margin: 0 0 50px; /* Changed margin to remove auto centering */
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title.solutions-title {
    text-align: left; /* Override centered title */
}

.section-title.solutions-title::after {
    left: 0; /* Align the underline to the left */
    transform: none; /* Remove centering transform */
}

/* Solutions Grid Layout */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual Solution Card */
.solution-item {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-color);
}

/* Solution Header */
.solution-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.solution-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Solution Content */
.solution-content {
    padding: 20px;
    background-color: var(--white);
}

.solution-description {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100px; /* Fixed height for text area */
    overflow: hidden;
}

/* Image Grid */
.solution-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.solution-image-wrapper {
    position: relative;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Fixed aspect ratio container */
.solution-image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.solution-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image without cropping */
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.solution-image-wrapper:hover .solution-image {
    transform: scale(1.05);
}

.solution-caption {
    padding: 8px 5px;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    background-color: var(--white);
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    min-height: 38px; /* Fixed height for captions */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Learn More Link */
.solution-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    text-align: right;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: var(--transition);
}

.solution-link span {
    margin-left: 6px;
    font-size: 16px;
    transition: var(--transition);
}

.solution-link:hover {
    color: var(--accent-color);
}

.solution-link:hover span {
    transform: translateX(5px);
}

/* Solutions CTA */
.solutions-cta {
    text-align: center;
    margin-top: 30px;
    background-color: var(--light-gray);
    padding: 40px;
    border-left: 5px solid var(--primary-color);
}

.solutions-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Partners Section - More compact vertical size */
.partners {
    background-color: var(--light-gray);
    position: relative;
    padding: 60px 0; /* Reduced padding */
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(124, 179, 66, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 100%); /* Angular shape */
    z-index: 1;
}

.partners::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(124, 179, 66, 0.1);
    clip-path: polygon(0 0, 100% 0, 0 100%); /* Angular shape */
    z-index: 1;
}

.partners-intro {
    display: flex;
    margin-bottom: 40px; /* Reduced margin */
    position: relative;
    z-index: 2;
}

.partners-intro-text {
    max-width: 800px;
}

.partners-intro-text p {
    margin-bottom: 10px; /* Reduced spacing */
    font-size: 0.9rem; /* Slightly smaller font */
}

/* Partners Carousel - More compact */
.partners-container {
    position: relative;
    overflow: visible;
    width: 100%;
    padding: 20px 0; /* Reduced padding */
    z-index: 2;
    margin-bottom: 20px;
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
    padding: 10px 0; /* Reduced padding */
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.partner-item {
    flex: 0 0 auto;
    width: 200px; /* Smaller width */
    height: 120px; /* Smaller height */
    background-color: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px; /* Reduced padding */
    margin: 0 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-100%);
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.partner-item:hover::before {
    transform: translateX(0);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px; /* Smaller images */
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* Pause animation on hover */
.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move exactly half the width to create seamless loop */
    }
}

/* About Section - Updated for consistency */
.about {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(124, 179, 66, 0.02),
        rgba(124, 179, 66, 0.02) 10px,
        rgba(124, 179, 66, 0.04) 10px,
        rgba(124, 179, 66, 0.04) 20px
    ); /* Industrial pattern */
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.about-image {
    grid-column: span 5;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    z-index: 1;
}

.about-text {
    grid-column: span 7;
    padding-top: 15px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    border-top: 3px solid var(--primary-color);
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section with Tabs */
.contact {
    background-color: var(--white);
    position: relative;
    padding: var(--section-spacing) 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(124, 179, 66, 0.05);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

.contact-tabs-container {
    position: relative;
    z-index: 2;
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-color);
}

.contact-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-tab {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    color: var(--secondary-color);
}

.contact-tab.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(124, 179, 66, 0.05);
}

.contact-tab:hover:not(.active) {
    background-color: rgba(0,0,0,0.03);
}

.contact-tab-content {
    display: none;
    padding: 40px;
}

.contact-tab-content.active {
    display: block;
}

/* Form Styling */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Calendar Styling */
.booking-intro {
    margin-bottom: 30px;
    text-align: center;
}

.calendar-container {
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-info {
    grid-column: span 4;
}

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

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

.footer-info p {
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-nav {
    grid-column: span 2;
}

.footer-nav h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: var(--white);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-nav ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    grid-column: span 4;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-icon {
    margin-right: 15px;
    min-width: 20px;
}

.contact-info-text {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .partners-intro {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        grid-column: span 12;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-info {
        grid-column: span 12;
        margin-bottom: 30px;
    }
    
    .footer-nav {
        grid-column: span 6;
    }
    
    .footer-contact {
        grid-column: span 12;
        margin-top: 30px;
    }
}

/* ===== MOBILE NAVIGATION STYLES ===== */
@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: block;
    }
    
    /* Logo adjustments for mobile */
    .logo-container {
        height: 45px;
    }
    
    .logo {
        height: 45px;
    }
    
    header.scrolled .logo-container {
        height: 35px;
    }
    
    header.scrolled .logo {
        height: 35px;
    }
    
    /* Hide desktop navigation and show mobile menu */
    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1001;
        padding: 80px 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        list-style: none;
        margin: 0;
    }
    
    /* Show mobile menu when active */
    nav ul.active {
        transform: translateY(0);
    }
    
    /* Mobile menu items */
    nav ul li {
        margin: 0;
        margin-left: 0; /* Override desktop margin */
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0s;
    }
    
    /* Animate menu items when menu is active */
    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animation delays */
    nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.15s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.2s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.25s; }
    nav ul.active li:nth-child(5) { transition-delay: 0.3s; }
    nav ul.active li:nth-child(6) { transition-delay: 0.35s; }
    
    /* Mobile menu links */
    nav ul li a {
        display: block;
        padding: 20px 30px;
        color: var(--secondary-color) !important;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 8px;
        margin: 5px 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-decoration: none;
    }
    
    nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(124, 179, 66, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    nav ul li a:hover {
        color: var(--primary-color) !important;
        background-color: rgba(124, 179, 66, 0.05);
        transform: translateX(10px);
    }
    
    nav ul li a:hover::before {
        left: 100%;
    }
    
    nav ul li a::after {
        width: 0;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
    
    nav ul li a:hover::after {
        width: 60%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-content {
        left: 5%;
        text-align: center;
        transform: translate(0, -50%);
    }
    
    /* ===== ABOUT SECTION MOBILE IMPROVEMENTS ===== */
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        display: block;
        gap: 0;
    }
    
    .about-image {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
        grid-column: unset;
    }
    
    .about-image img {
        width: 280px;
        height: auto;
        max-width: 90%;
        border: 3px solid var(--white);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .about-image::before {
        display: none;
    }
    
    .about-text {
        width: 100%;
        padding-top: 0;
        text-align: left;
        grid-column: unset;
    }
    
    .about-text .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .about-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        text-align: center;
        border-top: 3px solid var(--primary-color);
        background-color: var(--white);
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .stat-number {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 12px;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--secondary-color);
        font-weight: 500;
    }
    
    .solution-images {
        grid-template-columns: 1fr;
    }
    
    .solution-description {
        font-size: 0.85rem;
    }
    
    .contact-tabs {
        flex-direction: column;
    }
    
    .contact-tab {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .contact-tab-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .solution-header {
        padding: 15px;
    }
    
    .solution-title {
        font-size: 1.2rem;
    }
    
    .solution-content {
        padding: 15px;
    }
    
    .footer-nav {
        grid-column: span 12;
        margin-bottom: 20px;
    }
    
    /* Mobile navigation adjustments for small screens */
    nav ul li a {
        font-size: 1.1rem;
        padding: 18px 25px;
    }
    
    .mobile-toggle {
        width: 28px;
        height: 28px;
    }
    
    .mobile-toggle span {
        width: 20px;
        left: 4px;
    }
    
    /* About section extra small mobile adjustments */
    .about {
        padding: 30px 0;
    }
    
    .about-image img {
        width: 240px;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Accessibility Improvements */
:focus {
    outline: 2px dashed var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    header, 
    .hero,
    .partners,
    .contact,
    footer,
    .mobile-toggle,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
        margin: 20pt 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
    }
}

a{
    text-decoration: none;
}

.hero-video {
    transition: opacity 1s ease;
    opacity: 1;
}