
        /* Global Styles */
        :root {
            --primary-color: #4CAF50;
            --secondary-color: #2E7D32;
            --accent-color: #8BC34A;
            --light-color: #F1F8E9;
            --dark-color: #1B5E20;
            --text-color: #333;
            --white: #fff;
            --gray: #f5f5f5;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary-color);
        }

        ul {
            list-style-position: inside;
            margin-bottom: 1rem;
        }

        li {
            margin-bottom: 0.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            text-align: center;
        }

        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

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

        .section {
            padding: 5rem 0;
        }

        .section-gray {
            background-color: var(--gray);
        }

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

        .text-primary {
            color: var(--primary-color);
        }

        .mb-3 {
            margin-bottom: 1.5rem;
        }

        .mt-3 {
            margin-top: 1.5rem;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(241, 248, 233, 0.9); /* Light green with transparency */
            backdrop-filter: blur(10px);
            box-shadow: none;
            z-index: 1000;
            transition: var(--transition);
        }

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

        header.sticky .nav-menu a {
            color: var(--dark-color);
        }

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

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

        .logo img {
            height: 100px;
            width: 100px;
            margin-right: 0.5rem;
        }

        /* .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
        }

        .logo-text span {
            color: var(--primary-color);
        } */

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            list-style: none;
            margin-left: 2rem;
            margin-top: 5px;
        }

        .nav-menu a {
            color: #1a472a;  /* Dark green color */
            font-weight: 600;
            position: relative;
        }

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

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

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background: var(--dark-color);
            margin: 5px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/large-green-rice-field-with-green-rice-plants-rows.jpg') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
            justify-content: center;
            text-align:justify;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }


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

        .service-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        /* Impact Section */
        .impact-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .impact-item {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            flex: 1 1 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .impact-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

     /* Innovation Section Styles */
.innovation-section {
    position: relative;
    background: radial-gradient(ellipse at center, #f5f7fa 0%, #e4e8ed 100%);
    padding: 8rem 2rem;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.tech-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tech Orb Styles */
.tech-orb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ai-orb { animation-delay: 0s; }
.iot-orb { animation-delay: 0.5s; }
.blockchain-orb { animation-delay: 1s; }
.bigdata-orb { animation-delay: 1.5s; }
.ecommerce-orb { animation-delay: 2s; }

.orb-core {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
                rgba(255,255,255,0.8) 0%, 
                rgba(255,255,255,0.4) 70%);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.orb-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Orb specific styles */
.ai-orb .orb-glow { background: radial-gradient(circle at center, rgba(76, 175, 80, 0.4) 0%, transparent 70%); }
.iot-orb .orb-glow { background: radial-gradient(circle at center, rgba(33, 150, 243, 0.4) 0%, transparent 70%); }
.blockchain-orb .orb-glow { background: radial-gradient(circle at center, rgba(121, 85, 232, 0.4) 0%, transparent 70%); }
.bigdata-orb .orb-glow { background: radial-gradient(circle at center, rgba(255, 152, 0, 0.4) 0%, transparent 70%); }
.ecommerce-orb .orb-glow { background: radial-gradient(circle at center, rgba(233, 30, 99, 0.4) 0%, transparent 70%); }

.orb-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #2c3e50;
    padding: 2rem;
}

.orb-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.ai-orb i { color: #4CAF50; }
.iot-orb i { color: #2196F3; }
.blockchain-orb i { color: #7955E8; }
.bigdata-orb i { color: #FF9800; }
.ecommerce-orb i { color: #E91E63; }

.orb-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.orb-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.orb-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.5);
    animation: pulse 2s infinite ease-in-out;
}

.orb-dots .dot:nth-child(1) { animation-delay: 0s; }
.orb-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.orb-dots .dot:nth-child(3) { animation-delay: 0.6s; }

.orb-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 0 10px currentColor;
    transition: all 0.5s ease;
}

.ai-orb .orb-ring { color: #4CAF50; }
.iot-orb .orb-ring { color: #2196F3; }
.blockchain-orb .orb-ring { color: #7955E8; }
.bigdata-orb .orb-ring { color: #FF9800; }
.ecommerce-orb .orb-ring { color: #E91E63; }

/* Hover Effects */
.tech-orb:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.tech-orb:hover .orb-glow {
    opacity: 1;
}

.tech-orb:hover .orb-content i {
    transform: rotate(15deg) scale(1.2);
}

.tech-orb:hover .orb-ring {
    border-color: currentColor;
    box-shadow: 0 0 20px currentColor;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 55%;
    left: 50%;
    right: 50%;
    width: 100%;
    height: 80%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.line {
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 8s linear forwards infinite;
    stroke-linecap: round;
}

.line-1 {
    stroke: rgba(76, 175, 80, 0.3);
    animation-delay: 0.5s;
}

.line-2 {
    stroke: rgba(33, 150, 243, 0.3);
    animation-delay: 1s;
}

.line-3 {
    stroke: rgba(121, 85, 232, 0.3);
    animation-delay: 1.5s;
}

.line-4 {
    stroke: rgba(255, 152, 0, 0.3);
    animation-delay: 2s;
}

.line-5 {
    stroke: rgba(233, 30, 99, 0.3);
    animation-delay: 2.5s;
}

/* Particles Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.1);
    animation: float-particle 15s infinite linear;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}

@keyframes float-particle {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(100px, -100px); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        gap: 3rem;
    }
    
    .tech-orb {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .tech-grid {
        gap: 2rem;
    }
    
    .tech-orb {
        width: 140px;
        height: 140px;
    }
    
    .connection-lines {
        display: none;
    }
}

        /* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.contact-header h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #666;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    min-width: 25px;
}

.contact-item h4 {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item a, .contact-item p {
    color: var(--dark-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    text-align: center;
    margin-top: 2rem;
}

.social-links p {
    color: #666;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.8rem;
    }
    
    .contact-item {
        gap: 1rem;
    }
}

        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

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

        .footer-col h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-col h3::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            margin-top: 0.5rem;
        }

        .footer-col ul li {
            list-style: none;
            margin-bottom: 0.8rem;
        }

        .footer-col ul li a {
            color: #ddd;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(22, 22, 22, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            transform: translateY(100px);
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top i {
            margin-bottom: 2px;
        }

        .back-to-top span {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: -3px;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        .back-to-top.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .innovation-content,
            .contact-container {
                flex-direction: column;
            }

            .about-image,
            .innovation-features,
            .contact-info,
            .contact-form {
                width: 100%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: absolute;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: var(--transition);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section {
                padding: 3rem 0;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size: 1.2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .back-to-top {
                right: 15px;
                bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .back-to-top {
                right: 0px;
                bottom: 15px;
            }
        }

        /* ========================================
           TEAM SECTION STYLES
        ======================================== */
        
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .team-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }
        
        .team-section .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .team-section .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .team-section .section-header p {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .team-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            opacity: 1;
            transform: translateY(0);
        }
        
        
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .team-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .team-card:hover::before {
            opacity: 1;
        }
        
        .team-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            filter: grayscale(20%);
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }
        
        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.9) 0%, rgba(46, 204, 113, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .team-card:hover .team-overlay {
            opacity: 1;
        }
        
        .team-overlay .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .team-overlay .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .team-overlay .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .team-content {
            padding: 30px 25px;
            position: relative;
            z-index: 2;
        }
        
        .team-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
            transition: color 0.3s ease;
            text-align: center;
        }
        
        .team-card:hover .team-content h3 {
            color: #ef6a58;
        }
        
        .team-role {
            font-size: 0.95rem;
            color: #27ae60;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }
        
        .team-description {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
            text-align: center;
        }
        
        /* Floating Animation for Team Cards */
        .team-card {
            animation: float 6s ease-in-out infinite;
        }
        
        .team-card:nth-child(odd) {
            animation-delay: 0s;
        }
        
        .team-card:nth-child(even) {
            animation-delay: 3s;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .team-card:hover {
            animation-play-state: paused;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .team-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .team-section {
                padding: 60px 0;
            }
            
            .team-section .section-header h2 {
                font-size: 2rem;
            }
            
            .team-section .section-header p {
                font-size: 1rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .team-image {
                height: 220px;
            }
            
            .team-content {
                padding: 25px 20px;
            }
            
            .team-content h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .team-section {
                padding: 50px 0;
            }
            
            .team-section .section-header {
                margin-bottom: 40px;
            }
            
            .team-section .section-header h2 {
                font-size: 1.8rem;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }
            
            .team-image {
                height: 200px;
            }
            
            .team-content {
                padding: 20px 15px;
            }
            
            .team-content h3 {
                font-size: 1.1rem;
            }
            
            .team-role {
                font-size: 0.85rem;
            }
            
            .team-description {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 480px) {
            .team-grid {
                padding: 0 5px;
            }
            
            .team-content {
                padding: 15px 12px;
            }
        }