/* ========================================
   ASAF International - v4 Green Theme
   Green Color Scheme from v2
   PHP Backend with API Integration
   ======================================== */

/* CSS Variables - Green Theme */
:root {
    /* Primary Colors - Green Theme */
    --primary-green: #4CAF50;
    --dark-green: #2E7D32;
    --light-green: #81C784;
    --lighter-green: #C8E6C9;
    --green-gradient: linear-gradient(135deg, #81C784 0%, #4CAF50 50%, #2E7D32 100%);
    --shining-green: linear-gradient(90deg, #4CAF50, #81C784, #4CAF50, #2E7D32, #4CAF50);
    
    /* Accent Colors */
    --accent-blue: #2196F3;
    --accent-teal: #009688;
    --dark-blue: #1A237E;
    
    /* Neutral Colors */
    --dark-gray: #1a1a1a;
    --medium-gray: #4a4a4a;
    --light-gray: #f5f5f5;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, #81C784 0%, #4CAF50 50%, #2E7D32 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(129, 199, 132, 0.4), transparent);
    
    /* Easing Functions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 0 30px rgba(76, 175, 80, 0.4);
    --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

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

a:hover {
    color: var(--dark-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Custom Cursor - Universal (Desktop & Mobile)
   ======================================== */

.cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

/* Touch cursor for mobile */
.cursor-touch {
    position: fixed;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5), inset 0 0 20px rgba(76, 175, 80, 0.2);
}

.cursor-touch.active {
    opacity: 1;
}

/* Show cursors on all devices */
.cursor-dot, .cursor-outline {
    opacity: 1;
}

/* Hide default cursor when custom is active */
body.custom-cursor {
    cursor: none;
}

body.custom-cursor * {
    cursor: none !important;
}

/* ========================================
   Green Shining Effects
   ======================================== */

.green-gradient {
    background: var(--gradient-green);
}

.green-text {
    background: var(--shining-green);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: greenShine 3s linear infinite;
}

@keyframes greenShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.5s ease;
}

.btn-shine:hover::before {
    left: 100%;
}

.green-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.green-glow-bottom {
    position: absolute;
    bottom: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.green-accent {
    position: absolute;
    top: 100px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.green-accent-right {
    position: absolute;
    top: 50%;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.green-accent-left {
    position: absolute;
    bottom: 100px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.green-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(129, 199, 132, 0.05), transparent);
    animation: shimmer 5s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========================================
   Preloader
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-gray);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.8)); }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.loading-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-green);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.loading-text {
    color: var(--primary-green);
    font-size: 0.9rem;
    opacity: 0;
}

/* ========================================
   Navigation
   ======================================== */

#mainNav {
    padding: 1rem 0;
    background: transparent;
    transition: all 0.4s var(--ease-smooth);
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.3));
    transition: filter 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.6));
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--primary-green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    transition: all 0.3s var(--ease-expo-out);
    transform: translateX(-50%);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.dropdown-menu {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
}

.dropdown-item i {
    margin-right: 10px;
    color: var(--primary-green);
}

.btn-primary {
    background: var(--gradient-green);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s var(--ease-spring);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
    color: var(--white);
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark-gray);
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(46, 125, 50, 0.3) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.badge-text {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-title {
    color: var(--white);
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    overflow: hidden;
}

.title-line .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-cta .btn-outline-light {
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: var(--white);
}

.hero-cta .btn-outline-light:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--primary-green);
}

.hero-logo-float {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-logo {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.3));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(76, 175, 80, 0.5);
    border-bottom: 2px solid rgba(76, 175, 80, 0.5);
    transform: rotate(45deg);
}

/* ========================================
   Section Styles
   ======================================== */

.section-padding {
    padding: 100px 0;
    position: relative;
}

.bg-dark-green {
    background: linear-gradient(180deg, #1a1a1a 0%, #1b3018 100%);
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dark-green);
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle.green {
    color: var(--primary-green);
}

.section-subtitle.light {
    color: var(--light-green);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    overflow: hidden;
    color: var(--dark-gray);
}

.section-title.light {
    color: var(--white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   About Section
   ======================================== */

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-spring);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-expo-out);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s var(--ease-spring);
    box-shadow: var(--shadow-green);
}

.about-card:hover .card-icon {
    transform: rotateY(360deg);
    box-shadow: var(--shadow-glow);
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.6s ease;
}

.about-card:hover .card-shine {
    left: 100%;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.experience-badge .years {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    background: rgba(76, 175, 80, 0.15);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--dark-green);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
}

/* ========================================
   Business Section
   ======================================== */

.business-vertical {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
}

.business-vertical.visible {
    opacity: 1;
    transform: translateY(0);
}

.business-vertical:not(:last-child) {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.business-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.business-image img {
    transition: transform 0.6s var(--ease-smooth);
}

.business-image:hover img {
    transform: scale(1.05);
}

.floating-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.stat-float {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
}

.stat-float i {
    color: var(--dark-green);
    font-size: 1.2rem;
}

.stat-float span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.business-content {
    padding: 20px 0;
}

.business-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.business-content .lead {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 20px;
}

.business-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.business-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: all 0.4s var(--ease-spring);
    box-shadow: var(--shadow-green);
}

.business-icon:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s var(--ease-spring);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.service-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.service-item i {
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.service-item:hover i {
    background: var(--gradient-green);
    color: var(--white);
}

.service-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Leadership Section
   ======================================== */

.leadership-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateY(30px);
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-info .position {
    display: block;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* AI Leadership */
.ai-leadership {
    padding: 40px;
    background: var(--light-gray);
    border-radius: 20px;
}

.ai-leader-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateY(20px);
}

.ai-leader-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.leader-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.ai-leader-card h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.ai-leader-card span {
    display: block;
    color: var(--dark-green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ai-leader-card p {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ========================================
   News Section
   ======================================== */

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

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateY(30px);
}

.news-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-card.featured {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-meta .date {
    color: var(--medium-gray);
}

.news-meta .date i {
    margin-right: 5px;
    color: var(--dark-green);
}

.news-meta .category {
    color: var(--dark-green);
    font-weight: 600;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-green);
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 15px;
    color: var(--dark-gray);
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateX(30px);
}

.news-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.news-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.news-info {
    flex: 1;
}

.news-info .date {
    color: var(--dark-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.news-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Timeline */
.events-timeline {
    margin-top: 60px;
}

.events-timeline h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateY(20px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    color: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 70px;
}

.timeline-date .day {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.timeline-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.timeline-content p i {
    color: var(--dark-green);
    margin-right: 5px;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery-section {
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-filter.visible {
    opacity: 1;
    transform: translateY(0);
}

.filter-btn {
    padding: 12px 25px;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--medium-gray);
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s var(--ease-spring);
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

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

.gallery-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.view-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s var(--ease-spring);
    cursor: pointer;
}

.view-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    box-shadow: var(--shadow-glow);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* ========================================
   Technology Section
   ======================================== */

.technology-section {
    position: relative;
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease-spring);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.tech-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-10px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-green);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.tech-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.4s var(--ease-spring);
    opacity: 0;
    transform: translateY(30px);
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.stat-content {
    flex: 1;
}

.stat-content .stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-content .stat-suffix {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-content .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(76, 175, 80, 0.3);
    color: var(--white);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--primary-green);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    background: var(--white);
}

.contact-info {
    padding-right: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-spring);
    opacity: 0;
    transform: translateX(-30px);
}

.info-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-card:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(30px);
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.form-floating label {
    padding: 1rem 0.75rem;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    border-radius: 12px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-spring);
}

.social-links a:hover {
    background: var(--gradient-green);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-green);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand img {
    width: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 10px;
}

.footer-links a:hover::before {
    width: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
    color: var(--white);
}

.newsletter-form .btn {
    padding: 12px 25px;
    border-radius: 50px;
}

.footer-bottom {
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-spring);
    z-index: 999;
    box-shadow: var(--shadow-green);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   Animations
   ======================================== */

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

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

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

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

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

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1199.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title .title-line {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    /* Mobile Navigation - Animated */
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        animation: slideDown 0.4s var(--ease-expo-out);
        transform-origin: top;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: scaleY(0.8) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: scaleY(1) translateY(0);
        }
    }
    
    .navbar-nav {
        gap: 5px;
    }
    
    .navbar-nav .nav-item {
        opacity: 0;
        animation: fadeInRight 0.4s var(--ease-expo-out) forwards;
    }
    
    .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.35s; }
    .navbar-nav .nav-item:nth-child(7) { animation-delay: 0.4s; }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        padding: 15px 20px !important;
        border-radius: 10px;
        transition: all 0.3s var(--ease-spring);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-green);
        transform: scaleY(0);
        transition: transform 0.3s var(--ease-expo-out);
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }
    
    .nav-link:hover {
        background: rgba(76, 175, 80, 0.1);
        padding-left: 30px !important;
    }
    
    .dropdown-menu {
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(76, 175, 80, 0.2);
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .dropdown-item {
        padding: 12px 20px;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(76, 175, 80, 0.2);
        padding-left: 30px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 100px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .business-vertical {
        padding: 60px 0;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 100px 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    /* Fix overflow and blank space issues */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-badge {
        padding: 8px 15px;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 5px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-thumb {
        width: 100%;
        height: 180px;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    /* Mobile Navbar Toggle Button Animation */
    .navbar-toggler {
        border: none;
        padding: 10px;
        border-radius: 10px;
        transition: all 0.3s var(--ease-spring);
        position: relative;
        overflow: hidden;
    }
    
    .navbar-toggler::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(76, 175, 80, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s ease;
    }
    
    .navbar-toggler:hover::before {
        width: 100%;
        height: 100%;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        transform: rotate(90deg);
    }
}

@media (max-width: 575.98px) {
    /* Fix overflow issues on small screens */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .container, .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }
    
    .row {
        margin-left: -6px;
        margin-right: -6px;
    }
    
    .row > * {
        padding-left: 6px;
        padding-right: 6px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.55rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-float {
        padding: 10px 15px;
    }
    
    .business-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    /* Fix navbar on very small screens */
    .navbar > .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .navbar-brand {
        max-width: calc(100% - 60px);
    }
}

/* ========================================
   Utility Classes
   ======================================== */

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

.text-dark-green {
    color: var(--dark-green) !important;
}

.bg-green {
    background: var(--gradient-green) !important;
}

.bg-light-green {
    background: var(--lighter-green) !important;
}

.border-green {
    border-color: var(--primary-green) !important;
}

.shadow-green {
    box-shadow: var(--shadow-green) !important;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-gray);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Success/Error States */
.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--primary-green);
    color: var(--dark-green);
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #c62828;
}

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-padding-top: 80px;
}

/* Selection Color */
::selection {
    background: rgba(76, 175, 80, 0.3);
    color: var(--dark-gray);
}

::-moz-selection {
    background: rgba(76, 175, 80, 0.3);
    color: var(--dark-gray);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}
