/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #102942;
    --secondary: #59a96a;
    --dark: #0a1929;
    --light: #f5f7fa;
    --text: #1a2332;
    --text-light: #64748b;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    animation: fadeIn 0.6s ease-in;
}

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

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

::-webkit-scrollbar-track {
    background: #f5f7fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary), #7cc88c);
    border-radius: 6px;
    border: 2px solid #f5f7fa;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7cc88c, var(--secondary));
}

/* Selection Color */
::selection {
    background: var(--secondary);
    color: white;
}

::-moz-selection {
    background: var(--secondary);
    color: white;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 40px rgba(89, 169, 106, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo svg {
    height: 42px;
    width: auto;
}

.logo img,
.logo-img,
.logo object {
    height: 42px;
    width: auto;
    display: block;
}


.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav ul a:hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 169, 106, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #e8eef5;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--light);
    color: var(--secondary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(89, 169, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(89, 169, 106, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content .highlight {
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 41, 66, 0.2);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(89, 169, 106, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(89, 169, 106, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.stat-card:hover .stat-number {
    animation: pulse 0.6s ease-in-out;
}

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

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(89, 169, 106, 0.1), rgba(124, 200, 140, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(89, 169, 106, 0.2);
    position: relative;
}

.section-label::before {
    content: '✦';
    margin-right: 8px;
    font-size: 12px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #7cc88c);
    border-radius: 2px;
}

.section-description {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Facility Section */
.facility-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.facility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(89, 169, 106, 0.05), transparent);
    pointer-events: none;
}

.facility-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.facility-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.facility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #7cc88c, var(--secondary));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientSlide 3s linear infinite;
}

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

.facility-item:hover::before {
    opacity: 1;
}

.facility-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(89, 169, 106, 0.2);
    border-color: rgba(89, 169, 106, 0.2);
}

.facility-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.facility-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 41, 66, 0.7), rgba(89, 169, 106, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-item:hover .facility-image::after {
    opacity: 1;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.facility-item:nth-child(1) .facility-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facility-item:nth-child(2) .facility-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.facility-item:nth-child(3) .facility-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.facility-item:nth-child(4) .facility-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.facility-item:nth-child(5) .facility-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.facility-item:nth-child(6) .facility-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.facility-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.facility-content {
    padding: 35px;
}

.facility-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.facility-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Capabilities Section */
.capabilities-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 50%, #f5f7fa 100%);
    position: relative;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(89, 169, 106, 0.08), transparent 70%);
    top: 10%;
    right: -200px;
    border-radius: 50%;
    pointer-events: none;
}

.capabilities-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 41, 66, 0.05), transparent 70%);
    bottom: 10%;
    left: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.capability-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(89, 169, 106, 0.25);
    position: relative;
    transition: all 0.4s ease;
}

.capability-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    border-radius: 20px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.capability-card:hover .capability-icon::before {
    opacity: 0.6;
}

.capability-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.capability-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(89, 169, 106, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(89, 169, 106, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.process-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #1a3a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(16, 41, 66, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.process-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.process-card:hover .process-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(89, 169, 106, 0.3);
}

.process-card:hover .process-number::before {
    opacity: 1;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.process-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Clients Section */
.clients-section {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(89, 169, 106, 0.15) 0%, transparent 60%);
    animation: float 10s ease-in-out infinite;
}

.clients-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 200, 140, 0.1) 0%, transparent 60%);
    animation: float 12s ease-in-out infinite reverse;
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.client-logo-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.client-logo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.client-logo-card:hover::before {
    left: 100%;
}

.client-logo-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.client-logo-card h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.client-logo-card p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

.achievements-banner {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid rgba(89, 169, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.achievements-banner::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--secondary), #7cc88c, var(--secondary));
    background-size: 200% 200%;
    opacity: 0.3;
    filter: blur(20px);
    animation: gradientRotate 4s linear infinite;
    z-index: -1;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.achievements-banner h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary);
    font-weight: 700;
}

.achievement-number {
    font-size: 80px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(89, 169, 106, 0.5);
}

.achievement-label {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 500;
}

/* Futuristic Contact Section */
.contact-section {
    position: relative;
    padding: 120px 60px;
    background: linear-gradient(135deg, #0a1929 0%, #102942 50%, #0a1929 100%);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.contact-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(89, 169, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(89, 169, 106, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.contact-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.contact-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: -250px;
    right: -250px;
}

.contact-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7cc88c, transparent);
    bottom: -200px;
    left: -200px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(89, 169, 106, 0.1);
    border: 1px solid rgba(89, 169, 106, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.badge-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.contact-title {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), #7cc88c, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Grid */
.contact-info-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.info-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(89, 169, 106, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card-modern:hover {
    transform: translateX(8px);
    border-color: rgba(89, 169, 106, 0.4);
    box-shadow: 0 10px 40px rgba(89, 169, 106, 0.2);
}

.info-card-modern:hover .info-card-glow {
    opacity: 1;
}

.info-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(89, 169, 106, 0.2), rgba(124, 200, 140, 0.2));
    border: 1px solid rgba(89, 169, 106, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card-modern:hover .info-icon-wrapper {
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    transform: scale(1.1) rotate(5deg);
}

.info-icon-wrapper svg {
    color: var(--secondary);
    transition: color 0.3s ease;
}

.info-card-modern:hover .info-icon-wrapper svg {
    color: white;
}

.info-card-modern h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.info-link {
    display: block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #7cc88c;
    transform: translateX(4px);
}

.info-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Contact Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

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

.stat-value {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    line-height: 1;
}

.counter {
    background: linear-gradient(135deg, var(--secondary), #7cc88c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a1929 0%, var(--dark) 50%, #0a1929 100%);
    color: white;
    padding: 80px 60px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(89, 169, 106, 0.5), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(89, 169, 106, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand h4 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-section h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-section a:hover {
    color: var(--secondary);
    padding-left: 20px;
}

.footer-section a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container,
    .facility-grid,
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-container ul {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo svg {
        height: 36px;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 25px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-label {
        font-size: 14px;
    }

    section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 17px;
    }

    .facility-grid,
    .capabilities-grid,
    .process-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .facility-image {
        height: 240px;
    }

    .facility-content {
        padding: 25px;
    }

    .facility-content h3 {
        font-size: 20px;
    }

    .capability-card,
    .process-card {
        padding: 35px 25px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-container {
        padding: 60px 30px;
    }

    .cta-container h2 {
        font-size: 36px;
    }

    .cta-container p {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .achievement-number {
        font-size: 64px;
    }

    .client-logo-card {
        padding: 40px 30px;
    }

    .client-logo-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .achievement-number {
        font-size: 52px;
    }

    .achievements-banner {
        padding: 40px 25px;
    }
}

 

 
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

 
.hero::after {
    content: '';
    position: absolute;
    left: -20%;
    bottom: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 30% 30%, rgba(89, 169, 106, 0.18), transparent 60%);
    filter: blur(40px);
    animation: floatGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatGlow {
    from { transform: translateY(0) rotate(0deg); }
    to   { transform: translateY(-20px) rotate(5deg); }
}

 
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

 
section {
    scroll-margin-top: 96px;
}

 

@media (max-width: 968px) {
    .nav-actions { gap: 8px; }
    
    .contact-info-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .contact-title {
        font-size: 48px;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }
    
    .contact-info-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 17px;
    }
    
    .info-card-modern {
        padding: 24px;
    }
    
    .contact-stats {
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
}