  /* ===== TABLE OF CONTENTS =====
1. CSS Reset & Base Styles
2. CSS Custom Properties (Variables)
3. Typography & Fonts
4. Layout Components
5. UI Components
6. Animations & Keyframes
7. Responsive Design
8. Dark Mode Styles
9. Utility Classes
========================== */

/* ===== 1. CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

/* ===== 2. CSS CUSTOM PROPERTIES (VARIABLES) ===== */
:root {
    --primary-light: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-light: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-light: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-light: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --bg-light: white;
    --text-light: #333;
    --card-light: rgba(255, 255, 255, 0.9);

    --primary-dark: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
    --secondary-dark: linear-gradient(135deg, #833ab4 0%, #fd1d1d 100%);
    --accent-dark: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
    --success-dark: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    --bg-dark: linear-gradient(135deg, #0c0c0c 0%, #434343 100%);
    --text-dark: #fff;
    --card-dark: rgba(255, 255, 255, 0.1);
    /* added new */
    --why-bus-p-dark: #ffffff94;
    --why-bus-p1-dark: rgb(138 139 140);
}

/* ===== 3. TYPOGRAPHY & FONTS ===== */
@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeui.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeuisb.ttf') format('ttf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('./fonts/segoeuib.woff') format('woff');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

.company-logo-text {
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1.1px;
    line-height: 1.1;
    color: #fff !important;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    opacity: 0.93;
}

/* ===== 4. LAYOUT COMPONENTS ===== */

  /* Base Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-light);
}

body.dark {
    background: var(--bg-dark);
    color: var(--text-dark);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: #111827;
}

.navbar-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1rem;
    color: white !important;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 0;
    padding: 0;
    display: inline-block;
    line-height: 44px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a,
.nav-links a * {
    text-decoration: none !important;
    color: inherit !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    line-height: 1.1 !important;
}

/* Force font size for navbar menu and icons with high specificity */
ul#navbarMenu>li>a.nav-link,
ul#navbarMenu>li>a.nav-link i {
    font-size: 15px !important;
}

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

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

/* Active menu style (same as hover) */
.nav-link.active,
.nav-link:focus {
    background: #1f2937 !important;
    color: #f472b6 !important;
    /* box-shadow: 0 2px 8px rgba(236,72,153,0.13); */
}

.theme-toggle {
    background: var(--primary-light);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    animation: floatBg 10s ease-in-out infinite;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease-out;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.trust-line {
    background: var(--success-light);
    color: black;
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem 0;
    font-weight: 400;
    animation: slideUp 1s ease-out 0.6s both;
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.8s both;
}

/* Section Layout */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.why-business {
    background: var(--light);
}

.bg-gray-50 {
    text-align: center !important;
}

.why-website {
    background: var(--card-light);
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-light);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* ===== 5. UI COMPONENTS ===== */

/* Button Components */
.btn {
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--primary-light);
    color: white;
}

.btn-secondary {
    background: var(--secondary-light);
    color: white;
}

.btn-accent {
    background: var(--accent-light);
    color: white;
}

/* Card Components */
.advantage-card {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s ease-in-out infinite;
}

.plan-card {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--secondary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-item {
    background: var(--card-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.team-member {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-light);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

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

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

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

/* Form Components */
.contact-info {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: var(--card-light);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.2);
}

/* Special Components - Grow Section */
.grow-intro-para {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3.5rem auto;
}

.grow-section {
    width: 100%;
    background: gainsboro;
    margin: 0;
    padding: 0;
}

.grow-bg {
    background: gainsboro;
    width: 100%;
}

.grow-title {
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.grow-feature-card {
    background: var(--card-light);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.grow-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transform: translateY(-6px) scale(1.03);
}

.grow-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.grow-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    color: #222;
    font-family: inherit;
}

.grow-feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0;
    font-family: inherit;
}

.grow-details {
    margin-top: 2rem;
}

.grow-detail-block {
    background: var(--card-light);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1.25rem;
    margin-bottom: 0.5rem;
}

/* Hamburger Menu Components */
.hamburger-icon.modern-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.2s;
}

.hamburger-svg-modern .bar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: currentColor;
    stroke-width: 1;
    stroke-linecap: round;
}

.hamburger-svg-modern .dot {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Dot color inherits currentColor */
}

.hamburger-open .hamburger-svg-modern .bar.top {
    transform: translateY(5px) rotate(45deg);
}

.hamburger-open .hamburger-svg-modern .bar.middle {
    opacity: 0;
    transform: scaleX(0.5);
}

.hamburger-open .hamburger-svg-modern .bar.bottom {
    transform: translateY(-5px) rotate(-45deg);
}

/* Animate dots with lines */
.hamburger-open .hamburger-svg-modern .dot-top {
    transform: translateY(5px) rotate(45deg);
}

.hamburger-open .hamburger-svg-modern .dot-middle {
    opacity: 0;
    transform: scaleX(0.5);
}

.hamburger-open .hamburger-svg-modern .dot-bottom {
    transform: translateY(-5px) rotate(-45deg);
}

#mobileMenuBtn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 0 !important;
}

#mobileMenuBtn .hamburger-icon {
    font-size: 1rem !important;
}

/* Special Effect Components */
.highlight-blink {
    background: linear-gradient(90deg, #f472b6 0%, #facc15 100%);
    padding: 0px 4px 4px 4px;
    border-radius: 0.4em;
    animation: blink-highlight 1s linear infinite;
}

.blink-red-border {
    color: #ef4444;
    border: 1.5px solid #ef4444 !important;
    background: #fff;
    animation: blink-red-bg 1s steps(2, start) infinite;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 0.72rem;
    padding: 2px 10px 2px 10px;
    transition: background 0.2s;
    box-shadow: 0 1px 4px rgba(239, 68, 68, 0.07);
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.18rem;
    line-height: 1.1;
}

/* FAQ Component */
.faq-active {
    background: white !important;
    border-radius: 0.75rem !important;
    /* rounded-xl */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    /* shadow-xl */
    border: 1px solid #f3f4f6 !important;
    /* border-gray-100 */
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.faq-active:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    /* enhanced shadow on hover */
}

/* Chat Scrollbar Components */
#chatMessages::-webkit-scrollbar {
    width: 4px;
}

#chatMessages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

#chatMessages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.fade-in {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBg {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-24px);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes blink-highlight {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

@keyframes blink-red-bg {
    0%, 100% {
        background: #fff;
    }
    50% {
        background: #ef4444;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* Animation Classes */
.animate-fadein {
    animation: fadein 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounce-slow 2.5s infinite;
}

/* ===== 7. RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .grow-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .grow-details {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles - General */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .grow-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .grow-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles - Small Screens (Consolidated) */
@media (max-width: 575.98px) {
    /* Hero Section Responsive */
    .hero-2 {
        min-height: auto !important;
        height: auto !important;
    }
    
    .hero-2 .cnt {
        min-height: auto !important;
        height: auto !important;
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-2 h1 {
        font-size: 3.1rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-2 .a-cont {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
    
    /* Hero Content Styling */
    .hero-heading .hero-line {
        margin-bottom: 0.25rem !important;
    }
    
    .hero-heading .hero-gradient-text {
        background: linear-gradient(180deg, #6366F1 0%, #A21CAF 60%, #F472B6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        margin-bottom: 0.25rem !important;
    }
    
    .hero-heading .hero-underline {
        margin-top: 0.75rem !important;
    }
    
    .demo-icon {
        margin: 0 !important;
    }
    
    .demo-text {
        text-align: center;
    }
    
    .flex.items-center.gap-4.mb-7.animate-fadein.delay-200 {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero h1 span {
        line-height: 36px !important;
    }
    
    .leading-relaxed {
        line-height: 1.5;
    }
    
    /* Navigation Responsive */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        background: #111827 !important;
        z-index: 50;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
    }
    
    .navbar .navbar-right {
        flex: 0 0 auto !important;
        min-width: unset !important;
    }
    
    .navbar .logo {
        display: flex !important;
        align-items: center !important;
    }
    
    .navbar .logo img {
        display: block !important;
    }
    
    #navbarMenu {
        display: none !important;
    }
    
    #mobileMenuBtn {
        display: flex !important;
    }
    
    #mobileDrawer {
        display: block !important;
    }
    
    #home.hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 56px !important;
    }
    
    /* Hero SVG Responsive */
    .hero-inner-flex {
        flex-direction: column-reverse !important;
    }
    
    .hero-svg-desktop {
        display: none !important;
    }
    
    .hero-svg-mobile {
        display: flex !important;
    }
    
    /* Drawer Menu Styling */
    .drawer-menu-icon {
        margin-right: 0.85em !important;
    }
    
    .drawer-bottom-section {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
    }
    
    .drawer-demo-btn {
        font-size: 1.08rem;
        padding: 0.85rem 1.2rem;
        border-radius: 0.7rem;
        background: linear-gradient(90deg, #6366F1 0%, #A21CAF 50%, #F472B6 100%);
        color: #fff !important;
        font-weight: 600;
        box-shadow: 0 2px 12px rgba(99, 102, 241, 0.13);
    }
    
    .drawer-demo-btn i {
        font-size: 1.1em;
    }
    
    .drawer-social {
        margin-top: 0.2rem;
    }
    
    .drawer-social a {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.18rem;
    }
    
    .get-a-free {
        flex-direction: column !important;
    }
    
    .hero-svg-mobile.mt-8 {
        margin-top: 0 !important;
    }
}

@media (min-width: 576px) {
    .hero-svg-mobile {
        display: none !important;
    }
}

/* ===== 8. DARK MODE STYLES ===== */

/* Dark Theme Navigation */
.dark .navbar {
    background: rgba(0, 0, 0, 0.9);
}

.dark .logo {
    background: linear-gradient(90deg, #fff 0%, #a8e6cf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff;
}

/* Dark Theme Hero */
.dark .hero-title {
    color: #fff !important;
    font-weight: bold;
}

.dark .hero h1 {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .trust-line {
    background: var(--success-dark);
}

/* Dark Theme Buttons */
.dark .btn-primary {
    background: var(--primary-dark);
}

.dark .btn-secondary {
    background: var(--secondary-dark);
}

.dark .btn-accent {
    background: var(--accent-dark);
}

/* Dark Theme Sections */
.dark .section-title {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .why-business {
    background: var(--dark);
}

.dark .why-business .p1 {
    color: var(--why-bus-p1-dark);
}

.dark .why-business-title {
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.dark .bg-gray-50 {
    background: var(--dark);
}

.dark .bg-gray-50 p {
    color: var(--why-bus-p-dark);
}

.dark .why-website {
    background: var(--card-dark);
}

/* Dark Theme Cards */
.dark .advantage-card {
    background: var(--card-dark);
}

.dark .advantage-icon {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .plan-card {
    background: var(--card-dark);
}

.dark .plan-card::before {
    background: var(--primary-dark);
}

.dark .service-card {
    background: var(--card-dark);
}

.dark .service-icon {
    background: var(--secondary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .portfolio-item {
    background: var(--card-dark);
}

.dark .portfolio-image {
    background: var(--accent-dark);
}

.dark .team-member {
    background: var(--card-dark);
}

.dark .team-avatar {
    background: var(--primary-dark);
}

.dark .contact-info {
    background: var(--card-dark);
}

.dark .contact-form {
    background: var(--card-dark);
}

.dark .footer {
    background: var(--primary-dark);
}

/* Dark Theme Grow Section */
.dark .grow-intro-para {
    color: rgb(138 139 140) !important;
}

.dark .grow-section,
.dark .grow-bg {
    background: var(--bg-dark);
}

.dark .grow-feature-card,
.dark .grow-detail-block {
    background: var(--card-dark);
    color: var(--text-dark);
}

.dark .grow-feature-title {
    color: #fff;
}

.dark .grow-feature-card p {
    color: #8a8b8c;
}

.dark .grow-title,
.dark .grow-feature-icon {
    background: var(--primary-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ===== 9. UTILITY CLASSES ===== */

.transition-all {
    transition: all 0.3s ease;
}

/* Pulse animation for chat input */
.pulse-focus:focus {
    animation: pulse 2s infinite;
}
