/* About Page Specific Styles */
:root {
    --primary-green: #568223;
    --light-green: #dcedc8;
    --dark-green: #689f38;
    --accent-green: #4caf50;
    --gradient-green: linear-gradient(135deg, #568223 0%, #689f38 50%, #4caf50 100%);
    --gradient-light: linear-gradient(135deg, #dcedc8 0%, #c8e6c9 50%, #a5d6a7 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #212121;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(86, 130, 35, 0.1);
    --shadow-medium: 0 12px 40px rgba(86, 130, 35, 0.15);
    --shadow-heavy: 0 20px 60px rgba(86, 130, 35, 0.2);
}

/* About Page - Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-green);
    opacity: 0.05;
    animation: float 20s ease-in-out infinite;
}

.bg-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.bg-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Hero Section - Enhanced with Design Elements */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(86, 130, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(104, 159, 56, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(76, 175, 80, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23568223' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: pattern-move 60s linear infinite;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(86, 130, 35, 0.05) 0%, transparent 70%);
}

/* Enhanced Particle System */
.hero-particles {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 15s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(86, 130, 35, 0.3);
    background: linear-gradient(45deg, rgba(86, 130, 35, 0.2), rgba(104, 159, 56, 0.1));
}

.particle:nth-child(1) {
    width: 32px;
    height: 32px;
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(45deg, var(--primary-green), rgba(104, 159, 56, 0.6));
}

.particle:nth-child(2) {
    width: 28px;
    height: 28px;
    top: 25%;
    right: 18%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(104, 159, 56, 0.8), var(--primary-green));
}

.particle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 75%;
    animation-delay: 6s;
    background: linear-gradient(45deg, var(--primary-green), rgba(76, 175, 80, 0.7));
}

.particle:nth-child(4) {
    width: 30px;
    height: 30px;
    bottom: 18%;
    left: 12%;
    animation-delay: 9s;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.8), var(--primary-green));
}

.particle:nth-child(5) {
    width: 24px;
    height: 24px;
    top: 85%;
    left: 52%;
    animation-delay: 12s;
    background: linear-gradient(45deg, var(--primary-green), rgba(104, 159, 56, 0.5));
}

.particle:nth-child(6) {
    width: 36px;
    height: 36px;
    top: 58%;
    right: 8%;
    animation-delay: 1.5s;
    background: linear-gradient(45deg, rgba(104, 159, 56, 0.7), var(--primary-green));
}

.particle:nth-child(7) {
    width: 26px;
    height: 26px;
    bottom: 35%;
    right: 42%;
    animation-delay: 4.5s;
    background: linear-gradient(45deg, var(--primary-green), rgba(76, 175, 80, 0.6));
}

.particle:nth-child(8) {
    width: 34px;
    height: 34px;
    top: 72%;
    left: 35%;
    animation-delay: 7.5s;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.8), var(--primary-green));
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-30px) translateX(15px) rotate(90deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-15px) translateX(-20px) rotate(180deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Enhanced Floating Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.1), rgba(104, 159, 56, 0.05));
    animation: float-shape 20s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(86, 130, 35, 0.1);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.15), rgba(104, 159, 56, 0.08));
}

.shape-2 {
    width: 140px;
    height: 140px;
    top: 65%;
    right: 20%;
    animation-delay: 8s;
    background: linear-gradient(135deg, rgba(104, 159, 56, 0.12), rgba(86, 130, 35, 0.06));
}

.shape-3 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 25%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(86, 130, 35, 0.05));
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 35%;
    right: 35%;
    animation-delay: 12s;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.08), rgba(104, 159, 56, 0.04));
}

.shape-5 {
    width: 150px;
    height: 150px;
    bottom: 40%;
    right: 5%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(104, 159, 56, 0.1), rgba(76, 175, 80, 0.06));
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-20px) translateX(-30px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }

    75% {
        transform: translateY(30px) translateX(15px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes pattern-move {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    animation: slideInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.1), rgba(104, 159, 56, 0.05));
    border: 1px solid rgba(86, 130, 35, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(86, 130, 35, 0.1);
    animation: fadeInScale 0.8s ease-out 0.3s both;
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(86, 130, 35, 0.3);
}

.badge-icon i {
    color: white;
    font-size: 14px;
}

.hero-badge span {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-gray);
    animation: slideInUp 1.5s ease-out 1.5s both;
    word-wrap: break-word;
    hyphens: auto;
}

.title-line {
    display: block;
    transition: all 0.3s ease;
}

.title-line:hover {
    transform: translateX(10px);
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.title-line.highlight:hover::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.9s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    text-decoration: none;
}

.cta-button.primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-green);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 600;
}

.button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideInUp 1s ease-out 1.1s both;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(86, 130, 35, 0.15);
    border: 2px solid rgba(86, 130, 35, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.1), rgba(104, 159, 56, 0.05));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.stat-circle:hover::before {
    transform: scale(1);
}

.stat-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(86, 130, 35, 0.25);
    border-color: rgba(86, 130, 35, 0.3);
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-green);
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.8s both;
    position: relative;
    z-index: 4;
}

.hero-image {
    width: 500px;
    height: 500px;
    position: relative;
    animation: fadeInScale 1.2s ease-out 0.6s both;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(86, 130, 35, 0.1);
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 12px 40px rgba(86, 130, 35, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    transition: all 0.3s ease;
    animation: card-entrance 0.8s ease-out both;
    z-index: 3;
}

.floating-card.animated {
    animation: float-card 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(86, 130, 35, 0.25);
    border-color: rgba(86, 130, 35, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(86, 130, 35, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.floating-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(86, 130, 35, 0.4);
}

.floating-card:hover .card-icon::before {
    transform: translateX(100%);
}

.floating-card i {
    color: white;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    flex: 1;
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    z-index: 3;
}

.card-2 {
    top: 35%;
    right: 10%;
    animation-delay: 0.3s;
    z-index: 2;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 0.6s;
    z-index: 1;
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
        opacity: 0.95;
    }
}

/* Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Features Section */
.features-section {
    background: var(--light-gray);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dcedc8" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    text-align: center;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.feature-metric {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 15px;
    margin-top: 20px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* About Section - New Card Design */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.about-section::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="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23d4e6d4" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: -1;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(86, 130, 35, 0.25);
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* About Cards */
.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(86, 130, 35, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(86, 130, 35, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(86, 130, 35, 0.15);
}

.about-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(86, 130, 35, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(86, 130, 35, 0.3);
}

.about-card .card-icon i {
    font-size: 32px;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.about-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.card-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.card-stat .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* About Stats Section */
.about-stats-section {
    margin-top: 60px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(86, 130, 35, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(86, 130, 35, 0.08);
    min-width: 200px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(86, 130, 35, 0.15);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(86, 130, 35, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(86, 130, 35, 0.3);
}

.stat-box .stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: block;
}

.stat-box .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    display: block;
}

/* Background circles for entire About section */
.about-section {
    position: relative;
    overflow: hidden;
}

/* Left side circles - repositioned to avoid overlap */
.about-section .bg-circle-left-1 {
    content: '';
    position: absolute;
    top: 10%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.25) 0%, rgba(104, 159, 56, 0.15) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.about-section .bg-circle-left-2 {
    content: '';
    position: absolute;
    top: 70%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.3) 0%, rgba(104, 159, 56, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite reverse;
}

.about-section .bg-circle-left-3 {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.2) 0%, rgba(104, 159, 56, 0.12) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 10s ease-in-out infinite;
}

.about-section .bg-circle-left-4 {
    content: '';
    position: absolute;
    top: 45%;
    left: 12%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.35) 0%, rgba(104, 159, 56, 0.25) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 7s ease-in-out infinite reverse;
}

/* Right side circles - repositioned to avoid overlap */
.about-highlights .bg-circle-1 {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.28) 0%, rgba(104, 159, 56, 0.18) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.about-highlights .bg-circle-2 {
    content: '';
    position: absolute;
    top: 60%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.32) 0%, rgba(104, 159, 56, 0.22) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.about-highlights .bg-circle-3 {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.22) 0%, rgba(104, 159, 56, 0.14) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 7s ease-in-out infinite;
}

.about-highlights .bg-circle-4 {
    content: '';
    position: absolute;
    top: 80%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.4) 0%, rgba(104, 159, 56, 0.3) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 5s ease-in-out infinite reverse;
}

.about-highlights .bg-circle-5 {
    content: '';
    position: absolute;
    top: 45%;
    right: 15%;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.26) 0%, rgba(104, 159, 56, 0.16) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 9s ease-in-out infinite;
}

/* Center area circles - repositioned to avoid overlap */
.about-section .bg-circle-center-1 {
    content: '';
    position: absolute;
    top: 25%;
    left: 48%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.3) 0%, rgba(104, 159, 56, 0.2) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.about-section .bg-circle-center-2 {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 52%;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.24) 0%, rgba(104, 159, 56, 0.15) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

/* Responsive design - hide some circles on small devices */
@media (max-width: 768px) {

    /* Hide some left side circles on mobile */
    .about-section .bg-circle-left-2,
    .about-section .bg-circle-left-4 {
        display: none;
    }

    /* Hide some right side circles on mobile */
    .about-highlights .bg-circle-2,
    .about-highlights .bg-circle-4,
    .about-highlights .bg-circle-5 {
        display: none;
    }

    /* Hide center circles on mobile */
    .about-section .bg-circle-center-1,
    .about-section .bg-circle-center-2 {
        display: none;
    }

    /* Reposition remaining circles for better mobile layout */
    .about-section .bg-circle-left-1 {
        top: 15%;
        left: 5%;
        width: 60px;
        height: 60px;
    }

    .about-section .bg-circle-left-3 {
        bottom: 15%;
        left: 10%;
        width: 70px;
        height: 70px;
    }

    .about-highlights .bg-circle-1 {
        top: 20%;
        right: 5%;
        width: 50px;
        height: 50px;
    }

    .about-highlights .bg-circle-3 {
        bottom: 25%;
        right: 10%;
        width: 60px;
        height: 60px;
    }
}

/* Extra small devices - hide even more circles */
@media (max-width: 576px) {

    /* Hide more circles on very small screens */
    .about-section .bg-circle-left-3 {
        display: none;
    }

    .about-highlights .bg-circle-3 {
        display: none;
    }

    /* Keep only essential circles */
    .about-section .bg-circle-left-1 {
        top: 20%;
        left: 8%;
        width: 45px;
        height: 45px;
    }

    .about-highlights .bg-circle-1 {
        top: 25%;
        right: 8%;
        width: 40px;
        height: 40px;
    }
}

/* Services Section - New Background Design */
.services-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-section::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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(86, 130, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(86, 130, 35, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.02;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.service-features i {
    color: var(--primary-green);
    font-size: 14px;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--dark-green);
}

/* Impact Section - Clean Background */
.impact-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

@keyframes rotateHexagons {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.impact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(5deg);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: block;
}

.impact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Testimonials Section - New Background Design */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::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="circles" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="8" fill="%23568a23" opacity="0.1"/><circle cx="10" cy="10" r="4" fill="%23568a23" opacity="0.15"/><circle cx="50" cy="50" r="6" fill="%23568a23" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    opacity: 0.8;
    z-index: -1;
    animation: floatCircles 15s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 25% 25%, rgba(86, 130, 35, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(86, 130, 35, 0.06) 0%, transparent 50%);
    z-index: -1;
}

@keyframes floatCircles {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 0.02;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-green);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 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>');
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer - Enhanced Design */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(86, 130, 35, 0.08) 0%, rgba(86, 130, 35, 0.03) 100%);
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 40px;
    position: relative;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(86, 130, 35, 0.3);
    animation: none !important;
    transition: none !important;
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 1px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-logo img {
        height: 70px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo img {
        height: 60px;
        margin: 0 auto 20px;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive Font Sizes - Updated for all devices */
@media (max-width: 1200px) {
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
    }

    .hero-image {
        margin-top: 30px;
    }

    .floating-card {
        padding: 15px 20px;
        font-size: 14px;
        min-width: 150px;
    }

    .floating-card.animated {
        animation: none;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .floating-card i {
        font-size: 18px;
    }

    .floating-card span {
        font-size: 13px;
    }

    .card-1 {
        top: 10%;
        left: 10%;
    }

    .card-2 {
        top: 50%;
        right: 10%;
    }

    .card-3 {
        bottom: 20%;
        left: 20%;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-logo img {
        height: 40px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(1.8rem, 4.2vw, 2.2rem);
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.2;
    }

    .hero-image {
        margin-top: 20px;
    }

    .floating-card {
        padding: 12px 15px;
        font-size: 12px;
        min-width: 120px;
    }

    .floating-card.animated {
        animation: none;
    }

    .floating-card span {
        font-size: 11px;
    }
}
