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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(101, 163, 13, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(22, 101, 52, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    gap: 10px;
}

.nav-logo i {
    font-size: 1.8rem;
    animation: rocket-float 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #22c55e, #65a30d);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #22c55e;
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: linear-gradient(45deg, #22c55e, #65a30d);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.lang-toggle:hover {
    background: linear-gradient(45deg, #16a34a, #4d7c0f);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(101, 163, 13, 0.1) 50%, rgba(22, 101, 52, 0.1) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaf" patternUnits="userSpaceOnUse" width="20" height="20"><path d="M10 2c-4 0-8 4-8 8s4 8 8 8 8-4 8-8-4-8-8-8z" fill="rgba(34,197,94,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23leaf)"/></svg>'),
        radial-gradient(circle at center, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    color: #1a202c;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: #22c55e;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-icons i:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.floating-icons i:nth-child(4) { top: 70%; left: 20%; animation-delay: 3s; }
.floating-icons i:nth-child(5) { top: 40%; left: 90%; animation-delay: 4s; }
.floating-icons i:nth-child(6) { top: 80%; left: 50%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-8px) rotate(1deg); opacity: 0.5; }
    50% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
    75% { transform: translateY(8px) rotate(-1deg); opacity: 0.5; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #22c55e, #65a30d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.1); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn.primary {
    background: #22c55e;
    color: white;
}

.btn.primary:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn.secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn.secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    position: relative;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #d1fae5;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #22c55e, #65a30d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-card p {
    color: #4b5563;
    line-height: 1.6;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(45deg, #22c55e, #65a30d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.project-image i {
    font-size: 4rem;
    color: white;
    z-index: 2;
    position: relative;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.project-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags span {
    background: #f0fdf4;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background: #f8fafc;
}

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

.service-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

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

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #22c55e;
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #22c55e;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: white;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #22c55e;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Animations */
[data-aos] {
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

[data-aos="slide-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="slide-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .about-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .project-content,
    .service-item {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Problem & Solution Section */
.problem-solution {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(101, 163, 13, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.problem-card {
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 20px 40px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.problem-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.2), rgba(101, 163, 13, 0.2));
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.problem-icon i {
    font-size: 2.5rem;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    z-index: 2;
    position: relative;
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.problem-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.problem-impact {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.impact-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.impact-number {
    font-size: 1.5rem;
    color: #22c55e;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.impact-unit {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(34, 197, 94, 0.03) 100px,
            rgba(34, 197, 94, 0.03) 102px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(101, 163, 13, 0.03) 100px,
            rgba(101, 163, 13, 0.03) 102px
        );
    pointer-events: none;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.team-member {
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
    animation: scan-line 4s ease-in-out infinite;
}

@keyframes scan-line {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.team-member:hover {
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.2), rgba(101, 163, 13, 0.2));
    border: 3px solid rgba(34, 197, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-avatar i {
    font-size: 2.5rem;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.member-role {
    font-size: 1rem;
    color: #65a30d;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p {
    color: #4b5563;
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(101, 163, 13, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.methodology-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #22c55e, #65a30d, #84cc16, #a3e635);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.method-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.method-item:nth-child(odd) {
    flex-direction: row;
}

.method-item:nth-child(even) {
    flex-direction: row-reverse;
}

.method-step {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #22c55e, #65a30d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    z-index: 3;
    animation: method-pulse 3s ease-in-out infinite alternate;
}

@keyframes method-pulse {
    from { 
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
        transform: translateX(-50%) scale(1);
    }
    to { 
        box-shadow: 0 0 30px rgba(101, 163, 13, 0.8);
        transform: translateX(-50%) scale(1.05);
    }
}

.method-content {
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    margin: 0 2.5%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transform: translateY(-50%) rotate(45deg);
}

.method-item:nth-child(odd) .method-content::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

.method-item:nth-child(even) .method-content::before {
    left: -11px;
    border-right: none;
    border-top: none;
}

.method-content:hover {
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.method-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.method-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.method-icons i {
    font-size: 1.5rem;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: method-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.5s);
}

.method-icons i:nth-child(1) { --i: 0; }
.method-icons i:nth-child(2) { --i: 1; }
.method-icons i:nth-child(3) { --i: 2; }

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

/* Glow Pulse Animation */
@keyframes glow-pulse {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
}

/* Agricultural theme updates */
.about {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.projects {
    background: linear-gradient(135deg, #f0fdf4 0%, #f7fee7 100%);
}

.services {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

/* Update section headers for agricultural theme */
.section-header h2 {
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.section-header p {
    color: #4b5563;
}

/* Update cards for agricultural theme */
.about-card,
.project-card,
.service-item,
.contact-form {
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #2d3748;
}

.about-card:hover,
.project-card:hover,
.service-item:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.1);
}

.card-icon {
    background: linear-gradient(45deg, #22c55e, #65a30d);
}

.about-card h3,
.project-card h3,
.service-item h3 {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Update buttons */
.btn.primary {
    background: linear-gradient(45deg, #22c55e, #65a30d);
    border: none;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.btn.primary:hover {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn.secondary {
    border: 2px solid #22c55e;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.btn.secondary:hover {
    background: linear-gradient(45deg, #22c55e, #65a30d);
    border-color: #65a30d;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

/* Update form elements */
.form-group input,
.form-group textarea {
    background: white;
    border: 2px solid rgba(34, 197, 94, 0.2);
    color: #2d3748;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.form-group label {
    color: #22c55e;
}

/* Contact items update */
.contact-item {
    background: white;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-item:hover {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(101, 163, 13, 0.1));
    border-color: rgba(34, 197, 94, 0.4);
}

.contact-item i {
    color: #22c55e;
}

.contact-item h3 {
    color: #22c55e;
}

.contact-item p {
    color: #4b5563;
}

/* Responsive updates for timeline */
@media (max-width: 768px) {
    .methodology-timeline::before {
        left: 30px;
    }
    
    .method-item {
        flex-direction: row !important;
    }
    
    .method-step {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .method-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .method-content::before {
        left: -11px !important;
        border-right: none !important;
        border-top: none !important;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
    }
    
    .member-avatar i {
        font-size: 2rem;
    }
    
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #22c55e 0%, #65a30d 100%);
    border-radius: 6px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #16a34a 0%, #4d7c0f 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #22c55e #f1f5f9;
}

/* Landing Page Styles */
.landing-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #22c55e 0%, #65a30d 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.landing-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.eu-funding-text {
    margin-bottom: 3rem;
}

.eu-funding-text p {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-flags {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flag-container {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.flag-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.flag-container svg, .flag-container img {
    display: block;
    width: 300px;
    height: 200px;
    object-fit: contain;
}

.custom-logo {
    width: 300px;
    height: 200px;
    object-fit: contain;
}

.enter-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
}

.enter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.enter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.enter-button:hover::before {
    left: 100%;
}

/* EU Funding Header Section */
.eu-funding-header {
    background: #f7fafc;
    padding: 1rem 0;
    border-bottom: 2px solid #e2e8f0;
    min-height: 15vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.eu-funding-content {
    text-align: center;
}

.eu-funding-header-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.eu-funding-header-subtext {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.eu-funding-header-flags {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.eu-flag-small, .bg-flag-small {
    width: 150px;
    height: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.header-logo-img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    background: white;
}

/* EU Funding Bottom Section */
.eu-funding-section {
    background: #f7fafc;
    padding: 3rem 0;
    border-top: 2px solid #e2e8f0;
}

.eu-funding-flags-bottom {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.eu-flag-bottom, .bg-flag-bottom {
    width: 200px;
    height: 133px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.bottom-logo {
    width: 200px;
    height: 133px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    background: white;
}

.eu-funding-text-bottom {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.eu-funding-first-text {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.eu-funding-main-text {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.eu-funding-support-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 250, 251, 0.95));
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.15);
}

.video-card h3 {
    font-size: 1.4rem;
    color: #166534;
    margin-bottom: 20px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f3f4f6;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: contain;
    background: #000;
}

/* Video controls styling */
.video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1.2);
}

/* Responsive Design for New Elements */
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .landing-page .eu-funding-text p {
        font-size: 1.2rem;
    }
    
    .landing-flags {
        gap: 1.5rem;
    }
    
    .flag-container svg, .flag-container img,
    .custom-logo {
        width: 200px;
        height: 133px;
    }
    
    .enter-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .eu-funding-header {
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .eu-funding-header-text {
        font-size: 0.9rem;
    }
    
    .eu-funding-header-flags {
        gap: 1rem;
    }
    
    .eu-flag-small, .bg-flag-small, .header-logo-img {
        width: 100px;
        height: 67px;
    }
    
    .eu-funding-flags-bottom {
        gap: 1.5rem;
    }
    
    .eu-flag-bottom, .bg-flag-bottom, .bottom-logo {
        width: 150px;
        height: 100px;
    }
    
    .eu-funding-main-text {
        font-size: 1.1rem;
    }
    
    .eu-funding-support-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 60px 0;
    }
    
    .video-card h3 {
        font-size: 1.2rem;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .landing-page .eu-funding-text p {
        font-size: 1rem;
    }
    
    .flag-container svg, .flag-container img,
    .custom-logo {
        width: 150px;
        height: 100px;
    }
    
    .eu-funding-header-text {
        font-size: 0.8rem;
    }
    
    .eu-flag-small, .bg-flag-small, .header-logo-img {
        width: 80px;
        height: 53px;
    }
    
    .eu-flag-bottom, .bg-flag-bottom, .bottom-logo {
        width: 120px;
        height: 80px;
    }
}