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

:root {
    --primary-blue: #1629f4;
    --primary-green: #04fe01;
    --dark-bg: #181a20;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    --shadow-glow: 0 0 30px rgba(22, 41, 244, 0.3);
    --shadow-glow-green: 0 0 30px rgba(4, 254, 1, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 1200px;
    background: rgba(24, 26, 32, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(24, 26, 32, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 60%;
    padding-left: 40px;
}

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

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Desktop navigation styles */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    gap: 0;
}

.hero::before {
    content: none !important;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 0;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    padding-bottom: 0.3em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    line-height: 1.15;
}

.title-line:nth-child(2) {
    font-size: 5rem;
    animation-delay: 0.2s;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards;
}

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

.btn-primary {
    background: linear-gradient(90deg, #1e90ff 0%, #00c3ff 100%);
    color: white;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(30, 144, 255, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 300px;
        margin-top: -2rem;
    }

.energy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 240px;
}

.energy-cell {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 12px;
    animation: pulse 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    will-change: transform, opacity;
}

.energy-cell:nth-child(2) { animation-delay: 0.2s; }
.energy-cell:nth-child(3) { animation-delay: 0.4s; }
.energy-cell:nth-child(4) { animation-delay: 0.6s; }
.energy-cell:nth-child(5) { animation-delay: 0.8s; }
.energy-cell:nth-child(6) { animation-delay: 1.0s; }
.energy-cell:nth-child(7) { animation-delay: 1.2s; }
.energy-cell:nth-child(8) { animation-delay: 1.4s; }
.energy-cell:nth-child(9) { animation-delay: 1.6s; }

/* Bento Grid Section */
.bento-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    margin-top: -0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-blue);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bento-card:hover::before {
    opacity: 0.1;
}

/* Card Sizes */
.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.medium-card {
    grid-column: span 2;
}

.small-card {
    grid-column: span 2;
    grid-row: span 1;
}

/* Card Content */
.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Specific Card Styles */
.gap-management {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 41, 244, 0.1) 100%);
}

.technical-management {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(4, 254, 1, 0.1) 100%);
}

.iso-integration {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 41, 244, 0.05) 100%);
}

.iso-markets {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(4, 254, 1, 0.05) 100%);
}

.utilities {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(22, 41, 244, 0.05) 100%);
}

.regional-coverage {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(4, 254, 1, 0.1) 100%);
}

/* Card Stats */
.card-stats, .impact-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.stat-number, .impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label, .impact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ISO List */
.iso-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.iso-item {
    background: rgba(22, 41, 244, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid rgba(22, 41, 244, 0.2);
    transition: all 0.3s ease;
}

.iso-item:hover {
    background: rgba(22, 41, 244, 0.2);
    transform: scale(1.05);
}

/* Region Grid */
.region-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.region-item {
    background: rgba(4, 254, 1, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(4, 254, 1, 0.1);
}

.region-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.region-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Analytics Preview */
.analytics-preview {
    margin-top: 1rem;
}

.chart-line {
    height: 2px;
    background: var(--gradient-primary);
    margin-bottom: 4px;
    border-radius: 1px;
    animation: chartGrow 2s ease-in-out infinite;
}

.chart-line:nth-child(2) { animation-delay: 0.3s; }
.chart-line:nth-child(3) { animation-delay: 0.6s; }

/* Card Visuals */
.card-visual {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
}

.battery-animation {
    width: 60px;
    height: 30px;
}

.battery-body {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.battery-level {
    height: 100%;
    background: var(--gradient-primary);
    animation: batteryCharge 3s ease-in-out infinite;
}

/* Bridge Animation */
.bridge-animation {
    position: relative;
    width: 60px;
    height: 40px;
}

.bridge-pillar {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.bridge-pillar:first-child {
    left: 10px;
}

.bridge-pillar:last-of-type {
    right: 10px;
}

.bridge-span {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: bridgeGlow 2s ease-in-out infinite;
}

/* Map Animation */
.map-animation {
    position: relative;
    width: 60px;
    height: 40px;
}

.map-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: mapPulse 3s ease-in-out infinite;
}

.point-1 { top: 5px; left: 10px; animation-delay: 0s; }
.point-2 { top: 15px; left: 25px; animation-delay: 0.5s; }
.point-3 { top: 25px; left: 15px; animation-delay: 1s; }
.point-4 { top: 10px; left: 35px; animation-delay: 1.5s; }
.point-5 { top: 20px; left: 5px; animation-delay: 2s; }

.sustainability-animation {
    position: relative;
    width: 60px;
    height: 60px;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50% 0 50% 0;
    animation: leafFloat 4s ease-in-out infinite;
}

.leaf-1 { top: 0; left: 20px; animation-delay: 0s; }
.leaf-2 { top: 20px; left: 0; animation-delay: 1s; }
.leaf-3 { top: 40px; left: 20px; animation-delay: 2s; }

/* About Section */
.about-section {
    padding: 40px 0;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    order: 1;
}
.about-text {
    order: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

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

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 300px;
}

.tech-item {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 12px;
    animation: techPulse 2s ease-in-out infinite;
}

.tech-item:nth-child(2) { animation-delay: 0.2s; }
.tech-item:nth-child(3) { animation-delay: 0.4s; }
.tech-item:nth-child(4) { animation-delay: 0.6s; }
.tech-item:nth-child(5) { animation-delay: 0.8s; }
.tech-item:nth-child(6) { animation-delay: 1s; }
.tech-item:nth-child(7) { animation-delay: 1.2s; }
.tech-item:nth-child(8) { animation-delay: 1.4s; }
.tech-item:nth-child(9) { animation-delay: 1.6s; }

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f0f 0%, var(--dark-bg) 100%);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 0rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.2rem;
    border-top: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes batteryCharge {
    0% {
        width: 15%;
        opacity: 0.6;
    }
    25% {
        width: 45%;
        opacity: 0.8;
    }
    50% {
        width: 75%;
        opacity: 1;
    }
    75% {
        width: 90%;
        opacity: 0.9;
    }
    100% {
        width: 15%;
        opacity: 0.6;
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

@keyframes chartGrow {
    0% {
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}

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

@keyframes bridgeGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-blue);
    }
    50% {
        box-shadow: 0 0 15px var(--primary-green);
    }
}

@keyframes mapPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 10px var(--primary-green);
    }
}

/* Mobile Video Fixes */
@media (max-width: 768px) {
    video {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: -1 !important;
    }
    
    /* Ensure video containers have proper positioning */
    .hero, .about-hero, .projects-hero, .contact-hero {
        position: relative !important;
        overflow: hidden !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        border-radius: 15px;
    }
    
    .nav-logo {
        max-width: 70%;
        gap: 70px;
        padding-left: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        background: var(--card-bg);
        position: fixed;
        top: 80px;
        right: 20px;
        left: 20px;
        width: auto;
        min-width: 200px;
        border-radius: 12px;
        z-index: 10000 !important;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        box-shadow: 0 8px 32px rgba(22,41,244,0.12);
        margin-top: 10px;
    }
    
    .nav-menu.active .nav-link {
        color: var(--text-primary);
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 150px 0 10px;
        gap: 1rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .title-line {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .title-line:nth-child(2) {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .large-card,
    .medium-card,
    .small-card {
        grid-column: 1;
        grid-row: auto;
        min-height: 200px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .about-visual {
        order: unset;
    }
    .about-text {
        order: unset;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .energy-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 180px;
        margin: 0 auto;
        justify-content: center;
        gap: 8px;
    }
    
    .energy-cell {
        width: 60px;
        height: 60px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 200px;
        margin: 0 auto;
    }
    
    .tech-item {
        width: 60px;
        height: 60px;
    }
    
    .iso-list {
        grid-template-columns: 1fr;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
    }
    
    .region-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        border-radius: 12px;
    }
    
    .nav-logo {
        max-width: 80%;
        gap: 50px;
        padding-left: 0px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .title-line {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    
    .title-line:nth-child(2) {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .card-stats,
    .impact-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px 0;
    background: var(--dark-bg);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.partner-logo {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.partner-logo:hover,
.affiliation-logo:hover {
    transform: translateY(-8px);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px var(--primary-green)) drop-shadow(0 0 10px var(--primary-blue));
}

.placeholder-logo {
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .partners-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    .partner-logo {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
} 

/* Logo Section (Landing) */
.logo-section {
    width: 100%;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(22, 41, 244, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(4, 254, 1, 0.1) 0%, transparent 50%);
    padding-top: 32px;
    padding-bottom: 8px;
}

.cp-logo {
    max-width: 160px;
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
    transform: scale(3.5);
}

@media (max-width: 600px) {
    .cp-logo {
        max-width: 110px;
        height: 34px;
        margin-left: 60px;
        margin-right: auto;
        display: block;
    }
}

/* Hero Logo Wrapper (Landing) */
.hero-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 32px;
    padding-bottom: 8px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }
} 

/* Page Logo Top Right (Landing) */
.page-logo-topright {
    position: fixed;
    top: 40px;
    right: 150px;
    z-index: 100;
    background: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
} 

.page-logo-topright .cp-logo {
    transform: scale(4.0);
} 

.region-label {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-left: 0 !important;
    letter-spacing: 0.5px;
}

.footer-logo .region-label {
    font-size: 1rem;
    color: var(--primary-green);
    margin-left: 24px;
}

@media (max-width: 600px) {
    .region-label {
        display: block;
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }
    .footer-logo .region-label {
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }
} 

/* Service Icon Animations */
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}
@keyframes iconBlink {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.3; }
  55% { opacity: 0.3; }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes iconSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}
@keyframes iconSpin {
  100% { transform: rotate(360deg); }
}

.bento-card.service-card .card-icon i.fa-clipboard-check {
  animation: iconBounce 2s infinite;
}
.bento-card.service-card .card-icon i.fa-network-wired {
  animation: iconWiggle 2.2s infinite;
}
.bento-card.service-card .card-icon i.fa-eye {
  animation: iconBlink 2.5s infinite;
}
.bento-card.service-card .card-icon i.fa-clipboard-list {
  animation: iconPulse 2s infinite;
}
.bento-card.service-card .card-icon i.fa-balance-scale {
  animation: iconSway 2.8s infinite;
}
.bento-card.service-card .card-icon i.fa-cogs {
  animation: iconSpin 2.5s linear infinite;
} 

.affiliations-section {
    padding: 40px 0;
    background: var(--dark-bg);
}

.affiliations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.affiliation-logo {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.affiliation-logo:hover {
    transform: translateY(-8px);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .affiliations-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    .affiliation-logo {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
} 

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.testimonials-container {
    position: relative;
    margin-top: 3rem;
}

.testimonials-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    height: 400px; /* Fixed height to prevent layout shifts */
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
    display: block;
}

.testimonial-card.hidden {
    opacity: 0;
    transform: translateX(100%);
    display: none;
}

/* Ensure all cards are visible by default */
.testimonials-grid .testimonial-card {
    display: block;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(22,41,244,0.1), rgba(4,254,1,0.1));
    border: 1px solid rgba(22,41,244,0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e90ff, #00c3ff);
    transform: scaleX(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(22,41,244,0.2);
    border-color: rgba(22,41,244,0.4);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #1629f4, #04fe01);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-size: 2rem;
    color:  #1e90ff;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.client-name {
    background: linear-gradient(90deg, #1e90ff 0%, #00c3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.client-company {
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    opacity: 0.9;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: linear-gradient(135deg, rgba(22,41,244,0.1), rgba(4,254,1,0.1));
    border: 1px solid rgba(22,41,244,0.3);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(22,41,244,0.2), rgba(4,254,1,0.2));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22,41,244,0.3);
}

.nav-btn i {
    font-size: 1.2rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(22,41,244,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background:  #1e90ff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(22,41,244,0.5);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex;
        overflow: hidden;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        min-width: 100%; /* Show full width card on mobile */
        height: auto; /* Allow height to adjust to content */
        flex: 0 0 100%;
    }

    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: unset; /* Remove line clamp to show full content */
        overflow: visible;
        display: block;
    }

    .client-name {
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }

    .client-company {
        font-size: 0.9rem !important;
        padding-top: 0.3rem;
        margin-top: 0.3rem;
    }

    .testimonials-navigation {
        gap: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        gap: 0.5rem;
    }

    .testimonial-card {
        min-width: calc(33.333% - 0.33rem);
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

/* About Page Custom Styles */

.about-hero {
    min-height: 70vh;
    padding-top: 150px;
    padding-bottom: 32px;
}

/* Responsive styles for about hero section */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding-top: 140px;
        padding-bottom: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    
    .about-hero .hero-content {
        margin-right: 0;
        margin-bottom: 0;
        max-width: 85%;
        width: 85%;
    }
    
    .about-hero .hero-visual {
        order: 2;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 130px;
        padding-bottom: 15px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    
    .about-hero .hero-content {
        margin-right: 0;
        margin-bottom: 0;
        max-width: 80%;
        width: 80%;
    }
    
    .about-hero .hero-visual {
        order: 2;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
    }
}

.about-hero-logo {
    transform: translateY(-60px) scale(1.8);
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Responsive styles for about hero logo */
@media (max-width: 768px) {
    .about-hero-logo {
        transform: none !important;
        scale: 6.6;
        max-width: 80%;
        margin-top: 0;
        position: relative;
        top: 0;
        min-height: 50px;
        display: block;
    }
}

@media (max-width: 480px) {
    .about-hero-logo {
        transform: none !important;
        scale: 5.6;
        max-width: 70%;
        margin-top: 0;
        position: relative;
        top: 0;
        min-height: 50px;
        display: block;
    }
}

@media (max-width: 360px) {
    .about-hero {
        padding-top: 120px;
    }
    
    .about-hero .hero-content {
        max-width: 75%;
        width: 75%;
    }
    
    .about-hero-logo {
        transform: none !important;
        scale: 7.6;
        max-width: 60%;
        margin-top: 0;
        position: relative;
        top: 0;
        min-height: 50px;
        display: block;
    }
}

.about-story-section {
    background: var(--dark-bg);
    padding: 80px 0 60px;
}
.about-story-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.about-story-text {
    flex: 1 1 340px;
    color: var(--text-primary);
    animation: slideInLeft 1.2s cubic-bezier(.77,0,.18,1) both;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
.about-story-visual {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.battery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.battery-item {
    width: 60px;
    height: 30px;
    position: relative;
    margin: 0 auto;
}
.battery-body {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background: #111;
}
.battery-level {
    height: 100%;
    width: 30%;
    background: var(--gradient-primary);
    animation: batteryCharge 3s ease-in-out infinite;
    will-change: width, opacity;
    transform: translateZ(0);
}

/* Smooth battery charging animations with varied timing */
.battery-item:nth-child(1) .battery-level { animation-delay: 0s; animation-duration: 3.2s; }
.battery-item:nth-child(2) .battery-level { animation-delay: 0.4s; animation-duration: 3.5s; }
.battery-item:nth-child(3) .battery-level { animation-delay: 0.8s; animation-duration: 3.1s; }
.battery-item:nth-child(4) .battery-level { animation-delay: 0.2s; animation-duration: 3.4s; }
.battery-item:nth-child(5) .battery-level { animation-delay: 0.6s; animation-duration: 3.3s; }
.battery-item:nth-child(6) .battery-level { animation-delay: 0.1s; animation-duration: 3.6s; }
.battery-item:nth-child(7) .battery-level { animation-delay: 0.5s; animation-duration: 3.0s; }
.battery-item:nth-child(8) .battery-level { animation-delay: 0.9s; animation-duration: 3.7s; }
.battery-item:nth-child(9) .battery-level { animation-delay: 0.3s; animation-duration: 3.2s; }
.battery-item:nth-child(10) .battery-level { animation-delay: 0.7s; animation-duration: 3.5s; }
.battery-item:nth-child(11) .battery-level { animation-delay: 0.2s; animation-duration: 3.1s; }
.battery-item:nth-child(12) .battery-level { animation-delay: 0.6s; animation-duration: 3.4s; }
.battery-item:nth-child(13) .battery-level { animation-delay: 0.1s; animation-duration: 3.3s; }
.battery-item:nth-child(14) .battery-level { animation-delay: 0.5s; animation-duration: 3.6s; }
.battery-item:nth-child(15) .battery-level { animation-delay: 0.9s; animation-duration: 3.0s; }
.battery-item:nth-child(16) .battery-level { animation-delay: 0.3s; animation-duration: 3.7s; }
.battery-item:nth-child(17) .battery-level { animation-delay: 0.7s; animation-duration: 3.2s; }
.battery-item:nth-child(18) .battery-level { animation-delay: 0.2s; animation-duration: 3.5s; }
.battery-item:nth-child(19) .battery-level { animation-delay: 0.6s; animation-duration: 3.1s; }
.battery-item:nth-child(20) .battery-level { animation-delay: 0.1s; animation-duration: 3.4s; }
.battery-item:nth-child(21) .battery-level { animation-delay: 0.5s; animation-duration: 3.3s; }
.battery-item:nth-child(22) .battery-level { animation-delay: 0.9s; animation-duration: 3.6s; }
.battery-item:nth-child(23) .battery-level { animation-delay: 0.3s; animation-duration: 3.0s; }
.battery-item:nth-child(24) .battery-level { animation-delay: 0.7s; animation-duration: 3.7s; }
.battery-item:nth-child(25) .battery-level { animation-delay: 0.2s; animation-duration: 3.2s; }
.battery-item:nth-child(26) .battery-level { animation-delay: 0.6s; animation-duration: 3.5s; }
.battery-item:nth-child(27) .battery-level { animation-delay: 0.1s; animation-duration: 3.1s; }
.battery-item:nth-child(28) .battery-level { animation-delay: 0.5s; animation-duration: 3.4s; }
.battery-item:nth-child(29) .battery-level { animation-delay: 0.9s; animation-duration: 3.3s; }
.battery-item:nth-child(30) .battery-level { animation-delay: 0.3s; animation-duration: 3.6s; }
.battery-tip {
    position: absolute;
    right: -6px;
    top: 9px;
    width: 8px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 2px;
    opacity: 0.7;
}
.about-values-list {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}
.about-values-list li {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}
.about-values-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.about-values-section {
    background: var(--dark-bg);
    padding: 80px 0 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: var(--shadow-glow);
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px var(--primary-green);
}

.value-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem auto;
    font-size: 1.2rem;
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(4,254,1,0.3);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-stats-section {
    background: var(--dark-bg);
    padding: 20px 0 40px;
}
.about-stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.about-stat-card {
    text-align: center;
    min-width: 200px;
    flex: 1 1 220px;
    animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both;
}
.about-stat-card i {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    animation: iconPulse 2s infinite;
}
.about-stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}
.about-stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}
@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.about-team-section {
    background: var(--dark-bg);
    padding: 80px 0 60px;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.team-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-glow);
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 0 40px var(--primary-green);
}
.team-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


@media (max-width: 900px) {
    .about-story-grid, .about-stats-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-story-text, .about-story-visual {
        width: 100%;
        text-align: center;
    }
    .value-card {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    .battery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.7rem;
        max-width: 320px;
    }
    .battery-item {
        width: 38px;
        height: 18px;
    }
    .battery-tip {
        right: -4px;
        top: 5px;
        width: 5px;
        height: 7px;
    }
}

@media (max-width: 600px) {
    .about-story-section, .about-team-section, .about-stats-section, .about-values-section {
        padding: 40px 0 30px;
    }
    .about-story-grid, .about-stats-grid {
        gap: 1.2rem;
    }
    .about-team-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about-stat-card, .team-card, .value-card {
        min-width: 140px;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .about-story-text h2 {
        font-size: 1.5rem;
    }
    .value-card h3 {
        font-size: 1.3rem;
    }
    .value-card p {
        font-size: 0.9rem;
    }
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .battery-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
        max-width: 220px;
    }
    .battery-item {
        width: 28px;
        height: 12px;
    }
    .battery-tip {
        right: -3px;
        top: 3px;
        width: 3px;
        height: 5px;
    }
} 

.modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.85);
    z-index: 2000;
    transition: opacity 0.2s;
}
.modal-content {
    background: var(--card-bg);
    color: var(--text-primary);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(22,41,244,0.18);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    max-width: 420px;
    width: 90vw;
    text-align: left;
    position: relative;
    animation: fadeInUp 0.4s cubic-bezier(.77,0,.18,1);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.modal-close:hover {
    color: var(--primary-blue);
}
#modalText {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}
@media (max-width: 600px) {
    .modal-content {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
        max-width: 95vw;
    }
    .modal-close {
        top: 8px;
        right: 12px;
        font-size: 1.5rem;
    }
} 

.bento-card.service-card .card-content {
    display: flex;
    flex-direction: column;
}
.bento-card.service-card .card-icon {
    align-self: flex-end;
    margin-bottom: 0.5rem;
    scale: 1.2;
} 

.energy-particles-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}
#energyParticles {
    width: 100%;
    height: 500px;
    display: block;
    background: transparent;
}

/* Projects Page Styles */
.projects-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: none !important;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: none !important;
}

.projects-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.projects-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.projects-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item:nth-child(2) { animation-delay: 0.1s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }

.stat-item .stat-number {
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.projects-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.projects-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.projects-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #4d5cf7; /* softened blue */
    background: transparent;
    color: var(--text-primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4d5cf7; /* softened blue */
    color: white;
    box-shadow: 0 0 20px rgba(77, 92, 247, 0.18);
    border-color: #4d5cf7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(22, 41, 244, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 41, 244, 0.1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.project-size {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.size-number {
    font-size: 1.2rem;
    font-weight: 700;
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.size-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.project-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: rgba(4, 254, 1, 0.2);
    color: var(--primary-green);
    border: 1px solid rgba(4, 254, 1, 0.3);
}

.project-status.ongoing {
    background: rgba(22, 41, 244, 0.2);
    color: var(--text-primary);
    border: 1px solid rgba(22, 41, 244, 0.3);
}

.project-status.upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.project-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--primary-blue);
    width: 16px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .projects-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .projects-hero .hero-content {
        margin-top: 3rem;
    }
    
    .projects-stats {
        gap: 2rem;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .projects-header h2 {
        font-size: 2rem;
    }
    
    .projects-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .size-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-hero {
        padding: 100px 0 60px;
    }
    
    .projects-hero .hero-title {
        font-size: 2rem;
    }
    
    .projects-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .projects-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}

/* Technologies Section Styles */
.technologies-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.technologies-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technologies-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.technologies-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.tech-category {
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
}

.logo-scroll-container {
    overflow: hidden;
    position: relative;
    height: 80px;
    -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    will-change: transform;
    transform: translateZ(0);
}



.logo-scroll {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: logo-scroll-move 30s linear infinite;
}

@keyframes logo-scroll-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-scroll:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    padding: 8px;
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

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

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLogosReverse {
    0% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Different scroll speeds and directions for variety */
.tech-category:nth-child(1) .logo-scroll {
    animation-duration: 50s;
    animation-name: scrollLogos;
    animation-timing-function: linear;
}

.tech-category:nth-child(2) .logo-scroll {
    animation-duration: 50s;
    animation-name: scrollLogosReverse;
    animation-timing-function: linear;
}

.tech-category:nth-child(3) .logo-scroll {
    animation-duration: 50s;
    animation-name: scrollLogos;
    animation-timing-function: linear;
}

@media (max-width: 768px) {
    .technologies-header h2 {
        font-size: 2rem;
    }
    
    .technologies-grid {
        gap: 2rem;
    }
    
    .tech-category {
        padding: 1.5rem 0;
    }
    
    .logo-scroll-container {
        height: 70px;
    }
    
    .logo-item {
        width: 100px;
        height: 50px;
    }
    
    .logo-scroll {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .technologies-section {
        padding: 60px 0;
    }
    
    .technologies-header h2 {
        font-size: 1.8rem;
    }
    
    .technologies-header p {
        font-size: 1rem;
    }
    
    .tech-category h3 {
        font-size: 1.3rem;
    }
    
    .logo-scroll-container {
        height: 60px;
    }
    
    .logo-item {
        width: 80px;
        height: 40px;
        padding: 6px;
    }
    
    .logo-scroll {
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 40px;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    background: none !important;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: none !important;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-stats .stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.contact-stats .stat-item:nth-child(3) { animation-delay: 0.4s; }

.contact-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-stats .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-main-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section p,
.contact-form-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(22, 41, 244, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 41, 244, 0.15);
    border-color: rgba(22, 41, 244, 0.3);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 1.2rem;
}

.method-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-details p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.method-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: var(--card-bg);
    border: 1px solid rgba(22, 41, 244, 0.1);
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 0.9rem;
}

.contact-form-main {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(22, 41, 244, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(22, 41, 244, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Specific styling for select dropdowns */
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-primary);
    padding: 8px 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(22, 41, 244, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-large {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(22, 41, 244, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(22, 41, 244, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(22, 41, 244, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(22, 41, 244, 0.02);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        gap: 2rem;
    }
    
    .contact-stats .stat-number {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-main {
        padding: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-icon i {
        font-size: 1rem;
    }
    
    .contact-form-main {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
    }
} 

/* News Page Styles */
.news-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.news-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #1a237e;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.news-card {
    background: #f5f7fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}
.news-media img, .news-media iframe {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}
.news-content {
    padding: 18px 16px 14px 16px;
    flex: 1;
}
.news-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #263238;
}
.news-date {
    font-size: 0.95rem;
    color: #607d8b;
    margin-bottom: 10px;
}
.news-desc {
    font-size: 1rem;
    color: #37474f;
}
@media (max-width: 600px) {
    .news-title {
        font-size: 1.5rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .news-media img, .news-media iframe {
        height: 140px;
    }
} 

.bento-card .card-icon i {
    /* color: var(--primary-green); */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.news-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(22,41,244,0.08);
    z-index: 2;
    pointer-events: none;
}

.project-card.news-post {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    min-height: 450px;
}

.project-card.news-post img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.project-card.news-post .news-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #1e90ff 0%, #00c3ff 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    width: fit-content;
    min-width: 80px;
    text-align: center;
    white-space: nowrap;
}

.linkedin-link i {
  font-size: 2rem;
  background: linear-gradient(90deg, #1e90ff 0%, #00c3ff 100%); /* Adjust to match section title gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.projects-hero {
    position: relative;
    overflow: hidden;
}
.projects-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.55);
    z-index: 0;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.55);
    z-index: -1;
}

.logo-scroll .logo-item {
    margin-right: 2.5rem;
}
.logo-scroll .logo-item:last-child {
    margin-right: 0;
}

/* Project Gallery Section */
.project-gallery-section {
    background: var(--dark-bg);
    padding: 40px 0 60px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.gallery-container::before,
.gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.gallery-container::before {
    left: 0px;
    background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
}

.gallery-container::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-bg) 0%, transparent 100%);
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    animation: galleryScroll 60s linear infinite;
    width: max-content;
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(22, 41, 244, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(22, 41, 244, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-item {
        width: 250px;
        height: 160px;
    }
    
    .gallery-scroll {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-gallery-section {
        padding: 60px 0 40px;
    }
    
    .gallery-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        width: 200px;
        height: 130px;
    }
    
    .gallery-scroll {
        gap: 1rem;
    }
}

/* Mission Section Styles */
.about-mission-section {
    padding: 40px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-content .section-title {
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out;
}

.mission-text {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.mission-quote-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-quote-icon-start {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    align-self: flex-start;
    margin-left: -1rem;
}

.mission-quote-icon-end {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-top: 0.5rem;
    opacity: 0.7;
    align-self: flex-end;
    margin-right: -1rem;
}

.mission-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0;
    position: relative;
}

@media (max-width: 768px) {
    .about-mission-section {
        padding: 60px 0;
    }
    
    .mission-content .section-title {
        font-size: 2rem;
    }
    
    .mission-text {
        padding: 30px 20px;
    }
    
    .mission-quote-icon-start,
    .mission-quote-icon-end {
        font-size: 2.5rem;
    }
    
    .mission-quote-icon-start {
        margin-bottom: 0.75rem;
        margin-left: -0.5rem;
    }
    
    .mission-quote-icon-end {
        margin-top: 0.75rem;
        margin-right: -0.5rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-mission-section {
        padding: 40px 0;
    }
    
    .mission-content .section-title {
        font-size: 1.75rem;
    }
    
    .mission-text {
        padding: 25px 15px;
    }
    
    .mission-quote-icon-start,
    .mission-quote-icon-end {
        font-size: 2rem;
    }
    
    .mission-quote-icon-start {
        margin-bottom: 0.5rem;
        margin-left: -0.25rem;
    }
    
    .mission-quote-icon-end {
        margin-top: 0.5rem;
        margin-right: -0.25rem;
    }
    
    .mission-statement {
        font-size: 1rem;
    }
}