:root {
  --primary-color: #0f172a;
  --secondary-color: #3b82f6;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --text-color: #334155;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
section {
  scroll-margin-top: 80px;
}

/* Enhanced Navigation Styles */
.navbar {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 0.75rem 0;
  min-height: 70px;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.98) !important;
  box-shadow: var(--shadow-lg);
}

/* Brand Styling */
.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-color) !important;
}

.logo-img {
  height: 35px;
  width: auto;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05);
}

.brand-text {
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Mobile Toggle Button */
.navbar-toggler {
  padding: 0.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.2em;
  height: 1.2em;
}

/* Navigation Menu */
.navbar-collapse {
  margin-top: 1rem;
}

.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-item {
  margin-bottom: 0.5rem;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.navbar-nav .nav-link i {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Dropdown Styling */
.dropdown-toggle {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
  text-decoration: none;
  border: none;
  background: none;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color) !important;
  transform: translateX(5px);
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item i {
  font-size: 0.85rem;
  opacity: 0.8;
  width: 16px;
}

/* CTA Button */
.nav-cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 0.75rem 1.5rem !important;
  font-weight: 600 !important;
  color: white !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
  color: white !important;
}

.nav-cta i {
  font-size: 0.9rem;
}

/* Desktop Styles */
@media (min-width: 992px) {
  .navbar {
    padding: 1rem 0;
  }

  .navbar-collapse {
    margin-top: 0;
  }

  .navbar-nav {
    gap: 0;
    flex-direction: row;
  }

  .navbar-nav .nav-item {
    margin-bottom: 0;
  }

  .navbar-nav .nav-link {
    margin: 0 0.5rem;
    padding: 0.5rem 0;
    background: transparent !important;
    border-radius: 0;
    transform: none !important;
    position: relative;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }

  .navbar-nav .nav-link:hover {
    background: transparent !important;
    transform: none !important;
  }

  .dropdown-menu {
    position: absolute;
    margin-top: 0.75rem;
  }

  .nav-cta {
    margin-left: 1rem !important;
    width: auto !important;
  }

  /* Hide mobile icons on desktop */
  .navbar-nav .nav-link i.d-lg-none {
    display: none !important;
  }
}

/* Mobile Specific Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(15, 23, 42, 0.98);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease-out;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    margin-left: 1rem;
  }

  .nav-cta {
    width: 100% !important;
    margin-top: 1rem !important;
  }

  /* Show mobile icons */
  .navbar-nav .nav-link i.d-lg-none {
    display: inline-block !important;
  }
}

/* Animation for mobile menu */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small screen adjustments */
@media (max-width: 576px) {
  .brand-text {
    font-size: 0.9rem;
  }

  .logo-img {
    height: 30px;
    margin-right: 0.5rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }
}

/* Extra small screens - hide brand text */
@media (max-width: 480px) {
  .brand-text.d-none.d-sm-inline {
    display: none !important;
  }

  .logo-img {
    margin-right: 0;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  overflow: hidden;
  padding-top: 100px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(06, 182, 212, 0.1) 0%, transparent 50%);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(2) {
  animation-delay: -2s;
}

.float-element:nth-child(3) {
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  margin-right: 0.5rem;
  color: var(--success-color);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-mockup {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.dashboard-mockup img {
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 4s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  right: -10%;
}

.card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: -2s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.card-icon.green {
  background: var(--success-color);
}

.card-icon.blue {
  background: var(--secondary-color);
}

.card-title {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* Section Styles */
.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-number {
  width: 32px;
  height: 32px;
  background: var(--warning-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card.featured .service-title {
  color: white;
}

.service-description {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card.featured .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

.service-card.featured .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-features i {
  color: var(--success-color);
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.service-card.featured .service-features i {
  color: rgba(255, 255, 255, 0.8);
}

.service-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-card.featured .service-link {
  color: white;
}

.service-link:hover {
  gap: 0.5rem;
}

.service-link i {
  margin-left: 0.25rem;
  transition: margin-left 0.3s ease;
}

/* About Section */
.about-section {
  padding: 6rem 0;
}

.about-visual {
  position: relative;
}

.about-visual img {
  box-shadow: var(--shadow-xl);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-content i {
  color: var(--warning-color);
  font-size: 1.5rem;
}

.badge-title {
  font-weight: 600;
  color: var(--primary-color);
}

.badge-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.about-content {
  padding-left: 2rem;
}

.about-intro {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.about-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h5 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-600);
  margin: 0;
}

.support-info {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.support-item h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.support-list {
  list-style: none;
  margin: 0;
}

.support-list li {
  color: var(--gray-600);
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1rem;
}

.support-list li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--gray-50);
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: white;
  transform: scale(1.05);
  border: 3px solid var(--secondary-color);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warning-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.pricing-card.featured .plan-icon {
  background: rgba(255, 255, 255, 0.2);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-card.featured .plan-name {
  color: white;
}

.plan-price {
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
}

.pricing-card.featured .currency {
  color: rgba(255, 255, 255, 0.8);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card.featured .amount {
  color: white;
}

.period {
  font-size: 1rem;
  color: var(--gray-600);
}

.pricing-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}

.plan-description {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.pricing-card.featured .plan-description {
  color: rgba(255, 255, 255, 0.9);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--gray-600);
}

.pricing-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.9);
}

.plan-features i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

.pricing-card.featured .plan-features i {
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
}

.contact-info {
  padding-right: 2rem;
}

.contact-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.method-info h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.method-info p {
  color: var(--gray-600);
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--accent-color);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-bottom: 3rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.cta-features .feature i {
  color: var(--success-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  margin-bottom: 3rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-brand h5 {
  font-weight: 600;
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-menu li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Terms Page Styles */
.terms-section {
  padding: 120px 0 60px;
  background: var(--gray-50);
}

.terms-header {
  margin-bottom: 4rem;
}

.terms-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.terms-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.terms-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.terms-text {
  margin-bottom: 3rem;
}

.terms-text .lead {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.terms-section-item {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.terms-section-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.terms-section-item h5 i {
  color: var(--secondary-color);
}

.terms-section-item p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.terms-section-item strong {
  color: var(--primary-color);
}

.agreement-form {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
}

.form-header h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.terms-form .form-group {
  margin-bottom: 1.5rem;
}

.required {
  color: var(--danger-color);
}

.email-verification-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-status {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.email-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.email-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.email-status.info {
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary-color);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.otp-input-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.otp-input-group input {
  flex: 1;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--success-color);
}

/* KYC Page Styles */
.kyc-section {
  padding: 120px 0 60px;
  background: var(--gray-50);
}

.kyc-header {
  margin-bottom: 4rem;
  text-align: center;
}

.kyc-header .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.kyc-header .section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* MITC Styles */
.mitc-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.mitc-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.mitc-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mitc-title i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.mitc-content {
  max-width: none;
}

.mitc-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 16px;
  border-left: 4px solid var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.mitc-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.mitc-text {
  flex: 1;
}

.mitc-text p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-color);
  font-size: 1.05rem;
}

.mitc-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.note-section {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.note-section h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.note-section h6 i {
  font-size: 1.2rem;
}

.note-list {
  margin: 0;
  padding-left: 1.5rem;
}

.note-list li {
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.grievance-steps {
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 70px;
  height: 35px;
  background: var(--warning-color);
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
}

.step-content a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.step-content a:hover {
  text-decoration: underline;
}

/* KYC Form Styles */
.kyc-form-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-title i {
  font-size: 2.25rem;
  color: var(--secondary-color);
}

.form-subtitle {
  color: var(--gray-600);
  font-size: 1.15rem;
  line-height: 1.5;
}

.form-section {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section .section-title i {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1rem;
}

.required {
  color: var(--danger-color);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  background: white;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-help {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* File Upload Styles */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.file-upload-wrapper:hover {
  border-color: var(--secondary-color);
  background: rgba(59, 130, 246, 0.05);
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
}

.file-upload-text i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.file-upload-text strong {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.file-upload-text small {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.file-upload-wrapper.has-file {
  border-color: var(--success-color);
  background: rgba(16, 185, 129, 0.05);
}

.file-upload-wrapper.has-file .file-upload-text {
  color: var(--success-color);
}

.file-upload-wrapper.has-file i {
  color: var(--success-color);
}

/* Consent Section */
.consent-section {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--border-color);
  margin-top: 2rem;
}

.consent-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.consent-section .section-title i {
  font-size: 1.75rem;
  color: var(--secondary-color);
}

.consent-check {
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.consent-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
}

.consent-check .form-check-label {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-left: 0.75rem;
}

.consent-check .form-check-label strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.form-actions .btn {
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  margin: 0 0.5rem;
}

.form-footer {
  text-align: center;
  margin-top: 2rem;
}

.security-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  padding: 1rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-weight: 500;
}

.security-note i {
  font-size: 1.1rem;
}

/* Success Modal Styles */
.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--success-color);
}

.next-steps {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.next-steps h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps ul {
  margin: 0;
  padding-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Investor Charter Styles */
.charter-section {
  margin-bottom: 4rem;
}

.charter-header {
  margin-bottom: 3rem;
  text-align: center;
}

.charter-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.charter-title i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.charter-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* Vision and Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vision-card,
.mission-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Business Details */
.business-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.business-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.business-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.business-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.business-content p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.service-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.service-item p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}

/* Loading Animation */
.btn.loading {
  position: relative;
  color: transparent !important;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Form Validation States */
.form-control.is-valid {
  border-color: var(--success-color);
}

.form-control.is-invalid {
  border-color: var(--danger-color);
}

.invalid-feedback {
  display: block;
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.valid-feedback {
  display: block;
  color: var(--success-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}

/* Focus States */
.btn:focus,
.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Print Styles */
@media print {
  .navbar,
  .hero-section,
  .cta-section,
  .footer {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .logo-img{
    height:3rem;
     width:3rem
  }
  .hero-buttons {
    justify-content: center !important;
  }

  .service-card .service-title {
    text-align: center;
  }

  .kyc-section,
  .terms-section {
    padding: 100px 0 40px;
  }

  .mitc-section,
  .kyc-form-section,
  .terms-content {
    padding: 2rem 1.5rem;
  }

  .mitc-item {
    flex-direction: column;
    gap: 1rem;
  }

  .mitc-number {
    align-self: flex-start;
  }

  .form-section {
    padding: 1.5rem;
  }

  .file-upload-wrapper {
    padding: 1.5rem;
  }

  .form-actions .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .form-actions .btn.ms-3 {
    margin-left: 0 !important;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 3rem;
  }

  .footer-links {
    text-align: center;
    margin-bottom: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6:last-child {
    margin-top: 1rem;
  }

  /* Investor Charter Mobile Styles */
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .business-item {
    flex-direction: column;
    gap: 1rem;
  }

  .business-icon {
    align-self: flex-start;
  }
}

/* Image optimizations */
.hero-visual img,
.about-visual img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.hero-visual img:hover,
.about-visual img:hover {
  transform: scale(1.02);
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}
