:root {
    --metal-dark: #0f172a;
    /* Slate 900 */
    --metal-light: #f8fafc;
    /* Slate 50 */
    --metal-mid: #64748b;
    /* Slate 500 */
    /* Ultra-Premium Chrome Gradients */
    --silver-gradient: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 25%, #f1f5f9 50%, #94a3b8 75%, #e2e8f0 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #dfb238 30%, #fffacd 50%, #b8860b 70%, #ffd700 100%);
    --neon-blue: #0ea5e9;
    /* Sky 500 - slightly more corporate vibrant */
    --neon-purple: #8b5cf6;
    /* Violet 500 */
    --bg-dark: #020617;
    /* Slate 950 - Deepest Blue */
    --text-main: #f1f5f9;
    --glass: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(148, 163, 184, 0.1);
    --primary-glow: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    /* dynamic background mesh - shifted to blue/purple hues */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%);
    background-attachment: fixed;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Metallic Text Effect */
.metallic-text {
    background: var(--silver-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 10px rgba(255, 255, 255, 0.1);
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 5%;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    filter: brightness(0.8) contrast(1.2);
    transition: 0.3s;
}

.service-card:hover .service-image {
    filter: brightness(1) contrast(1);
    transform: scale(1.02);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.service-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Metallic Text Effect */


.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Floating Glass Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    padding: 0.8rem 2rem;
    background: rgba(15, 23, 42, 0.85);
    /* Deep slate glass */
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

header:hover {
    background: rgba(20, 20, 25, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 243, 255, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-main {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.logo-secondary {
    height: 40px;
    object-fit: contain;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 1rem;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 2px;
}

nav a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--neon-blue);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px var(--neon-blue);
}

nav a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

nav a:hover::after {
    width: 100%;
}



/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 80%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 11px);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    background: var(--silver-gradient);
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    20% {
        transform: translateX(100%) rotate(25deg);
    }

    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Trusted Clients */
.clients-section {
    padding: 3rem 0;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    /* Hide scrollbar */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 300;
}

.scroller {
    max-width: 100%;
}

.scroller-inner {
    padding-block: 1rem;
    display: flex;
    gap: 2rem;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
    /* Adjust speed as needed */
}

/* Pause animation on hover for better UX */
.scroller:hover .scroller-inner {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 1rem));
        /* Move halfway (because we will duplicate content) */
    }
}

.client-card {
    background: var(--glass);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    /* Ensure consistent width in marquee */
    flex-shrink: 0;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.client-logo {
    max-width: 100%;
    max-height: 80px;
    /* Removed grayscale to show original colors */
    filter: none;
    transition: 0.4s;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .scroller-inner {
        gap: 1rem;
    }

    .client-card {
        min-width: 150px;
        height: 100px;
    }
}

/* Footer */
footer {
    background: #020617;
    padding: 4rem 5% 2rem;
    border-top: 1px solid #1e293b;
    color: #a0a0a0;
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-blue);
}

.footer-column p,
.footer-column a {
    color: #a0a0a0;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--neon-blue);
    transform: translateY(-3px);
    padding-left: 0;
    /* Override generic link hover */
}

.footer-socials img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Floating Socials */
.floating-socials {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Added spacing */
    z-index: 2000;
}

.float-icon {
    width: 60px;
    height: 60px;
    /* Slightly larger for better visibility */
    background: rgba(255, 255, 255, 0.08);
    /* Sophisticated dark glass */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    /* Smooth rounded box shape */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* Deep premium shadow */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin-right: 15px;
    /* Spacing from the edge */
}

.float-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) translateX(-5px);
    /* Enlarge and move slightly left */
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
    /* Subtle glow on hover */
    z-index: 2001;
}

.float-icon svg,
.float-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the box completely */
    display: block;
    border-radius: 10px;
    /* Matches the parent border radius */
}

/* Tooltip animation */
.tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.float-icon:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations */
.float-icon {
    animation: bounceIn 0.8s ease-out backwards;
}

.float-icon:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes bounceIn {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }

    50% {
        transform: scale(1.1) translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .logo-secondary {
        border-left: none;
        padding-left: 0;
    }

    .float-icon {
        width: 50px;
        height: 50px;
    }

    .floating-socials {
        bottom: 1rem;
        right: 1rem;
    }
}

/* About Us Section Designs */
.about-section {
    padding: 5rem 5%;
    background: radial-gradient(circle at 50% 50%, #1e293b 0%, #020617 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.about-row:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
}

.about-content h2.left-align {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enhanced-logo {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.15));
    transition: transform 0.4s;
}

.enhanced-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.3));
}

.rounded-logo {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Founder Section */
.founder-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.founder-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--gold-gradient);
    /* Using gold to highlight leadership */
    border-image: var(--gold-gradient) 1;
    padding: 3rem;
    border-radius: 0;
    /* Gradient borders usually need 0 or specialized radius handling, sticking to sleek box */
    text-align: center;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gold-gradient);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.3;
}

.founder-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.founder-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--neon-blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

@media (max-width: 768px) {

    /* Header & Nav */
    header {
        width: 100%;
        top: 0;
        border-radius: 0;
        padding: 1rem 1.5rem;
        flex-direction: row;
        /* Row to align logo and hamburger */
        justify-content: space-between;
        align-items: center;
        gap: 0;
        background: rgba(15, 23, 42, 0.98);
    }

    .logo-container {
        width: auto;
        gap: 0.5rem;
    }

    .logo-main {
        height: 35px;
    }

    .logo-secondary {
        height: 28px;
        padding-left: 0.5rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    nav {
        width: auto;
        padding-bottom: 0;
        overflow: visible;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav a {
        font-size: 1.1rem;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    /* Stats Grid */
    .stats-container {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 1.5rem;
    }

    /* About Us */
    .about-row,
    .about-row.reverse {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .about-content h2.left-align {
        text-align: center;
        font-size: 1.8rem;
    }

    .enhanced-logo {
        max-height: 200px;
    }

    .founder-card {
        padding: 1.5rem;
    }

    .founder-card h2 {
        font-size: 2rem;
    }

    /* Footer */
    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    /* Floating Icons */
    .floating-socials {
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        /* Horizontal on mobile for easier thumb reach */
    }

    .float-icon {
        width: 45px;
        height: 45px;
        margin-right: 0;
    }

    .float-icon:hover {
        transform: scale(1.1);
        /* Simple scale, no translation */
    }

    .tooltip {
        display: none;
        /* Hide tooltips on mobile */
    }
}

/* Why Choose Us & Stats */
.why-us-section {
    padding: 5rem 5%;
    text-align: center;
}

.why-us-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-us-content p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, #0f172a, #020617);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-blue);
}

.client-profile h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-profile span {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonial-card p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold-gradient);
    /* Will use color instead of gradient for text usually, but gold-text works */
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
    letter-spacing: 2px;
}



.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
    /* Neon glow */
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    /* Optional glow for icon */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--neon-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Innovation Section (Vanakkam Makka) */
.innovation-section {
    padding: 5rem 5%;
    background: linear-gradient(to right, #020617, #0f172a);
    position: relative;
    overflow: hidden;
}

.innovation-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.innovation-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovation-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.pulse-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--neon-blue);
    opacity: 0.2;
    z-index: 1;
    animation: pulse 3s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.innovation-content {
    flex: 1;
}

.innovation-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.innovation-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.innovation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.innovation-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .innovation-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .innovation-logo {
        width: 200px;
        height: 200px;
    }

    .pulse-circle {
        width: 200px;
        height: 200px;
    }

    .innovation-content h2 {
        font-size: 2.2rem;
    }
}