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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

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

.logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.company-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: #1a5f1a;
    letter-spacing: -0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a5f1a;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, #f8f9fa, #e8f5e8);
    color: #1a5f1a;
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section Slider Arrows */
.hero {
    position: relative;
    padding: 0px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-50%) scale(1.1);
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 20px !important;
    color: white !important;
    line-height: 1 !important;
    opacity: 1 !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-prev:before {
    content: '\f053' !important;
}

.slick-next:before {
    content: '\f054' !important;
}

/* Slick Dots */
.slick-dots {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 12px !important;
    z-index: 999 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.slick-dots li {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
}

.slick-dots li button {
    width: 16px !important;
    height: 16px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    text-indent: -9999px !important;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background: white !important;
    border-color: white !important;
    transform: scale(1.3) !important;
}

.slick-dots li button:before {
    display: none !important;
}

/* Hero Section - Slick Slider */




/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d7d2d, #66BB6A);
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: #1a5f1a;
    border: 2px solid #1a5f1a;
}

.btn-outline:hover {
    background: #1a5f1a;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation CTA Button */
.nav-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}
.stats-section {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d7d2d 50%, #4CAF50 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.stats-section .stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-section .stat {
    position: relative;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-section .stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stats-section .stat-icon {
    background: rgba(144, 238, 144, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #90EE90;
    transition: all 0.3s ease;
    border: 2px solid rgba(144, 238, 144, 0.3);
}

.stats-section .stat:hover .stat-icon {
    background: rgba(144, 238, 144, 0.3);
    transform: scale(1.1);
    border-color: rgba(144, 238, 144, 0.5);
}

.stats-section .stat h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #90EE90;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-section .stat p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Remove old hero-stats styles */


/* Section Styles */
section {
    margin: 0;
    display: block;
    padding: 100px 0;
}



.stats-section {
    padding: 80px 0;
}

.about {
    padding: 100px 0;
}

.services {
    padding: 100px 0;
}

.industry {
    padding: 100px 0;
}

.why-choose-us {
    padding: 100px 0;
}

.process-overview {
    padding: 100px 0;
}

.cta {
    padding: 100px 0;
}

.contact {
    padding: 100px 0;
}

.footer {
    padding: 80px 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a5f1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    position: relative;
    padding: 120px 0;
    margin-top: 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(144, 238, 144, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Section Header */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.1), rgba(76, 175, 80, 0.1));
    color: #1a5f1a;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 95, 26, 0.2);
    backdrop-filter: blur(10px);
}

.section-badge i {
    font-size: 0.8rem;
}

.gradient-text {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50, #90EE90);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Hero Section */
.about-hero {
    margin-bottom: 80px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.about-highlights {
    display: grid;
    gap: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.highlight-text h5 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* About Hero Visual */
.about-hero-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-image-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.about-img-large {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.4);
    backdrop-filter: blur(10px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a5f1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: -30px;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Enhanced Stats Section */
.about-stats-enhanced {
    margin-bottom: 80px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50, #90EE90);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-card .stat-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.stat-content .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a5f1a;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-content .stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-content .stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Feature Cards Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.featured {
    border: 2px solid #4CAF50;
    transform: scale(1.02);
}

.feature-card.featured::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

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

.feature-card .feature-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card.featured .feature-badge {
    background: linear-gradient(135deg, #4CAF50, #90EE90);
}

.feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-benefits i {
    color: #4CAF50;
    font-size: 0.8rem;
    width: 16px;
}

/* About Gallery */
.about-gallery {
    margin-top: 60px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.8), rgba(76, 175, 80, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-content i {
    font-size: 2rem;
    opacity: 0.8;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.feature-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.4);
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-card .stat-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.stat-info .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f1a;
    margin-bottom: 5px;
}

.stat-info .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    background: #fff;
    position: relative;
    padding: 100px 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(26, 95, 26, 0.02) 50%, transparent 51%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card.featured {
    border: 2px solid #4CAF50;
    transform: scale(1.02);
}

.service-card.featured::before {
    transform: scaleX(1);
}

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

.service-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.service-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.service-features i {
    color: #4CAF50;
    font-size: 0.9rem;
    width: 16px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5f1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    margin-top: auto;
}

.service-btn:hover {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Remove old services-grid styles and owl carousel styles */

/* Industries Section */
.industries {
    background-color: #ffffff;
    position: relative;
    padding: 100px 0;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.industry-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.02), rgba(76, 175, 80, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.industry-card h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.industry-card > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.industry-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.industry-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 95, 26, 0.1);
    color: #1a5f1a;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Technology Section */
.technology {
    background: linear-gradient(135deg, #f0f9f0 0%, #f0f9f0 100%);
    position: relative;
    padding: 100px 0;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 26, 0.02) 50%, transparent 100%);
}

.technology-content {
    position: relative;
    z-index: 2;
}

.tech-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 250px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.step-content {
    padding-top: 20px;
}

.step-icon {
    background: rgba(26, 95, 26, 0.1);
    color: #1a5f1a;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    transform: scale(1.1);
}

.step-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-arrow {
    color: #4CAF50;
    font-size: 1.5rem;
    opacity: 0.7;
}

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

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(26, 95, 26, 0.4);
}

.benefit-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
.why-choose-us {
    background: #fff;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 26, 0.02) 50%, transparent 100%);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transition: width 0.3s ease;
}

.why-choose-item:hover::before {
    width: 100%;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.why-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.why-choose-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Overview Section */
.process-overview {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    position: relative;
}

.process-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,17.5 50,42.5 30,55 10,42.5 10,17.5" fill="none" stroke="%23e8f5e8" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>') repeat;
    opacity: 0.4;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    background: rgba(26, 95, 26, 0.1);
    color: #1a5f1a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    transform: scale(1.1);
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
}

.step-features i {
    color: #4CAF50;
    font-size: 0.8rem;
    width: 16px;
}

.process-arrow {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    color: #4CAF50;
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Technology Process Section */
.technology-process {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.technology-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(26, 95, 26, 0.02) 50%, transparent 51%);
}

.tech-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.flow-step {
    text-align: center;
    max-width: 200px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.flow-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(26, 95, 26, 0.4);
}

.flow-step h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #1a5f1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.flow-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-arrow {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.7;
}

/* Quality Assurance Section */
.quality-assurance {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.quality-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.qa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.qa-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.qa-text > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.qa-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.qa-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
}

.qa-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qa-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.qa-content-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.qa-content-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.qa-visual {
    position: relative;
}

.qa-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.qa-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.qa-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.qa-stats {
    display: flex;
    gap: 20px;
}

.qa-stat {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.qa-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.qa-stat .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5f1a;
    margin-bottom: 5px;
}

.qa-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Project Timeline Section */
.project-timeline {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.project-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 26, 0.02) 50%, transparent 100%);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.timeline-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-duration {
    background: rgba(26, 95, 26, 0.1);
    color: #1a5f1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.timeline-phases {
    list-style: none;
    text-align: left;
}

.timeline-phases li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(26, 95, 26, 0.1);
}

.timeline-phases li:last-child {
    border-bottom: none;
}

.timeline-phases li::before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d7d2d 50%, #4CAF50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1920&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text {
    max-width: 800px;
}

.cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
    min-height: 600px;
}

@media (min-width: 769px) {
    .contact-content {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .contact-info {
        grid-column: 1;
    }
    
    .contact-form {
        grid-column: 2;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.contact-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(26, 95, 26, 0.4);
}

.contact-details h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
}

.form-container h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #1a5f1a;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    border-radius: 2px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(26, 95, 26, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    padding: 10px;
    background: white;
    color: #333;
}

/* Form Button */
.contact-form .btn {
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d7d2d 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo {
    filter: brightness(0) invert(1);
}

.footer-logo .company-name {
    color: white;
    font-size: 1.8rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.05rem;
    max-width: 400px;
    margin-bottom: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #90EE90;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item-footer i {
    color: #90EE90;
    width: 20px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #90EE90;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #90EE90;
    border-radius: 1px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #90EE90;
    padding-left: 10px;
}

.footer-section ul li a i {
    font-size: 0.8rem;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {

}
/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hero-text > p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.contact-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.contact-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.4);
}

/* Contact Information Section */
.contact-info-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(26, 95, 26, 0.02) 50%, transparent 51%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.contact-info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-details {
    margin-bottom: 25px;
    text-align: left;
}

.contact-info-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-info-details strong {
    color: #1a5f1a;
    font-weight: 600;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.contact-action-btn:hover {
    background: linear-gradient(135deg, #2d7d2d, #66BB6A);
    box-shadow: 0 8px 25px rgba(26, 95, 26, 0.4);
    transform: translateY(-2px);
}

.contact-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-form-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1rem;
}

.form-benefit i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.contact-testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #1a5f1a;
    font-weight: 600;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26, 95, 26, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    border-color: #4CAF50;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
    content: '\2713';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label a {
    color: #1a5f1a;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(26, 95, 26, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.form-note p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Leadership Section */
.leadership-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 26, 0.02) 50%, transparent 100%);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.leader-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.leader-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.8), rgba(76, 175, 80, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.leader-image:hover .leader-overlay {
    opacity: 1;
}

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

.leader-social .social-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-social .social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.leader-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1a5f1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.leader-title {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.leader-credentials {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.leader-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.leader-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

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

.leader-stat .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f1a;
    display: block;
    margin-bottom: 5px;
}

.leader-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(26, 95, 26, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 95, 26, 0.05);
}

.faq-question h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #1a5f1a;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #4CAF50;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .contact-image {
        height: 300px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-info h2 {
        font-size: 2rem;
    }
    
    .leader-card {
        padding: 30px 25px;
    }
    
    .leader-image {
        width: 120px;
        height: 120px;
    }
    
    .leader-stats {
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .contact-hero-text > p {
        font-size: 1rem;
    }
    
    .contact-highlights {
        gap: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-image {
        height: 250px;
    }
    
    .contact-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-form-info h2 {
        font-size: 1.8rem;
    }
    
    .form-benefits {
        gap: 12px;
    }
    
    .form-benefit {
        font-size: 0.9rem;
    }
    
    .contact-testimonial {
        padding: 20px;
    }
    
    .leader-card {
        padding: 25px 20px;
    }
    
    .leader-image {
        width: 100px;
        height: 100px;
    }
    
    .leader-info h4 {
        font-size: 1.3rem;
    }
    
    .leader-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .leader-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.95rem;
    }
}
@media (max-width: 1024px) {
    .qa-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tech-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .step-number {
        position: relative;
        margin-bottom: 20px;
    }
    
    .process-arrow {
        margin: 15px 0;
    }
    
    .tech-flow {
        gap: 15px;
    }
    
    .flow-step {
        max-width: 150px;
        padding: 20px 10px;
    }
    
    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .qa-features {
        gap: 20px;
    }
    
    .qa-feature {
        padding: 15px;
    }
    
    .qa-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .timeline-card {
        padding: 25px 20px;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .flow-step {
        max-width: 120px;
        padding: 15px 8px;
    }
    
    .flow-step h4 {
        font-size: 1rem;
    }
    
    .flow-step p {
        font-size: 0.8rem;
    }
    
    .qa-feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .qa-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-card {
        padding: 20px 15px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-duration {
        font-size: 1rem;
        padding: 6px 15px;
    }
}
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text h3 {
        font-size: 2.4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-hero-text h3 {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .about-img-large {
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-content .stat-number {
        font-size: 3rem;
    }
    
    .about-features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-header h3 {
        font-size: 1.8rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-hero-text h3 {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .about-img-large {
        height: 300px;
    }
    
    .about-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .stat-content .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-header h3 {
        font-size: 1.6rem;
    }
}
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h4 {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-container h3 {
        font-size: 1.6rem;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    

}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.8);
        margin-top: 10px;
    }
    

    
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-section .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-section .stat {
        padding: 25px 15px;
    }
    
    .stats-section .stat h3 {
        font-size: 3rem;
    }
    
    .stats-section .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-slider .owl-nav {
        display: none !important;
    }
    
    .service-card {
        margin: 0 10px;
        min-height: 450px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 30px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .features {
        gap: 25px;
    }
    
    .feature {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    

    
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-section .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-section .stat {
        padding: 20px 15px;
    }
    
    .stats-section .stat h3 {
        font-size: 2.8rem;
    }
    
    .stats-section .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .stats-section .stat p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .service-card {
        margin: 0 5px;
        min-height: 400px;
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services-slider .owl-nav {
        display: none !important;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text > p {
        font-size: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto 15px;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-container h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .form-group label {
        left: 15px;
        font-size: 0.9rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Team Section */
.team {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 26, 0.02) 50%, transparent 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.member-image {
    position: relative;
    margin-bottom: 25px;
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
    border-color: #1a5f1a;
}

.member-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1a5f1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 95, 26, 0.9), rgba(76, 175, 80, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    padding: 20px;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.gallery-content i {
    font-size: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-content i {
    transform: scale(1.2);
    opacity: 1;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d7d2d 50%, #4CAF50 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #90EE90;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

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

.about-hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: #1a5f1a;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.about-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Mission Vision Values */
.mission-vision {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(26, 95, 26, 0.02) 50%, transparent 51%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 95, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a5f1a, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mvv-card:hover::before {
    transform: scaleX(1);
}

.mvv-card.featured {
    border: 2px solid #4CAF50;
    transform: scale(1.02);
}

.mvv-card.featured::before {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(26, 95, 26, 0.3);
    transition: all 0.3s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(26, 95, 26, 0.4);
}

.mvv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #1a5f1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.values-list i {
    color: #4CAF50;
    font-size: 0.9rem;
    width: 16px;
}

/* Company Stats */
.company-stats {
    background: linear-gradient(135deg, #1a5f1a 0%, #2d7d2d 50%, #4CAF50 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1920&h=600&fit=crop&crop=center') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.company-stats .stats-grid {
    position: relative;
    z-index: 2;
}

.company-stats .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.company-stats .stat-icon {
    background: rgba(144, 238, 144, 0.2);
    color: #90EE90;
    border: 2px solid rgba(144, 238, 144, 0.3);
}

.company-stats .stat-card:hover .stat-icon {
    background: rgba(144, 238, 144, 0.3);
    border-color: rgba(144, 238, 144, 0.5);
}

.company-stats .stat-number {
    color: #90EE90;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.company-stats .stat-label {
    color: white;
}

.company-stats .stat-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Our Approach */
.our-approach {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f0 100%);
    padding: 100px 0;
    position: relative;
}

.our-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 95, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.approach-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #1a5f1a;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.approach-text > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
}

.approach-feature:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
    background: linear-gradient(135deg, #1a5f1a, #4CAF50);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(26, 95, 26, 0.3);
}

.feature-content h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a5f1a;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.approach-visual {
    position: relative;
}

.approach-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.approach-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.approach-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.approach-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(26, 95, 26, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.benefit-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}