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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

/* Chameleon Color System */
:root {
    --chameleon-general: #0F172A;
    --chameleon-healthcare: #14B8A6;
    --chameleon-ayurveda: #15803D;
    --chameleon-realestate: #9F1239;
    --chameleon-logistics: #F97316;
    --chameleon-fashion: #D97706;
    --chameleon-makeup: #EC4899;
    --chameleon-tourism: #0EA5E9;
    --chameleon-artists: #18181B;
    --chameleon-techaudit: #6366F1;
    --current-chameleon: var(--chameleon-general);
}

/* Industry-Specific Chameleon Colors */
body.industry-healthcare { --current-chameleon: var(--chameleon-healthcare); }
body.industry-ayurveda { --current-chameleon: var(--chameleon-ayurveda); }
body.industry-realestate { --current-chameleon: var(--chameleon-realestate); }
body.industry-logistics { --current-chameleon: var(--chameleon-logistics); }
body.industry-fashion { --current-chameleon: var(--chameleon-fashion); }
body.industry-makeup { --current-chameleon: var(--chameleon-makeup); }
body.industry-tourism { --current-chameleon: var(--chameleon-tourism); }
body.industry-artists { --current-chameleon: var(--chameleon-artists); }
body.industry-techaudit { --current-chameleon: var(--chameleon-techaudit); }

/* Container */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar - SEO Strip */
.top-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #64748b;
    display: none; /* Hidden on mobile by default */
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-text {
    font-weight: 500;
}

.local-phone {
    color: #0ration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.local-phone:hover {
    color: #047857;
}

/* Main Header Bar */
.main-header-bar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px; /* Mobile first - 60px */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.header-logo:hover {
    color: var(--current-chameleon);
}

.header-logo img {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Inter', sans-serif;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--current-chameleon);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--current-chameleon);
    transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.book-audit-btn {
    background: var(--current-chameleon);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: 1px solid var(--current-chameleon);
}

.book-audit-btn:hover {
    background: white;
    color: var(--current-chameleon);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.call-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s;
    border: 2px solid #10b981;
}

.call-action:hover {
    background: white;
    color: #10b981;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    border-radius: 1px;
    transition: all 0.3s;
}

/* Industry Slider */
.industry-slider {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow: hidden;
}

/* Location Slider */
.location-slider {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow: hidden;
}

.location-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.location-pills::-webkit-scrollbar {
    display: none;
}

.slider-container {
    position: relative;
}

.industry-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.industry-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
    scroll-snap-align: start;
    flex-shrink: 0;
    white-space: nowrap;
}

.pill:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.pill.active {
    background: var(--current-chameleon);
    color: white;
    border-color: var(--current-chameleon);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-drawer.active {
    opacity: 1;
    visibility: visible;
}

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

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.close-drawer:hover {
    background: #f3f4f6;
    color: #374151;
}

.drawer-nav {
    padding: 20px;
    flex: 1;
}

.drawer-nav a {
    display: block;
    padding: 16px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.drawer-nav a:hover {
    color: var(--current-chameleon);
    padding-left: 12px;
}

.drawer-cta {
    background: var(--current-chameleon) !important;
    color: white !important;
    padding: 16px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 20px !important;
    border: none !important;
    font-weight: 600 !important;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.local-office h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.local-office p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.local-office p:last-child {
    margin-bottom: 0;
}

/* Dynamic Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

#industryPlayer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.background-image-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none;
}

.background-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 120px 20px 40px; /* Account for header */
}

.hero-left {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: var(--current-chameleon);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    border: 2px solid var(--current-chameleon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse-cta 3s infinite;
}

.cta-btn:hover {
    background: white;
    color: var(--current-chameleon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Ayurveda Spa Premium Glow */
body.industry-ayurveda .cta-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(217, 119, 6, 0.5);
}

body.industry-ayurveda .cta-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 119, 6, 0.7);
}

/* Tech Audit Cyber Glow */
body.industry-techaudit .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

body.industry-techaudit .cta-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.5);
}

body.industry-techaudit .cta-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.7);
}

/* Full Screen Sections */
.full-screen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.container.full-height-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Trust Bar */
.trust-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.trust-track {
    overflow: hidden;
    position: relative;
}

.trust-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 45s linear infinite;
}

.trust-icon {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
    width: auto;
    height: 80px;
}

.trust-icon:hover {
    opacity: 1;
}

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

/* Methodology Section */
.methodology {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.methodology .mono {
    color: var(--current-chameleon);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.methodology h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bento Grid */
.bento-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--current-chameleon);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.phase-tag {
    background: var(--current-chameleon);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.bento-card .text-muted {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: white;
    color: #1f2937;
}

.timeline-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-section .text-muted {
    font-size: 1.25rem;
    color: #6b7280;
}

.timeline-scroll-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline {
    display: flex;
    gap: 4rem;
    min-width: max-content;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 300px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--current-chameleon);
    border-radius: 50%;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--current-chameleon);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

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

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Kerala Spotlight */
.kerala-spotlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.kerala-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 
}

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

.kerala-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Case Study */
.case-study {
    background: #f8fafc;
}

.case-study-layout-intl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-video-intl {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-content-intl {
    padding: 2rem 0;
}

.case-label {
    background: var(--current-chameleon);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.case-content-intl h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #1f2937;
}

.audit-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-content-intl h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.case-result-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: center;
}

.case-result {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Industries */
.industries {
    background: white;
}

.industry-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-bg-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.industry-content {
    padding: 2rem;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.industry-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Locations */
.locations {
    background: #f8fafc;
}

.loc-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.loc-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.loc-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.loc-card .mono {
    color: var(--current-chameleon);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loc-card img {
    width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.loc-card .text-muted {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.loc-testimonial {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--current-chameleon);
    font-style: italic;
    color: #4b5563;
    margin-bottom: 2rem;
}

.local-links-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.local-tag {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.loc-link {
    color: var(--current-chameleon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.loc-link:hover {
    color: #1f2937;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--current-chameleon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #1f2937;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Navigation */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
    padding: 2rem;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--current-chameleon);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .top-bar {
        display: block;
    }

    .main-header-bar {
        height: 60px;
    }

    .header-logo {
        font-size: 1.125rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .bento-grid-wide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        min-width: auto;
    }

    .timeline-dot {
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .case-study-layout-intl {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industry-grid-wide {
        grid-template-columns: 1fr;
    }

    .loc-grid-wide {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }

    .main-header-bar {
        height: 80px;
    }

    .header-logo {
        font-size: 1.25rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .hero-left p {
        font-size: 1.25rem;
    }

    .cta-btn {
        font-size: 1.125rem;
        padding: 16px 32px;
    }

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

    .timeline {
        justify-content: center;
    }

    .case-study-layout-intl {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

@media (min-width: 1024px) {
    .bento-grid-wide {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-grid-wide {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Founder Welcome Section */
.founder-welcome {
    background: #ffffff;
    padding: 80px 0;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

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

.founder-header {
    text-align: center;
    margin-bottom: 40px;
}

.founder-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.founder-header .subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
}

.founder-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.founder-content p {
    margin-bottom: 24px;
}

.founder-content strong {
    color: #111827;
    font-weight: 600;
}

.founder-signature {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--current-chameleon);
    border: 2px solid #e5e7eb;
}

.founder-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.founder-info p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.founder-cta {
    text-align: center;
    margin-top: 40px;
}

/* Desktop Enhancements for Founder Section */
@media (min-width: 1024px) {
    .founder-welcome {
        padding: 100px 0;
    }
    .founder-content {
        font-size: 1.25rem; /* Larger text for desktop readability */
        max-width: 900px;
    }
}

/* Certificates Section */
.certificates-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 20px;
    color: white;
}

.certificates-header {
    text-align: center;
    margin-bottom: 60px;
}

.certificates-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificates-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.certificate-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.certificate-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 16px;
    }
    
    .certificates-header h2 {
        font-size: 2rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .certificate-card {
        padding: 24px;
    }
    
    .certificate-image {
        max-width: 100%;
    }
