
    /*
===========================================
GROWBUSINESS.CSS - ORGANIZED STRUCTURE
===========================================

TABLE OF CONTENTS:
1. FONT DECLARATIONS
2. BASE RESET & VARIABLES
3. GLOBAL STYLES & THEME
4. COMPONENT STYLES
   4.1 Buttons
   4.2 Sections & Typography
   4.3 Theme Toggle
5. NAVIGATION
   5.1 Navbar Base
   5.2 Navigation Links
   5.3 Hamburger Menu
6. CONTENT SECTIONS
   6.1 Advantage Cards
   6.2 Social Links
   6.3 Grow Section
   6.4 Footer
7. ANIMATIONS & EFFECTS
8. RESPONSIVE DESIGN
   8.1 Tablet Styles
   8.2 Mobile Styles
   8.3 Small Mobile Styles

===========================================
*/

/* ===========================================
   1. FONT DECLARATIONS
   =========================================== */
@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;
}

/* ===========================================
   2. BASE RESET & VARIABLES
   =========================================== */
html,
body {
  overflow-x: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Theme Colors */
  --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);

  /* Dark Theme Colors */
  --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);
  
  /* Custom Variables */
  --why-bus-p-dark: #ffffff94;
  --why-bus-p1-dark: rgb(138 139 140);
}

/* ===========================================
   3. GLOBAL STYLES & THEME
   =========================================== */
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);
}

/* ===========================================
   4. COMPONENT STYLES
   =========================================== */

/* 4.1 Buttons */

.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;
}

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

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

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

/* 4.2 Sections & Typography */
.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;
}

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

/* 4.3 Theme Toggle */
.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);
}

/* ===========================================
   5. NAVIGATION
   =========================================== */

/* 5.1 Navbar Base */
.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);
}

.dark .navbar {
  background: rgba(0, 0, 0, 0.9);
}

.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;
}

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

/* 5.2 Navigation Links */
.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;
}

.nav-link:focus {
  background: #1f2937 !important;
  color: #f472b6 !important;
}

/* Force font size for navbar menu and icons */
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%;
}

/* 5.3 Hamburger Menu */
.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);
}

/* Hamburger Animation States */
.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);
}

.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;
}

/* ===========================================
   6. CONTENT SECTIONS
   =========================================== */

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

.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);
}

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

.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;
}

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

/* 6.2 Social Links */
.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);
}

/* 6.3 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;
}

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

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

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

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

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

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

/* 6.4 Footer */
.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;
}

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

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

.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;
}

/* ===========================================
   7. ANIMATIONS & EFFECTS
   =========================================== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

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

/* ===========================================
   8. RESPONSIVE DESIGN
   =========================================== */

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

  .grow-details {
    grid-template-columns: 1fr;
  }
}

/* 8.2 Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .grow-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

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

/* 8.3 Small Mobile Styles */
@media (max-width: 575.98px) {
  /* Navbar Mobile Fixes */
  .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;
  }

  /* Fixed Navbar Background */
  .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);
  }

  /* Mobile Menu Components */
  .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;
  }

  /* Layout Adjustments */
  .get-a-free {
    flex-direction: column !important;
  }

  .hero-svg-mobile.mt-8 {
    margin-top: 0 !important;
  }
}
