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

:root {
    /* NeuraGlobal Brand Colors - Premium Palette */
    --primary-blue: #2196F3;
    --primary-blue-dark: #1565C0;
    --primary-blue-light: rgba(33, 150, 243, 0.1);
    --primary-red: #E53935;
    --primary-red-light: rgba(229, 57, 53, 0.1);
    --primary-green: #43A047;
    --primary-green-light: rgba(67, 160, 71, 0.1);
    --primary-yellow: #FFC107;
    --primary-yellow-light: rgba(255, 193, 7, 0.15);
    --dark-navy: #1A237E;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --text-secondary: #6b7280;
    --accent-green: #43A047;
    --background-white: #ffffff;
    --background-light: #ffffff;
    --border-color: #E8EAF6;
    --shadow-light: 0 2px 8px rgba(26, 35, 126, 0.06);
    --shadow-medium: 0 8px 24px rgba(26, 35, 126, 0.1);
    --shadow-heavy: 0 16px 48px rgba(26, 35, 126, 0.12);
    --transition-fast: 300ms ease;
    --transition-medium: 500ms ease;

    /* Premium Gradients */
    --gradient-blue: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
    --gradient-green: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    --gradient-red: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    --gradient-yellow: linear-gradient(135deg, #FFC107 0%, #FF8F00 100%);
    --gradient-navy: linear-gradient(135deg, #1A237E 0%, #0D47A1 100%);
    --gradient-multi: linear-gradient(135deg, #2196F3 0%, #43A047 50%, #FFC107 100%);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-multi);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--light-text);
}

/* Buttons - Premium Styling */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.45);
}

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

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

.btn-full {
    width: 100%;
}

/* Header & Navigation - Pearlax Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-white);
    box-shadow: none;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    /* Removed gap entirely to rely on spacing */
    flex-shrink: 0;
}

.logo-img {
    height: 38px;
    width: auto;
    margin-right: -5px;
    /* Pull text closer */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--dark-text);
    line-height: 1.1;
}

a.logo-subtext,
.logo-subtext {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    margin-top: 2px;
    text-decoration: none;
    line-height: 1.2;
}

a.logo-subtext:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Brand Color Text Classes */
.text-blue {
    color: var(--primary-blue);
}

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

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

.text-yellow {
    color: #F9A825;
}

/* Call GIF Styling */
.nav-contact-gif {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #666666;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: rgba(33, 150, 243, 0.05);
}

.nav-link.active {
    color: var(--primary-blue);
}

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

/* Nav Contact Section - Pearlax Style */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid #eee;
    flex-shrink: 0;
}

.nav-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(67, 160, 71, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.nav-contact:hover .nav-contact-icon {
    transform: scale(1.1);
    background: var(--gradient-blue);
    color: white;
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
}

.nav-contact-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-contact-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-contact-number:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section - Premium Enterprise */
.hero {
    padding: 100px 0 40px;
    background-color: var(--background-white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    cursor: default;
    transition: all 0.5s ease;
}

.hero.scrolled {
    padding: 80px 0 30px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    /* Increased from 750px */
}

/* ============================================
   ANIMATED HERO HEADLINE - Perfect Baseline Alignment
   ============================================ */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    text-align: left;
    white-space: nowrap;
}

/* Static "We" text - never moves */
.hero-static {
    display: inline-block;
    margin-right: 0.3em;
    /* Optical kerning space */
}

/* Container for rotating words - fixed dimensions */
.hero-word-container {
    display: inline-block;
    position: relative;
    height: 1.2em;
    /* Match line-height exactly */
    vertical-align: baseline;
    /* Lock to baseline */
    overflow: hidden;
    /* Hide non-active words */
}

/* Individual animated words */
.hero-word {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

/* Active word - visible and in position */
.hero-word.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

/* Exiting word - slides up and fades */
.hero-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* Specific Phrase Colors */
.text-blue {
    color: var(--primary-blue);
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.subtitle-item {
    font-weight: 600;
    white-space: nowrap;
}

.subtitle-dot {
    color: var(--light-text);
    opacity: 0.5;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    color: var(--light-text);
    line-height: 1.7;
}

/* CTA Buttons - Premium Effects */
.hero-cta {
    display: flex;
    gap: 20px;
}

/* Primary Button - Shimmer Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer .btn-glow {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-shimmer:hover .btn-glow {
    left: 100%;
}

.btn-shimmer:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.5);
}

/* Secondary Button - Border Animation */
.btn-border-anim {
    position: relative;
    overflow: hidden;
}

.btn-border-anim .btn-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
}

.btn-border-anim:hover .btn-border {
    animation: borderRotate 0.8s linear forwards;
}

@keyframes borderRotate {
    0% {
        clip-path: inset(0 100% 100% 0);
        border-color: var(--primary-blue);
    }

    25% {
        clip-path: inset(0 0 100% 0);
    }

    50% {
        clip-path: inset(0 0 0 0);
    }

    75% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
        border-color: var(--primary-green);
    }
}

.btn-border-anim:hover .btn-text {
    transform: translateY(-2px);
}

.btn-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hero Visual - AI Nodes */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-element {
    position: relative;
    width: 400px;
    height: 400px;
}

.ai-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-blue);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
    transition: all 0.8s ease;
}

.node-1 {
    top: 20%;
    left: 30%;
    animation: nodeFloat 4s ease-in-out infinite;
}

.node-2 {
    top: 40%;
    right: 20%;
    background: var(--primary-green);
    box-shadow: 0 0 20px rgba(67, 160, 71, 0.5);
    animation: nodeFloat 5s ease-in-out infinite 0.5s;
}

.node-3 {
    bottom: 30%;
    left: 20%;
    background: var(--primary-red);
    box-shadow: 0 0 20px rgba(229, 57, 53, 0.5);
    animation: nodeFloat 6s ease-in-out infinite 1s;
}

.node-4 {
    top: 60%;
    right: 35%;
    background: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    animation: nodeFloat 4.5s ease-in-out infinite 0.3s;
}

.node-5 {
    top: 30%;
    left: 60%;
    background: var(--dark-navy);
    box-shadow: 0 0 20px rgba(26, 35, 126, 0.5);
    animation: nodeFloat 5.5s ease-in-out infinite 0.7s;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }
}

.node-connection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cline x1='120' y1='80' x2='320' y2='160' stroke='rgba(33,150,243,0.2)' stroke-width='1'/%3E%3Cline x1='320' y1='160' x2='80' y2='280' stroke='rgba(67,160,71,0.2)' stroke-width='1'/%3E%3Cline x1='80' y1='280' x2='280' y2='240' stroke='rgba(229,57,53,0.2)' stroke-width='1'/%3E%3Cline x1='240' y1='120' x2='140' y2='200' stroke='rgba(255,193,7,0.2)' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.6;
    animation: connectionPulse 4s ease-in-out infinite;
}

@keyframes connectionPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* Premium animated cubes with brand colors */
.cube {
    position: absolute;
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.cube-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 2px solid rgba(33, 150, 243, 0.2);
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.cube-2 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.15) 0%, rgba(67, 160, 71, 0.05) 100%);
    border: 2px solid rgba(67, 160, 71, 0.2);
    bottom: 20px;
    right: 0;
    animation: float 7s ease-in-out infinite 1s;
}

.cube-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.08) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

/* Products Section - Multi-Color Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ============================================
   OFFERINGS SECTION - Homepage Preview Cards
   ============================================ */
.offerings-section {
    background: linear-gradient(180deg, #F8FAFF 0%, #ffffff 100%);
}

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

.offering-card {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Products Card - Blue Theme */
.offering-products {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-color: rgba(33, 150, 243, 0.2);
}

.offering-products:hover {
    background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
}

.offering-products .offering-icon {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.offering-products .offering-link {
    color: #1976D2;
}

/* Services Card - Green Theme */
.offering-services {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-color: rgba(67, 160, 71, 0.2);
}

.offering-services:hover {
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.offering-services .offering-icon {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
}

.offering-services .offering-link {
    color: #2E7D32;
}

/* About Card - Red Theme */
.offering-about {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border-color: rgba(229, 57, 53, 0.2);
}

.offering-about:hover {
    background: linear-gradient(135deg, #FFCDD2 0%, #EF9A9A 100%);
}

.offering-about .offering-icon {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
}

.offering-about .offering-link {
    color: #C62828;
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.offering-description {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.offering-link {
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.offering-card:hover .offering-link {
    gap: 12px;
}

.offering-link i {
    transition: transform 0.3s ease;
}

.offering-card:hover .offering-link i {
    transform: translateX(5px);
}

/* Responsive - Offerings */
@media (max-width: 991px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offering-card {
        padding: 35px 25px;
    }
}

@media (max-width: 575px) {
    .offering-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .offering-title {
        font-size: 1.3rem;
    }
}

/* Products Section */
.product-card {
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.product-card:nth-child(5n+1)::before {
    background: var(--gradient-blue);
}

.product-card:nth-child(5n+2)::before {
    background: var(--gradient-red);
}

.product-card:nth-child(5n+3)::before {
    background: var(--gradient-green);
}

.product-card:nth-child(5n+4)::before {
    background: var(--gradient-yellow);
}

.product-card:nth-child(5n+5)::before {
    background: var(--gradient-navy);
}

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

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

/* Alternating icon colors */
.product-card:nth-child(5n+1) .product-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.product-card:nth-child(5n+2) .product-icon {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

.product-card:nth-child(5n+3) .product-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.product-card:nth-child(5n+4) .product-icon {
    background: var(--primary-yellow-light);
    color: #F57C00;
}

.product-card:nth-child(5n+5) .product-icon {
    background: rgba(26, 35, 126, 0.1);
    color: var(--dark-text);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.product-description {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* Services Section - Premium Cards with Color Accents */
.services-section {
    background-color: var(--background-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:nth-child(6n+1)::after {
    background: var(--primary-blue);
}

.service-card:nth-child(6n+2)::after {
    background: var(--primary-green);
}

.service-card:nth-child(6n+3)::after {
    background: var(--primary-red);
}

.service-card:nth-child(6n+4)::after {
    background: var(--primary-yellow);
}

.service-card:nth-child(6n+5)::after {
    background: var(--dark-navy);
}

.service-card:nth-child(6n+6)::after {
    background: var(--primary-green);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.service-card:nth-child(6n+1) .service-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.service-card:nth-child(6n+2) .service-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.service-card:nth-child(6n+3) .service-icon {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

.service-card:nth-child(6n+4) .service-icon {
    background: var(--primary-yellow-light);
    color: #F57C00;
}

.service-card:nth-child(6n+5) .service-icon {
    background: rgba(26, 35, 126, 0.1);
    color: var(--dark-text);
}

.service-card:nth-child(6n+6) .service-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.service-description {
    font-size: 1rem;
    color: var(--light-text);
}

/* Why NeuraGlobal Section - Premium Value Cards */
.why-section {
    background: linear-gradient(180deg, #ffffff 0%, #F8F9FF 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.value-card:nth-child(5n+1)::before {
    background: var(--primary-blue);
}

.value-card:nth-child(5n+2)::before {
    background: var(--primary-green);
}

.value-card:nth-child(5n+3)::before {
    background: var(--primary-yellow);
}

.value-card:nth-child(5n+4)::before {
    background: var(--primary-red);
}

.value-card:nth-child(5n+5)::before {
    background: var(--dark-navy);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.value-card:nth-child(5n+1) .value-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.value-card:nth-child(5n+2) .value-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.value-card:nth-child(5n+3) .value-icon {
    background: var(--primary-yellow-light);
    color: #F57C00;
}

.value-card:nth-child(5n+4) .value-icon {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

.value-card:nth-child(5n+5) .value-icon {
    background: rgba(26, 35, 126, 0.1);
    color: var(--dark-text);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.value-description {
    font-size: 1rem;
    color: var(--light-text);
}

/* Clients Section - Premium Styling */
.clients-section {
    background-color: var(--background-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.client-card {
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.client-logo {
    font-size: 2.2rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.client-card:nth-child(6n+1) .client-logo {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.client-card:nth-child(6n+2) .client-logo {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

.client-card:nth-child(6n+3) .client-logo {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.client-card:nth-child(6n+4) .client-logo {
    background: var(--primary-yellow-light);
    color: #F57C00;
}

.client-card:nth-child(6n+5) .client-logo {
    background: rgba(26, 35, 126, 0.1);
    color: var(--dark-text);
}

.client-card:nth-child(6n+6) .client-logo {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.client-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.client-location {
    font-size: 0.95rem;
    color: var(--light-text);
}

.ratings-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.rating-card {
    text-align: center;
    padding: 35px;
    background-color: var(--background-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    min-width: 250px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.rating-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.rating-stars {
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.rating-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials Section - Premium */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FF 0%, #ffffff 100%);
}

.testimonials-strip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-badge {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-blue);
    transition: all var(--transition-medium);
}

.testimonial-badge:nth-child(3n+1) {
    border-left-color: var(--primary-blue);
}

.testimonial-badge:nth-child(3n+2) {
    border-left-color: var(--primary-green);
}

.testimonial-badge:nth-child(3n+3) {
    border-left-color: var(--primary-red);
}

.testimonial-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-text);
    font-size: 1.125rem;
    margin: 0;
}

/* ============================================
   FOUNDER'S NOTE SECTION - Premium Styling
   ============================================ */
.founder-section {
    background: linear-gradient(180deg, #F8F9FF 0%, #ffffff 100%);
    position: relative;
}

.founder-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Founder Image */
.founder-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 120px;
}

.founder-image-frame {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.15);
    border: 4px solid white;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
}

.founder-image-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green), var(--primary-yellow), var(--primary-red));
    border-radius: 24px;
    z-index: -1;
    animation: gradientRotate 6s linear infinite;
}

@keyframes gradientRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-image-frame:hover .founder-image {
    transform: scale(1.05);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Founder Letter Content */
.founder-content {
    flex: 1;
}

.founder-letter {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    position: relative;
}

.founder-letter::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary-blue-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.letter-greeting {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.letter-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.letter-body strong {
    color: var(--dark-text);
    font-weight: 600;
}

.letter-closing {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.founder-signature {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.signature-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signature-title {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
    margin: 0;
}

/* Founder Section Responsive */
@media (max-width: 991px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-wrapper {
        position: relative;
        top: 0;
    }

    .founder-image-frame {
        width: 250px;
        height: 250px;
    }

    .founder-letter {
        padding: 35px;
    }
}

@media (max-width: 575px) {
    .founder-image-frame {
        width: 200px;
        height: 200px;
    }

    .founder-letter {
        padding: 25px;
    }

    .founder-letter::before {
        font-size: 4rem;
        top: 10px;
        left: 15px;
    }

    .letter-greeting {
        font-size: 1.2rem;
    }

    .letter-body {
        font-size: 1rem;
        text-align: left;
    }

    .signature-name {
        font-size: 1.5rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ============================================
   PAGE HERO SECTION - For Subpages
   ============================================ */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #F0F4FF 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: var(--light-text);
}

.breadcrumb .current {
    color: var(--dark-text);
    font-weight: 500;
}

/* Intro Text */
.products-intro,
.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1565C0 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-google-primary {
    background-color: white;
    color: var(--primary-blue);
}

.cta-section .btn-google-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FEATURES GRID - For Services Page
   ============================================ */
.why-services-section {
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue-light), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* ============================================
   MISSION SECTION - For About Page
   ============================================ */
.mission-section {
    background-color: var(--background-light);
}

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

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.mission-text {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }

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

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .page-hero {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

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

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* Contact Section - Premium */
.contact-section {
    background-color: var(--background-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background-color: var(--background-white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: #FAFBFF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--background-white);
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #FAFBFF;
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.contact-method:hover {
    background-color: var(--primary-blue-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-method:nth-child(1) .contact-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.contact-method:nth-child(2) .contact-icon {
    background: var(--primary-red-light);
    color: var(--primary-red);
}

.contact-method:nth-child(3) .contact-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.contact-text {
    font-size: 1rem;
    color: var(--light-text);
    margin: 0;
}

.contact-note {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(67, 160, 71, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-note p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* Footer - Premium Dark Navy */
.footer {
    background: var(--gradient-navy);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-green), var(--primary-blue));
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-list {
    list-style: none;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 0.85;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .ratings-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

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

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-fast);
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
    }

    .nav-item {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-strip {
        flex-direction: column;
    }
}

/* ============================================
   CLEAN ANIMATIONS - Premium UI Enhancements
   ============================================ */

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs - Premium Hero Visual */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.95;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.orb-text {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--dark-text);
    pointer-events: none;
}

/* Specific text colors for better contrast */
.orb-1 .orb-text {
    color: #0D47A1;
}

/* Dark Blue */
.orb-2 .orb-text {
    color: #B71C1C;
}

/* Dark Red */
.orb-3 .orb-text {
    color: #1B5E20;
}

/* Dark Green */
.orb-4 .orb-text {
    color: #E65100;
}

/* Dark Orange/Yellow */

.orb-1 {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 1px solid rgba(33, 150, 243, 0.3);
    top: 5%;
    left: 5%;
    animation: orbFloat1 10s ease-in-out infinite;
}

.orb-2 {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.3);
    top: 55%;
    left: 5%;
    animation: orbFloat2 9s ease-in-out infinite 0.5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.15) 0%, rgba(67, 160, 71, 0.05) 100%);
    border: 1px solid rgba(67, 160, 71, 0.3);
    top: 15%;
    right: 5%;
    animation: orbFloat3 11s ease-in-out infinite 1s;
}

.orb-4 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    bottom: 10%;
    right: 15%;
    animation: orbFloat4 8s ease-in-out infinite 0.3s;
}

.orb-5 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.02) 100%);
    border: 1px solid rgba(26, 35, 126, 0.1);
    top: 40%;
    left: 45%;
    animation: orbFloat5 12s ease-in-out infinite 0.7s;
    z-index: -1;
    /* Push behind others */
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(15px, -20px) scale(1.02);
    }

    50% {
        transform: translate(25px, 10px) scale(0.98);
    }

    75% {
        transform: translate(-10px, 15px) scale(1.01);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -15px) rotate(5deg);
    }

    66% {
        transform: translate(-15px, 10px) rotate(-5deg);
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 25px) scale(1.05);
    }
}

@keyframes orbFloat4 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.9;
    }

    50% {
        transform: translate(15px, -20px);
        opacity: 1;
    }
}

@keyframes orbFloat5 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-10px, 15px) scale(1.02);
    }

    75% {
        transform: translate(10px, -10px) scale(0.98);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-multi);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.5);
}

/* Infinite Scroll Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 40px;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.clients-marquee {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-wrapper:hover .clients-marquee {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-card {
    flex-shrink: 0;
    min-width: 220px;
}

/* Offerings Marquee */
.offerings-marquee-wrapper {
    padding: 30px 0;
}

.offerings-marquee {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 20s linear infinite;
}

.offerings-marquee-wrapper:hover .offerings-marquee {
    animation-play-state: paused;
}

.offering-card {
    flex-shrink: 0;
    min-width: 350px;
    max-width: 350px;
    padding: 35px 30px;
    background: var(--background-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-light);
}

.offering-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: transparent;
}

.offering-products:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0.02) 100%);
    border-color: rgba(33, 150, 243, 0.3);
}

.offering-services:hover {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.05) 0%, rgba(67, 160, 71, 0.02) 100%);
    border-color: rgba(67, 160, 71, 0.3);
}

.offering-about:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.offering-products .offering-icon {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.offering-services .offering-icon {
    background: var(--primary-green-light);
    color: var(--primary-green);
}

.offering-about .offering-icon {
    background: var(--primary-yellow-light);
    color: #F57C00;
}

.offering-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.offering-description {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.offering-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.offering-card:hover .offering-link {
    gap: 12px;
}

/* Values Marquee - Reverse Direction */
.values-marquee-wrapper {
    padding: 30px 0;
}

.values-marquee {
    display: flex;
    gap: 30px;
    animation: marqueeScrollReverse 30s linear infinite;
}

.values-marquee-wrapper:hover .values-marquee {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(0);
    }
}

.value-card {
    flex-shrink: 0;
    min-width: 320px;
    max-width: 320px;
    padding: 35px 30px;
    background: var(--background-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-light);
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-blue);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-blue);
    transition: height 0.3s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    height: 100%;
}

.btn-secondary:hover span {
    color: white;
}

/* Enhanced Card Hover Effects */
.product-card,
.service-card,
.value-card,
.client-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.service-card:hover {
    transform: translateY(-10px);
}

.value-card:hover {
    transform: translateY(-10px);
}

.client-card:hover {
    transform: translateY(-8px) scale(1.03);
}

/* Icon Hover Animations */
.product-icon,
.service-icon,
.value-icon,
.client-logo {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) translateY(-3px);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.client-card:hover .client-logo {
    transform: scale(1.15);
}

/* Staggered Animation for Cards */
.product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.product-card:nth-child(6) {
    animation-delay: 0.3s;
}

.product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.service-card:nth-child(1) {
    animation-delay: 0.05s;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.15s;
}

.service-card:nth-child(4) {
    animation-delay: 0.2s;
}

.service-card:nth-child(5) {
    animation-delay: 0.25s;
}

.service-card:nth-child(6) {
    animation-delay: 0.3s;
}

/* Form Input Focus Animation */
.form-input:focus,
.form-textarea:focus {
    transform: translateY(-2px);
}

/* Contact Method Hover */
.contact-method {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-method:hover {
    transform: translateX(8px);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
}

/* Footer Link Hover Animation */
.footer-link {
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

/* Rating Card Hover */
.rating-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rating-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.rating-card:hover .rating-stars {
    animation: starPulse 0.6s ease;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Testimonial Badge Hover */
.testimonial-badge {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-badge:hover {
    transform: translateY(-6px) translateX(4px);
    border-left-width: 6px;
}

/* Smooth Section Transitions */
.section {
    transition: opacity 0.6s ease;
}

/* Loading Animation for Page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-visual {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .clients-marquee {
        gap: 20px;
    }

    .client-card {
        min-width: 180px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .orb {
        display: none;
    }
}

/* ============================================
   KPIT-STYLE SCROLL ANIMATIONS
   ============================================ */

/* Slide Up Animation (for cards) */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Left Animation */
.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right Animation */
.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Fade In with Longer Duration */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale Up Animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* Counter Value Animation Styling */
.rating-value {
    transition: all 0.3s ease;
}

/* Enhanced Section Titles with Slide */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s,
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.visible .section-title,
.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle Glow Effect */
#particle-canvas {
    filter: blur(0.5px);
}

/* Smooth Section Background Transitions */
.section {
    transition: background-color 0.5s ease;
}

/* Card Entrance Animation Enhancement */
.product-card,
.service-card,
.value-card {
    will-change: transform, opacity;
}

/* Rating Stars Animation on View */
.rating-card.visible .rating-stars {
    animation: starsAppear 0.8s ease forwards;
}

@keyframes starsAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glowing Orb Effect Enhancement */
.orb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

/* Premium Text Reveal Animation */
@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* ============================================
   GOOGLE-STYLE PROXIMITY BUTTONS
   ============================================ */

.btn-google-primary {
    position: relative;
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.btn-google-primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.4);
}

.btn-google-primary .btn-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-google-primary:hover .btn-hover-effect {
    width: 300%;
    height: 300%;
}

.btn-google-secondary {
    position: relative;
    background: transparent;
    color: var(--dark-text);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-google-secondary:hover {
    transform: scale(1.05) translateY(-3px);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.btn-google-secondary .btn-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(33, 150, 243, 0.08), transparent);
    transition: height 0.4s ease;
}

.btn-google-secondary:hover .btn-hover-effect {
    height: 100%;
}

/* Proximity Animation - Cursor Near Effect */
.btn-google-primary.proximity,
.btn-google-secondary.proximity {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.15);
}

.btn-google-primary .btn-text,
.btn-google-secondary .btn-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-google-primary:hover .btn-text,
.btn-google-secondary:hover .btn-text {
    transform: translateY(-1px);
}

/* ============================================
   CUSTOM CURSOR - Premium Interaction
   ============================================ */
body {
    cursor: none;
    /* Hide default cursor */
}

a,
button,
input,
textarea,
select {
    cursor: none;
    /* Hide default on interactive elements */
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(33, 150, 243, 0.5);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, transform 0.1s;
}

/* Hover State */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--primary-green);
    background-color: rgba(67, 160, 71, 0.05);
}

body.hovering .cursor-dot {
    background-color: var(--primary-green);
    transform: translate(-50%, -50%) scale(1.5);
}

/* Scroll Animation State - Tech Spinner */
body.scrolling .cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px dashed var(--primary-red);
    background-color: transparent;
    animation: cursorSpin 1s linear infinite;
}

body.scrolling .cursor-dot {
    background-color: var(--primary-red);
    transform: translate(-50%, -50%) scale(0.5);
}

@keyframes cursorSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Click Ripple Effect */
.cursor-ripple {
    position: fixed;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9997;
    animation: rippleBurst 0.6s ease-out forwards;
}

@keyframes rippleBurst {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Extra Large Devices (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-word-container {
        height: 1.2em;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* Large Devices / Laptops (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-word-container {
        height: 1.2em;
    }
}

/* Medium Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
    }

    .hero-subtitle {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        gap: 10px;
    }

    .nav-link {
        padding: 8px 8px;
        font-size: 0.85rem;
    }

    .nav-contact {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

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

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

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

/* Tablets / Medium Devices (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 25px;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-fast);
        box-shadow: var(--shadow-medium);
        padding: 30px 20px;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .nav-item {
        margin: 5px 0;
        width: 100%;
    }

    .nav-contact {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Hero Section */
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        white-space: nowrap;
        line-height: 1.2;
        justify-content: center;
    }

    .hero-word-container {
        height: 1.2em;
    }

    .hero-subtitle {
        justify-content: center;
        font-size: 1.1rem;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-visual {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .visual-element {
        width: 300px;
        height: 300px;
    }

    /* Orbs - Hide on tablet */
    .orb {
        display: none;
    }

    /* Sections */
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Clients */
    .client-card {
        min-width: 200px;
        padding: 25px;
    }

    .ratings-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .rating-card {
        width: 100%;
        max-width: 350px;
        min-width: auto;
    }

    /* Testimonials */
    .testimonials-strip {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-badge {
        min-width: 100%;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        order: 2;
    }

    .footer-links {
        order: 1;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        text-align: left;
    }

    .footer-column-title::after {
        left: 0;
    }
}

/* Small Tablets / Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Header */
    .header {
        padding: 0;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        white-space: nowrap;
    }

    .hero-word-container {
        height: 1.2em;
    }

    .hero-subtitle {
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }

    .subtitle-dot {
        display: none;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

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

    .btn-google-primary,
    .btn-google-secondary {
        width: 100%;
        padding: 14px 24px;
        text-align: center;
    }

    .visual-element {
        width: 250px;
        height: 250px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 25px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .product-description {
        font-size: 0.9rem;
    }

    /* Services */
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    /* Values */
    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .value-title {
        font-size: 1.15rem;
    }

    .value-description {
        font-size: 0.95rem;
    }

    /* Clients */
    .clients-marquee {
        gap: 15px;
    }

    .client-card {
        min-width: 180px;
        padding: 20px;
    }

    .client-logo {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .client-name {
        font-size: 1rem;
    }

    .client-location {
        font-size: 0.85rem;
    }

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

    .rating-stars {
        font-size: 1.5rem;
    }

    .rating-title {
        font-size: 1rem;
    }

    .rating-value {
        font-size: 1.25rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-badge {
        padding: 20px;
    }

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

    /* Contact */
    .contact-form-container {
        padding: 25px 20px;
    }

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

    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 1rem;
    }

    .contact-method {
        padding: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-title {
        font-size: 1rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-note {
        padding: 20px;
    }

    .contact-note p {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-tagline {
        font-size: 1rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Extra Small Devices / Phones (max-width: 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu {
        top: 60px;
        padding: 20px 15px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 15px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        justify-content: center;
        white-space: nowrap;
    }

    .hero-word-container {
        height: 1.2em;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-google-primary,
    .btn-google-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .visual-element {
        width: 200px;
        height: 200px;
    }

    .node {
        width: 8px;
        height: 8px;
    }

    /* Section */
    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
        margin-top: 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Products */
    .product-card {
        padding: 20px 15px;
        gap: 15px;
    }

    .product-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    /* Services */
    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    /* Values */
    .value-card {
        padding: 20px 15px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .value-title {
        font-size: 1.05rem;
    }

    .value-description {
        font-size: 0.9rem;
    }

    /* Clients */
    .client-card {
        min-width: 160px;
        padding: 18px;
    }

    .client-logo {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .client-name {
        font-size: 0.95rem;
    }

    .client-location {
        font-size: 0.8rem;
    }

    .rating-card {
        padding: 20px 15px;
    }

    .rating-stars {
        font-size: 1.3rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-badge {
        padding: 18px;
    }

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

    /* Contact */
    .contact-form-container {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-note {
        padding: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-list li {
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-tagline {
        font-size: 0.95rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    /* Back to Top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Touch Devices - Disable Custom Cursor */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }

    a,
    button,
    input,
    textarea,
    select {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Adjust hover effects for touch */
    .product-card:hover,
    .service-card:hover,
    .value-card:hover,
    .client-card:hover {
        transform: none;
    }

    .product-card:active,
    .service-card:active,
    .value-card:active,
    .client-card:active {
        transform: scale(0.98);
    }
}

/* Landscape Mode on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        display: none;
    }

    .visual-element {
        display: none;
    }

    .section {
        padding: 40px 0;
    }
}

/* Print Styles */
@media print {

    .header,
    .back-to-top,
    .scroll-progress,
    .cursor-dot,
    .cursor-outline,
    .hero-visual,
    .hamburger {
        display: none !important;
    }

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

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    .product-card,
    .service-card,
    .value-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   CONTACT MODAL & SOCIAL LINKS
   ============================================ */

/* Social Links in Contact Form */
.social-links-container {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.social-links-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    color: white;
}

.social-link-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.social-link-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-link-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-link-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Map Container */
.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    display: block;
}

/* Contact Method Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--background-white);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-red);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.modal-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    flex: 1;
    max-width: 150px;
}

.modal-option.email-option {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 2px solid rgba(229, 57, 53, 0.2);
}

.modal-option.email-option:hover {
    background: var(--gradient-red);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.3);
}

.modal-option.email-option:hover .option-icon,
.modal-option.email-option:hover .option-text {
    color: white;
}

.modal-option.whatsapp-option {
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0.05) 100%);
    border: 2px solid rgba(67, 160, 71, 0.2);
}

.modal-option.whatsapp-option:hover {
    background: var(--gradient-green);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(67, 160, 71, 0.3);
}

.modal-option.whatsapp-option:hover .option-icon,
.modal-option.whatsapp-option:hover .option-text {
    color: white;
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.email-option .option-icon {
    background: rgba(229, 57, 53, 0.15);
    color: var(--primary-red);
}

.whatsapp-option .option-icon {
    background: rgba(67, 160, 71, 0.15);
    color: var(--primary-green);
}

.option-text {
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-option .option-text {
    color: var(--primary-red);
}

.whatsapp-option .option-text {
    color: var(--primary-green);
}

/* Modal Responsive */
@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

    .modal-options {
        flex-direction: column;
    }

    .modal-option {
        max-width: 100%;
        flex-direction: row;
        padding: 20px;
    }

    .option-icon {
        width: 45px;
        height: 45px;
    }
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin: 15px 0;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    transform: translateY(-3px);
    color: white;
}

.footer-social-link[aria-label="LinkedIn"]:hover {
    background: #0077B5;
    border-color: #0077B5;
}

.footer-social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    border-color: #C13584;
}

.footer-social-link[aria-label="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

/* ============================================
   CASE STUDY PAGE STYLES
   ============================================ */

/* Case Study Hero */
.case-study-hero {
    padding: 120px 0 80px;
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    border: 1px solid rgba(33, 150, 243, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.case-study-badge i {
    font-size: 1rem;
}

.case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--light-text);
}

.meta-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Case Study Sections */
.case-study-section {
    padding: 80px 0;
}

.case-study-section.bg-light {
    background: var(--background-gray);
}

/* Highlight Box */
.case-study-highlight {
    display: flex;
    gap: 25px;
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-light);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.highlight-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
}

.highlight-note i {
    color: var(--primary-yellow);
}

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
    font-size: 1.5rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

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

.problem-conclusion {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Solution Cards */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: rgba(67, 160, 71, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 1.3rem;
}

.solution-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

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

.solution-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.solution-note i {
    font-size: 1.5rem;
}

/* Workflow */
.workflow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.workflow-step {
    background: var(--background-white);
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    min-width: 140px;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 15px;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.workflow-step h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.workflow-step p {
    font-size: 0.8rem;
    color: var(--light-text);
    line-height: 1.4;
}

.workflow-arrow {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.workflow-result {
    text-align: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 12px;
    font-size: 1.1rem;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.impact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--background-white);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-blue);
}

.impact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(67, 160, 71, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.impact-card p {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.4;
}

.impact-quote {
    margin-top: 40px;
    text-align: center;
}

.impact-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark-text);
    padding: 30px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(67, 160, 71, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

/* Recognition */
.recognition-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.recognition-content {
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.recognition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.recognition-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.recognition-list {
    list-style: none;
    padding: 0;
}

.recognition-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--dark-text);
}

.recognition-list li i {
    color: var(--primary-green);
    margin-top: 3px;
}

.acknowledgement-content {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(229, 57, 53, 0.02) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(229, 57, 53, 0.1);
    text-align: center;
}

.acknowledgement-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 15px;
}

.acknowledgement-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.acknowledgement-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Mission Statement */
.mission-statement {
    text-align: center;
    margin-bottom: 40px;
}

.mission-statement blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    padding: 30px;
    background: linear-gradient(135deg, rgba(67, 160, 71, 0.1) 0%, rgba(67, 160, 71, 0.05) 100%);
    border-radius: 16px;
}

/* Capabilities Grid */
.capabilities-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--background-white);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-green);
}

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

/* Responsive */
@media (max-width: 992px) {
    .recognition-container {
        grid-template-columns: 1fr;
    }

    .case-study-highlight {
        flex-direction: column;
        text-align: center;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .case-study-meta {
        flex-direction: column;
        gap: 15px;
    }

    .case-study-highlight {
        padding: 25px;
    }

    .workflow-step {
        min-width: 100%;
    }
}

/* Proof Images Grid */
.proof-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.proof-image-card {
    background: var(--background-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.proof-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.proof-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(67, 160, 71, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.proof-image-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.6;
}

.proof-image-placeholder p {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 500;
}

.proof-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.proof-image-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 20px 20px 10px;
}

.proof-image-card>p {
    font-size: 0.9rem;
    color: var(--light-text);
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms) STYLES
   ============================================ */

.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.legal-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.legal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(67, 160, 71, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.legal-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li i {
    color: var(--primary-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.legal-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.legal-notice i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.legal-notice p {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-white);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: var(--background-gray);
}

.faq-question i {
    width: 45px;
    height: 45px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(67, 160, 71, 0.05) 100%);
    border-radius: 20px;
}

.faq-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 25px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 20px;
    }

    .faq-cta {
        padding: 30px 20px;
    }
}

/* ============================================
   HERO VISUAL & INNOVATION BUBBLES
   ============================================ */

.hero-visual {
    position: relative;
    width: 50%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure it doesn't overlap header */
    z-index: 1;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
    cursor: default;
    background-clip: padding-box;
}

.orb:hover {
    transform: scale(1.08) translateY(-5px);
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
}

.orb-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    opacity: 0.95;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

/* Blue Orb - Trust */
.orb-1 {
    width: 290px;
    height: 290px;
    top: 0%;
    left: -5%;
    background: radial-gradient(circle at 30% 30%, rgba(66, 133, 244, 0.15), rgba(66, 133, 244, 0.02));
    border-color: rgba(66, 133, 244, 0.2);
    animation-delay: 0s;
    z-index: 2;
}

.orb-1 .orb-text {
    color: #0d47a1;
}

/* Red Orb - Energy */
.orb-2 {
    width: 330px;
    height: 330px;
    bottom: -5%;
    left: 5%;
    background: radial-gradient(circle at 30% 30%, rgba(234, 67, 53, 0.12), rgba(234, 67, 53, 0.02));
    border-color: rgba(234, 67, 53, 0.2);
    animation-delay: -2s;
    z-index: 3;
}

.orb-2 .orb-text {
    color: #b71c1c;
}

/* Green Orb - Growth */
.orb-3 {
    width: 270px;
    height: 270px;
    top: 10%;
    right: 0%;
    background: radial-gradient(circle at 30% 30%, rgba(52, 168, 83, 0.12), rgba(52, 168, 83, 0.02));
    border-color: rgba(52, 168, 83, 0.2);
    animation-delay: -4s;
    z-index: 1;
}

.orb-3 .orb-text {
    color: #1b5e20;
}

/* Yellow Orb - Optimism */
.orb-4 {
    width: 310px;
    height: 310px;
    top: 40%;
    right: 15%;
    background: radial-gradient(circle at 30% 30%, rgba(251, 188, 4, 0.12), rgba(251, 188, 4, 0.02));
    border-color: rgba(251, 188, 4, 0.3);
    animation-delay: -1s;
    z-index: 4;
}

.orb-4 .orb-text {
    color: #e65100;
}

/* Decorator Orb */
.orb-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -10%;
    background: white;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    z-index: 5;
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-5::after {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--primary-blue);
    border-radius: 50%;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .hero-visual {
        display: none;
        /* Hide complex animation on tablet/mobile for performance and space */
    }
}



/* ============================================
   MSME CERTIFICATE PAGE STYLES
   ============================================ */

.msme-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.certificate-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border: 10px double #ddd;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.certificate-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #eee;
    pointer-events: none;
}

.certificate-header {
    text-align: center;
    margin-bottom: 40px;
}

.emblem-img {
    width: 60px;
    margin-bottom: 15px;
}

.certificate-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.certificate-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.udyam-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #333;
    letter-spacing: 1px;
}

.certificate-body {
    font-family: 'Roboto', sans-serif;
}

.certificate-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.highlight-row {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #eee;
    align-items: center;
}

.cert-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}

.cert-value {
    font-weight: 700;
    color: #000;
    font-size: 1.05rem;
}

.udyam-number {
    font-size: 1.4rem;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.certificate-divider {
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

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

.certificate-grid .cert-item {
    margin-bottom: 10px;
}

.certificate-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.address-block {
    line-height: 1.6;
}

.nic-table-wrapper {
    overflow-x: auto;
}

.nic-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.nic-table th,
.nic-table td {
    padding: 10px;
    border: 1px solid #eee;
    text-align: left;
}

.nic-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.certificate-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Nav Link Style */
a.logo-subtext {
    text-decoration: none;
    transition: color 0.3s ease;
}

a.logo-subtext:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Mobile Responsiveness for Certificate */
@media (max-width: 768px) {
    .certificate-container {
        padding: 30px 20px;
        border-width: 5px;
    }

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

    .highlight-row {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .udyam-number {
        font-size: 1.1rem;
    }
}

/* ============================================
   SECTORS MARQUEE STYLES (About Page)
   ============================================ */

.sectors-section {
    padding: 60px 0;
    background-color: #f8faff;
    overflow: hidden;
}

.sectors-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.sectors-marquee-wrapper::before,
.sectors-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sectors-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8faff, transparent);
}

.sectors-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8faff, transparent);
}

.sectors-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.sectors-marquee:hover {
    animation-play-state: paused;
}

.sector-card {
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.sector-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    background: rgba(33, 150, 243, 0.08);
    /* Light blue bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
}

/* Ensure Scroll Animation Exists (if not already defined) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves half the total width (the original set) */
    }
}

/* ============================================
   FOUNDER IMAGE GEMINI ANIMATION
   ============================================ */

.founder-image-frame {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    /* Border thickness */
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.founder-image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            #4285F4,
            #9b72cb,
            #d96570,
            #12bfae,
            #F9AB00,
            #4285F4);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
}

.founder-image-frame::after {
    content: '';
    position: absolute;
    inset: 4px;
    /* Must match padding */
    background: #fff;
    /* White background behind image */
    border-radius: 20px;
    /* Slightly less than parent */
    z-index: 0;
}

/* ============================================
   SPECIAL DAYS POPUP MODAL
   ============================================ */
.special-day-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.special-day-modal.active {
    opacity: 1;
    pointer-events: all;
}

.special-day-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.special-day-modal.active .special-day-content {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
}

.close-modal-btn:hover {
    color: var(--primary-red);
}

.special-day-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.special-day-wish {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
}

.special-day-divider {
    height: 1px;
    background: #eee;
    width: 60%;
    margin: 15px auto;
}

.special-day-reason {
    font-size: 0.9rem;
    color: #666;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

.special-day-footer {
    margin-top: 25px;
}

.close-modal-action {
    padding: 10px 30px;
}

.founder-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 350px;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sector-card {
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
    border-color: rgba(33, 150, 243, 0.2);
}

.sector-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    background: rgba(33, 150, 243, 0.08);
    /* Light blue bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
}

/* Ensure Scroll Animation Exists (if not already defined) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves half the total width (the original set) */
    }
}

/* ============================================
   CERTIFICATE VERIFICATION PREMIUM ANIMATIONS
   ============================================ */

.verification-result-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.verification-result-card.show {
    opacity: 1;
    transform: translateY(0);
}

.success-icon-wrapper, .failure-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.success-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(67, 160, 71, 0.08);
    border: 3px solid var(--primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    font-size: 2rem;
    position: relative;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, pulseGreen 2s infinite 0.6s;
}

.failure-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(229, 57, 53, 0.08);
    border: 3px solid var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    font-size: 2rem;
    position: relative;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, pulseRed 2s infinite 0.6s;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(67, 160, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0);
    }
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.verification-table tr {
    transition: background-color 0.2s ease;
}

.verification-table tr:hover {
    background-color: rgba(33, 150, 243, 0.02);
}