/* ===== DAR WEBSITE - LIGHT THEME DESIGN ===== */
/* Modern, clean and bright design with nature-inspired colors */

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* ===== NAVIGATION - LIGHT & CLEAN ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 55, 72, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

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

.nav-logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #38a169;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #38a169 0%, #68d391 100%);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

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

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

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

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

/* ===== HERO SECTION - WITH VIDEO BACKGROUND ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    width: 100vw;
    max-width: 100%;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(3px) brightness(0.7);
    transform: scale(1.1);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    width: 100%;
}

.hero-highlight {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 900;
    text-shadow: none;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
    max-width: 100%;
    word-wrap: break-word;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(86, 171, 47, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(86, 171, 47, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f7fafc;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 161, 105, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== STATS SECTION - CLEAN & INFORMATIVE ===== */
.stats-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    overflow: visible;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stats-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    overflow: visible;
}

.stat-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: #38a169;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    word-break: break-word;
}

.stat-item:hover .stat-number {
    color: #38a169;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
    line-height: 1.3;
    padding: 0 10px;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
    max-width: 240px;
    padding: 0 5px;
}

/* ===== FEATURES SECTION - MODERN & CLEAN ===== */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    overflow: visible;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #38a169;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #38a169;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    background: rgba(56, 161, 105, 0.2);
    border-color: #38a169;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.3rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #38a169;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0 0 16px 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #2d3748;
}

.feature-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-tech span {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.2);
    color: #38a169;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-tech span {
    background: rgba(56, 161, 105, 0.15);
    border-color: #38a169;
}

/* ===== ABOUT SECTION - LIGHT & INFORMATIVE ===== */
.about {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-text p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.about-stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #38a169;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #38a169;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.showcase-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(56, 161, 105, 0.3);
    animation: float 6s ease-in-out infinite;
}

.showcase-element:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.showcase-element:nth-child(2) { top: 25%; right: 0; animation-delay: 1s; }
.showcase-element:nth-child(3) { top: 75%; right: 0; animation-delay: 2s; }
.showcase-element:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.showcase-element:nth-child(5) { top: 75%; left: 0; animation-delay: 4s; }
.showcase-element:nth-child(6) { top: 25%; left: 0; animation-delay: 5s; }

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

.showcase-element:nth-child(2) {
    animation-name: float-right;
}

.showcase-element:nth-child(3) {
    animation-name: float-right;
}

.showcase-element:nth-child(5) {
    animation-name: float-left;
}

.showcase-element:nth-child(6) {
    animation-name: float-left;
}

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

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

/* ===== CTA SECTION - BRIGHT & ENGAGING ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

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

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #38a169;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #38a169;
}

/* ===== CONTACT SECTION - CLEAN & PROFESSIONAL ===== */
.contact {
    padding: 100px 0;
    background: #f7fafc;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #38a169;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.contact-method-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.contact-method-info p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
}

/* ===== FOOTER - LIGHT & CLEAN ===== */
.footer {
    background: #1a202c;
    color: #ffffff;
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid rgba(56, 161, 105, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38a169;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #38a169;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #68d391;
}

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

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.85rem;
    margin: 0;
}

/* ===== TEAM SECTION - MODERN & CLEAN ===== */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fff4 100%);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.team-member {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.team-member:hover {
    transform: translateY(-6px);
    border-color: #38a169;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #38a169 0%, #68d391 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: #38a169;
    margin-bottom: 12px;
}

.team-description {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    html, body {
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 15px;
        text-align: center;
        width: 100%;
    }
    
    .hero-highlight {
        font-size: 2.5rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }
    
    .hero-buttons a {
        width: 80%;
        max-width: 250px;
        text-align: center;
    }
    
    .hero-video {
        filter: blur(4px) brightness(0.6);
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .stats-section,
    .features {
        padding: 60px 0;
    }
    
    .stats-header h2,
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: flex-start;
        padding-left: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    .hamburger {
        display: flex;
    }
}

/* Performance optimization for video */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    }
    
    .hero-video-overlay {
        display: none;
    }
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .visual-showcase {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .showcase-element {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        max-width: 280px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-number {
        font-size: 1.8rem;
        top: 15px;
        right: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0 20px;
    }
}

/* Mobile styles for very small screens */
@media (max-width: 480px) {
    html, body {
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero {
        padding-top: 60px;
        width: 100vw;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-highlight {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .stat-item {
        padding: 20px 15px;
        width: 100%;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .stat-sublabel {
        font-size: 0.8rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }
    
.stat-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-header {
    margin-bottom: 30px;
    padding: 0 15px;
}

.stats-grid {
    max-width: 350px;
    margin: 0 auto;
}    .team-member {
        padding: 15px;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-description {
        font-size: 0.9rem;
        max-width: 220px;
        margin: 0 auto;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 2px 10px;
    }
    
    .nav-logo img {
        height: 60px;
        max-width: 80%;
    }
    
    .section-header {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}
