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

:root {
    --bg-light: #fdfdfd;
    --bg-alt: #f0f4f8;
    --text-main: #0f172a;
    --text-muted: #475569;
    --brand-teal: #0ea5e9;
    --brand-accent: #8b5cf6;
    --card-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    --border-soft: rgba(15, 23, 42, 0.08);
}

body, html {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    scroll-behavior: smooth;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    /* Soft gradient logo */
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Background Canvas - Premium AI Tech Style */
#canvas-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background-color: #030712;
    background-image: 
        radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, rgba(3, 7, 18, 0.9) 100%),
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px; 
    animation: pulse-grid 8s linear infinite alternate;
}

@keyframes pulse-grid {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6; /* More visible */
    animation: floatOrb 25s infinite ease-in-out alternate;
}

/* Soft Pastel Orbs */
.orb-1 { width: 600px; height: 600px; background: #bae6fd; top: -10%; left: -10%; opacity: 0.6; }
.orb-2 { width: 700px; height: 700px; background: #e9d5ff; bottom: -20%; right: -10%; animation-delay: -5s; opacity: 0.6; }
.orb-3 { width: 500px; height: 500px; background: #fecdd3; top: 30%; left: 50%; animation-delay: -10s; opacity: 0.5; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.3); }
}

/* Typography Tools */
.gradient-text-alt {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Typography Tools */
.serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--brand-teal);
    letter-spacing: 0;
}

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

/* Clean White Panels */
.glass-panel {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 32px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-panel:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); /* Soft elegant shadow */
    transform: translateY(-8px) scale(1.02);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 30, 0.95); /* Premium Dark Glassmorphism for contrast */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-links a {
    color: #f8fafc;
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-teal);
}

/* Buttons (Pills) */
.btn-primary {
    background: var(--brand-teal);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 999px; /* Pill */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.btn-outline {
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f8fafc;
}

/* Coach Image Neon Upgrade */
.coaching-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coach-img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #fdfdfd; 
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.coach-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Professional Soft Custom Button */
.btn-glow {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent));
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
    transform: translateY(-2px);
}

/* CREATIVE WELCOME SEQUENCE (Hybrid Dark Hero) */
header.dark-theme-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #030712; /* Deep elegant space black tailored for Hybrid hero */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    padding-top: 80px;
    position: relative;
    color: #f8fafc; /* Forced white text for dark area */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Clean break into Light Mode Body */
}

.welcome-sequence {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.welcome-small {
    font-size: 1.2rem;
    color: #94a3b8;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.welcome-company {
    font-size: 3.5rem;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.welcome-powered {
    font-size: 1rem;
    color: #cbd5e1;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.neon-identity .ai-didi-glow {
    font-size: 4rem; /* Reduced to fix bulkiness */
    font-weight: 700; /* Sleeker tech font */
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 4px; /* Positive letter spacing gives a premium tech aesthetic instead of bulky blocks */
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(14, 165, 233, 0.6),
        0 0 20px rgba(14, 165, 233, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3); /* Subtle, elegant glow instead of disco */
}

.dark-subheadline {
    color: #94a3b8 !important; /* Proper slate contrast for dark background */
}

/* Original hero fallback for white sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    z-index: 2;
}
.hero-headline {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Triple Threat Trust Badges */
.trust-badges-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-badge {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-business { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; border: 1px solid rgba(14,165,233,0.3); }
.badge-college { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.3); }
.badge-school { background: rgba(244, 63, 94, 0.1); color: #f43f5e; border: 1px solid rgba(244,63,94,0.3); }

/* Elite Skills Infinite Marquee */
.hero-skills-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 1.5rem 0;
    margin-top: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero-skills-marquee {
    display: inline-block;
    animation: marquee-scroll 30s linear infinite;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-skills-marquee span {
    padding: 0 1rem;
}

.hero-skills-marquee .dot {
    color: var(--brand-teal);
    opacity: 0.6;
}

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

/* Main Content Area */
.main-scroll-content {
    flex: 1;
    min-width: 0;
}

/* 3D Highlight Images */
.service-3d-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-item:hover .service-3d-img {
    transform: translateY(-15px) scale(1.03);
}

/* Shared Section Styles */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

section:nth-child(even) {
    background: var(--bg-alt);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--brand-teal);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    padding: 3rem 2.5rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.about-card p {
    color: var(--text-muted);
}

/* Skills/Services Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-item {
    padding: 3rem 2rem;
    text-align: left;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.skill-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.skill-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Highlighted specific cards */
.highlight-card {
    background: #fdfdfd;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft, non-distracting highlight */
}

/* Audience Tab System (EdTech Style Slider) */
.audience-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.audience-tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    margin-bottom: 2.5rem;
    padding-bottom: 15px; /* Space for box-shadows */
}

.audience-tabs-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.audience-tabs {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: max-content;
    justify-content: center;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.tab-btn:hover {
    background: var(--bg-alt);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--brand-teal);
    color: #fff;
    border-color: var(--brand-teal);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

/* Audience Content Panels */
.audience-panels-container {
    position: relative;
    min-height: 480px; /* Gives enough vertical space for the tallest card */
}

.audience-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 3.5rem 4rem;
}

.audience-panel.show-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    z-index: 5;
    padding: 2.5rem 3rem;
}

.panel-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.panel-header h3 {
    font-size: 1.6rem;
    color: var(--text-main);
}

.audience-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.badge {
    background: #eef2f2;
    color: var(--brand-teal);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.support-text {
    font-style: italic;
    color: var(--brand-teal);
    font-weight: 500;
    background: rgba(14, 165, 233, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

/* Registration Form (Overlapping the Footer Genus Style) */
.registration-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: -100px; /* Pulls the footer up under it */
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.form-subtitle {
    margin-bottom: 3rem;
    color: var(--text-muted);
}

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

.glowing-form .submit-btn {
    grid-column: 1 / -1;
}

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

.input-group input, 
.input-group select {
    width: 100%;
    padding: 1.2rem;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 999px; /* Pill inputs to match Genus */
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: var(--brand-teal);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
}

.form-status {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    grid-column: 1 / -1;
}

.form-status.success { color: var(--brand-teal); }

/* Black Footer (Clean Dark Mode Contrast) */
.footer {
    background: #111; /* Clean standard dark grey */
    color: #fff;
    padding: 12rem 0 4rem; /* Extra top padding for overlap */
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.brand-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.copyright {
    margin-top: 2rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.contact-info a {
    color: #d0d0d0;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fff;
}

/* Black Tech Bar */
.tech-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.tech-bar h5 {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #a0a0a0;
    font-weight: 500;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ---- MOVING 3D ROBOT SERVICES ---- */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

@keyframes float-robot {
    0% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-15px) scale(1.02) rotate(2deg); filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); }
    100% { transform: translateY(0px) scale(1) rotate(0deg); }
}

.premium-service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-robot-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: block;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 3px solid #fff;
    background: #fdfdfd;
    animation: float-robot 6s ease-in-out infinite;
}

/* Stagger floating animations slightly for different robots */
.premium-service-card:nth-child(2) .service-robot-img { animation-delay: 1s; }
.premium-service-card:nth-child(3) .service-robot-img { animation-delay: 2s; }
.premium-service-card:nth-child(4) .service-robot-img { animation-delay: 0.5s; }
.premium-service-card:nth-child(5) .service-robot-img { animation-delay: 1.5s; }

.service-card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-align: center;
    color: var(--text-main);
}

.preview-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

/* Read More Expanding UI */
.read-more-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth elastic expansion */
}

.read-more-content.expanded {
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 2rem;
}

.read-more-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-muted);
    border-left: 3px solid var(--brand-teal);
    padding-left: 1rem;
}

.read-more-btn {
    background: transparent;
    border: 2px solid var(--border-soft);
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--bg-alt);
    border-color: var(--brand-teal);
    color: var(--brand-teal);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.1);
}

.read-more-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more-btn.open .arrow {
    transform: rotate(180deg);
}

/* ---- NEW BUSINESS COACHING UPGRADES ---- */

/* Official News Ticker */
.news-ticker {
    background: #111;
    color: #fff;
    padding: 10px 0;
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 200;
    border-bottom: 2px solid var(--brand-teal);
}
.news-ticker marquee {
    display: flex;
    align-items: center;
}
.news-ticker strong {
    color: var(--brand-teal);
}

/* Sticky Enquire Now Tab (Right Side) */
.enquire-sticky-btn {
    position: fixed;
    right: -58px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-accent));
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1000;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    transition: right 0.3s ease;
}
.enquire-sticky-btn:hover {
    right: -54px;
}
.enquire-sticky-btn .arrow {
    transform: rotate(90deg);
    display: inline-block;
}

/* Business Coaching Profile Layout */
.coaching-panel {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
}
.coaching-content {
    flex: 1;
}
.coaching-image {
    flex: 0 0 380px;
}
.coach-img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border: 4px solid #fff;
}
.coach-intro {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.coach-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.coach-results {
    list-style: none;
    background: #f8fafc;
    border-left: 4px solid var(--brand-teal);
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
    font-size: 1.15rem;
}
.coach-results li {
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.coach-subheading {
    margin-top: 2rem;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
/* AI Insights Hub */
.insight-list li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-soft);
}
.insight-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.insight-list a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block;
    transition: all 0.3s ease;
}
.insight-list a:hover {
    color: var(--brand-teal);
    transform: translateX(5px);
}
.insight-list a::before {
    content: "→";
    color: var(--brand-accent);
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: bold;
}
.insight-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Responsiveness */
@media (max-width: 900px) {
    .about-grid, .skills-grid, .course-split {
        grid-template-columns: 1fr;
    }
    
    .coaching-panel {
        flex-direction: column;
        padding: 2rem;
    }

    .hero {
        flex-direction: column;
        padding-top: 140px;
        text-align: center;
    }

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

    .hero-3d-graphic, .hero-image-wrapper {
        margin-top: 4rem;
    }

    .navbar {
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-headline {
        font-size: 1.8rem !important;
        line-height: 1.2;
        white-space: normal !important;
    }
    .welcome-company {
        font-size: 1.6rem !important;
        white-space: normal !important;
        word-wrap: break-word;
        word-break: break-word;
    }
    .ai-didi-glow {
        font-size: 2.5rem !important;
        white-space: normal !important;
    }
    .welcome-small, .welcome-powered {
        font-size: 1rem;
    }
    .hero-subheadline {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .trust-badge-premium {
        padding: 1.2rem;
        transform: scale(0.9);
        width: 100%;
    }
    .trust-badges-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    .neon-identity {
        font-size: 1.2rem;
    }
    .audience-3d-grid {
        grid-template-columns: 1fr !important;
        margin-top: 2rem !important;
        gap: 4rem !important;
    }
    .ai-robotic-card {
        padding: 2.5rem 1rem 1.5rem !important;
    }
    .premium-services-grid {
        grid-template-columns: 1fr !important;
        overflow-x: hidden;
    }
}
