/* CSS Variables */
:root {
  --primary-color: #4285f4;
  --teal-color: #0d9488;
  --warning-color: #fb923c;
  --secondary-color: #64748b;
  --success-color: #10b981;
  --info-color: #06b6d4;
  --dark-color: #1e293b;
  --light-color: #f0fdf4;
  --hero-bg: #f0fdf4;
  --gradient-primary: linear-gradient(135deg, #4285f4 0%, #3b82f6 100%);
  --gradient-secondary: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --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);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}
.page-wrapper {
  width: 100%;
  overflow-x: hidden; /* Contain horizontal overflow here instead */
  position: relative;
}

/* Custom Utilities */
.min-vh-75 {
  min-height: 75vh;
}

.min-vh-80 {
  min-height: 80vh;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-teal {
  color: var(--teal-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-teal {
  background-color: var(--teal-color) !important;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

.btn-warning {
  background-color: var(--warning-color);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #f97316;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  border: 2px solid #1e293b;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: #1e293b;
  border-color: #374151;
  color: white;
  transform: translateY(-1px);
}

/* Navigation Styles */
/* Logo Styles */
/* Active nav link styles */
.navbar .nav-link.active {
  color: white !important;
  font-weight: 600;
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  height: 2px;
  background: white;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

/* If you want a different active color */
.navbar .nav-link.active {
  color: #fb923c !important; /* Orange color */
}

.navbar .nav-link.active::after {
  background: #fb923c; /* Match the text color */
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #f0fdf4 !important; /* or any solid background */
  max-width: 95%;
  margin: 10px auto 0 auto;
  border-radius: 10px 10px 0 0;
}

.navbar-logo {
  height: 60px !important; /* Default height */
  width: auto;
  transition: all 0.3s ease;
  margin-top: auto !important;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .navbar-logo {
    height: 35px; /* Slightly larger on desktop */
  }
}

@media (max-width: 575.98px) {
  .navbar-logo {
    height: 25px; /* Slightly smaller on mobile */
  }
}

/* ///////////////// */
/* .navbar {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
} */
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020; /* Bootstrap's default z-index for sticky nav */
}
.navbar-brand {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}
/* Ensure images and other elements don't cause overflow */
img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Contain any potentially overflowing elements */
/* ekada chusko automatic ga scroll bars vostunnai */
/* .container,
.container-fluid {
  overflow-x: hidden;
} */
.about-wrapper {
  overflow-x: hidden;
}
.services-wrapper {
  overflow-x: hidden;
}

.contact-wrapper {
  overflow-x: hidden;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.navbar-toggler {
  border: none !important;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* about page nav bar */
.about-nav {
  max-width: 100% !important;
  /* border: 2px solid black; */
  margin: 0px 0px !important;
  background-color: #ffffff !important;
}

/* servive page navbar */
.service-nav {
  max-width: 100% !important;
  /* border: 2px solid black; */
  margin: 0px 0px !important;
  background-color: #ffffff !important;
}

/* consultant nav */
.consultant-nav {
  max-width: 100% !important;
  /* border: 2px solid black; */
  margin: 0px 0px !important;
  background-color: #ffffff !important;
}

/* contact page navbar */
.contact-nav {
  max-width: 100% !important;
  /* border: 2px solid black; */
  margin: 0px 0px !important;
  background-color: #ffffff !important;
}

/* Hero Section */
.hero-section {
  max-width: 95%;
  margin: 0px auto 0 auto;
}

.hero-section .d-flex.gap-2 {
  /* transform: translateX(-120px); Moves both buttons 70px to the left */
  transform: none !important;
  max-width: 100%;
}

.hero-buttons-container {
  width: 100%;
  max-width: 100%;
  margin-left: -15px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 0.75rem; /* Adjust this value to control spacing */
}

/* Ensure parent container has enough space */
.hero-section .col-lg-6:first-child {
  padding-left: 15px;
}

.hero-buttons .btn {
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 40px;
  border-radius: 10px;
  margin: 0px; /* Reset any default margins */
}
@media (max-width: 767.98px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* Reset for smaller screens to maintain responsiveness */
@media (max-width: 991.98px) {
  .hero-section .d-flex.gap-2 {
    transform: translateX(0);
  }
  .hero-section .col-lg-6:first-child {
    padding-left: 15px;
  }
}

.hero-section {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero-buttons {
  gap: 1rem; /* Reduces the gap between buttons */
}

.hero-section::before {
  content: "";
  position: absolute;
  display: none;
  top: 20%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(251, 146, 60, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(13, 148, 136, 0.05) 0%,
      transparent 40%
    ),
    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"><circle cx="2" cy="2" r="1" fill="%23d1d5db" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  background-size: 600px 600px, 400px 400px, 50px 50px;
  background-position: 0% 0%, 100% 100%, 0% 0%;
  opacity: 0.3;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.05em;
  color: #111827;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  max-width: 480px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  /* background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 252, 0.8)
  ); */
  /* border-radius: 20px; */
  padding: 20px;
  /* backdrop-filter: blur(16px); */
  /* border: 1px solid rgba(255, 255, 255, 0.6); */
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), */
  /* 0 0 0 1px rgba(255, 255, 255, 0.5); */
  animation: gentleFloat 6s ease-in-out infinite;
}

.hero-main-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  bottom: 80px;
  right: 340px;
  min-width: 290px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  animation: cardFloat 4s ease-in-out infinite;
  z-index: 3;
}

.floating-card .bg-teal {
  background-color: #0d9488 !important;
  border-radius: 8px;
  padding: 8px;
}

.hero-bg-pattern {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

/* Badge Styling */
.badge.bg-warning {
  background-color: #fb923c !important;
  font-size: 0.875rem;
  font-weight: 500;
}

/* About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 0 auto;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
}

.bg-teal {
  background-color: #0d9488;
}

.text-teal {
  color: #0d9488;
}

.bg-warning {
  background-color: #fb923c !important;
}

/* Section Spacing */
.about-intro-section,
.who-we-are-section,
.services-section,
.why-choose-section {
  padding: 80px 0;
}

.why-choose-card {
  padding-top: 80px;
  /* border: 2px solid rgb(192, 24, 24); */
}
/* Card Styles */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-box {
  text-align: justify;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Benefit Items */
.benefit-item {
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-hero-section {
    padding: 80px 0;
  }

  .about-intro-section,
  .who-we-are-section,
  .services-section,
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-section .col-lg-6:first-child {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-section {
    padding: 60px 0;
  }

  .about-intro-section,
  .who-we-are-section,
  .services-section,
  .why-choose-section {
    padding: 50px 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .about-hero-section {
    padding: 50px 0;
  }

  .display-4 {
    font-size: 2rem;
  }

  .cta-section .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .cta-section .d-flex {
    flex-direction: column;
  }
}
.features-section {
  padding: 60px 0;
  /* margin-top: 100px; */
}

.features-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  text-align: justify !important;
  max-width: 100%;
  margin-top: 2rem; /* Pulls it upward */
}

.features-image-container {
  position: relative;
}

.features-image-wrapper {
  /* border-radius: 32px 180px 32px 180px; */

  overflow: hidden;
  background: #f8fafc;
  padding: 0;
}

.features-main-image {
  width: 100%;
  height: auto;
  border-radius: 32px 8px 32px 8px;
  object-fit: cover;
  object-position: center;
}

.features-content-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-top: 100px;
}
.features-content-card-desc {
  text-align: justify;
}
.features-content-card h5 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #111827;
  font-weight: 700;
}

.features-content-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
}

.success-badge {
  top: 20px;
  left: 20px;
  background-color: var(--teal-color) !important;
  min-width: 120px;
}

.success-badge .x-small {
  font-size: 0.75rem;
  line-height: 1;
}

.btn-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-color) !important;
  text-decoration: none;
  transform: translateX(5px);
}
/* Icon Styles */
.icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.icon-wrapper-sm {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: all 0.3s ease;
}

.bg-teal-gradient {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

/* Card Hover Effects */
.hover-effect {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.hover-effect:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.hover-effect:hover .icon-wrapper,
.hover-effect:hover .icon-wrapper-sm {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .who-we-are-section,
  .services-section {
    padding: 60px 0;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .who-we-are-section,
  .services-section {
    padding: 50px 0;
  }

  .icon-wrapper {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .icon-wrapper-sm {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .service-card {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .who-we-are-section .col-md-4,
  .services-section .col-md-6 {
    margin-bottom: 20px;
  }

  .who-we-are-section .col-md-4:last-child,
  .services-section .col-md-6:last-child {
    margin-bottom: 0;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .icon-wrapper-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    padding: 0.75rem !important;
  }
}

/* Text Improvements */
.text-muted {
  color: #6b7280 !important;
  line-height: 1.7;
}

.fw-bold {
  font-weight: 600 !important;
}

/* Badge Styles */
.badge {
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Services Section */
.services-section {
  background: #f8fafc;
  padding-top: 100px !important;
  /* margin-top: 100px; */
  padding-bottom: 100px !important;
  /* border: 2px solid rgb(194, 42, 42); */
}

.services-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.services-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
}

.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  padding: 1.5rem; /* Reduced padding for compactness */
  height: 100%; /* Ensure consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* service card design */

.bg-light-green {
  background-color: #f0fdf4; /* Light green from the image */
}

.bg-beige {
  background-color: #f4e3d0; /* Beige/orange shade for icon background */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(251, 146, 60, 0.2);
}

.service-icon-container {
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
}
.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--beige-color, #f4e3d0); /* Use beige color */
  border-radius: 50%; /* Ensure circular shape */
  margin: 0 auto; /* Center the icon */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  color: var(--warning-color) !important; /* Keep warning color for icon */
}

.service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.btn-warning {
  background-color: var(--warning-color); /* Ensure orange color */
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  width: fit-content; /* Adjust button width */
  margin: 0 auto; /* Center the button */
}
.btn-warning:hover {
  background-color: #f97316; /* Darker orange on hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Services Page Styles */
/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  /* margin: 0 auto 0 auto; */
}

.services-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
}

.hero-pattern {
  background-image: radial-gradient(
    circle at 30% 70%,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
  z-index: 0;
}

.bg-teal {
  background-color: #0d9488;
}

.text-teal {
  color: #0d9488;
}

.bg-warning {
  background-color: #fb923c;
}

.bg-primary {
  background-color: #3b82f6;
}

.bg-light-green {
  background-color: #f0fdf4;
}

.border-teal {
  border-color: #0d9488 !important;
}

.border-warning {
  border-color: #fb923c !important;
}

.service-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Section Spacing */
.services-intro,
.main-services,
.additional-services,
.industry-specialization {
  padding: 80px 0;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .services-hero {
    padding: 60px 0;
  }

  .services-intro,
  .main-services,
  .additional-services,
  .industry-specialization {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .services-hero {
    padding: 50px 0;
  }

  .display-5 {
    font-size: 2.2rem;
  }

  .services-intro,
  .main-services,
  .additional-services,
  .industry-specialization {
    padding: 50px 0;
  }

  .services-intro .col-lg-6:first-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .services-hero {
    padding: 40px 0;
  }

  .display-5 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .services-intro,
  .main-services,
  .additional-services,
  .industry-specialization {
    padding: 40px 0;
  }

  .industry-specialization .col-6 {
    margin-bottom: 10px;
  }
}

/* Choose Us Section */
.choose-us-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafc;
}

.choose-us-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.choose-us-title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;

  color: #111827;
}

.choose-us-accordion .accordion-button {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.choose-us-accordion .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: var(--teal-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.choose-us-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* How We Work Section */
/* How We Work Section */

.how-we-work-section {
  background-color: #f0fdf4;
  padding: 80px 0;
  /* margin-top: 100px; */
}

.how-we-work-badge {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

@media (max-width: 768px) {
  .center-mobile {
    text-align: center;
  }

  .center-mobile .how-we-work-badge {
    display: inline-block;
  }
}

.how-we-work-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.how-we-work-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 400px;
  text-align: justify;
}

.process-step {
  position: relative;
}

.step-number-wrapper {
  position: relative;
  display: inline-block;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--warning-color);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.connecting-line {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 420px;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #fb923c 0,
    #fb923c 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
  transform: translateY(-50%);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 280px;
  text-align: justify;
}

/* Testimonials section */
/* Testimonials Section */
.testimonials-section {
  background: #ffffff;
  padding-top: 100px !important;
  /* margin-top: 100px; */
}

.testimonials-badge {
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonials-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.testimonials-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  max-width: 500px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  flex-grow: 1;
  text-align: left;
}

.testimonial-rating {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
}

.testimonial-image {
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.testimonial-name {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

/* Companies Section */
.companies-section {
  margin-top: 4rem;
}

.companies-title {
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}

/* Marquee Animation */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: transparent;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  width: 200%;
}

.company-logo {
  flex: 0 0 auto;
  margin: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.company-logo img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.company-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* contact us section  */
/* Contact Us Section */
.contact-section {
  background: #f8fafc;
  padding: 80px 0;
  /* margin-top: 100px; */
}

.contact-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0;
  padding-top: 0.5rem;
  text-align: justify;
}

.contact-image-wrapper {
  margin-top: 0;
}

.contact-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  background: transparent;
  padding: 0;
}

.contact-form {
  width: 100%;
}

.contact-input,
.contact-textarea {
  background: #e5e7eb;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #374151;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  background: #d1d5db;
  box-shadow: none;
  border: none;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: none;
}

.contact-submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.contact-submit-btn:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-title {
    font-size: 2rem;
    text-align: center;
  }

  .contact-description {
    text-align: center;
  }

  .contact-image {
    height: 250px;
    margin-bottom: 2rem;
  }
}
/* Map Section Styles */
.map-section {
  position: relative;
}

.map-container {
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.contact-info {
  background-color: #f8fafc;
  border-radius: 16px;
  height: 100%;
}

.contact-info-item {
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-teal {
  background-color: #0d9488;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .map-section .col-lg-6 {
    order: 0 !important;
    margin-bottom: 30px;
  }

  .contact-info {
    padding: 2rem !important;
  }
}

@media (max-width: 575.98px) {
  .map-container,
  .map-iframe {
    min-height: 300px;
  }

  .contact-info {
    padding: 1.5rem !important;
  }
}

/* footer section */
/* CTA Section */
.cta-section {
  background: #f0fdf4;
  padding: 80px 0;
  margin-top: 100px;
}

.cta-card {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  border: 2px solid black;
}

.cta-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  color: #374151;
}

.cta-btn {
  background: #f59e0b;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-btn:hover {
  background: #d97706;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-section {
  /* border: 2px solid black; */
  max-width: 95%;
  margin: 0 auto 0 auto;
}
/* Footer Section */
.footer-section {
  background: #f0fdf4 !important;
  padding: 60px 0 30px 0;
  color: #000000;
  /* border: 2px solid ; */
  max-width: 95%;
  margin: 0px auto 10px auto;
  border-radius: 0 0 20px 20px;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0;
  text-align: justify;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #111827;
}

.footer-contact .contact-item {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact .contact-item i {
  color: #000000;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.social-link:hover {
  color: #111827;
}

.social-link::before {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .cta-title {
    font-size: 2rem;
  }

  .cta-card {
    padding: 40px 20px;
  }

  .footer-widget {
    margin-bottom: 3rem;
  }
}

/* Additional CSS Variables needed */
:root {
  --primary-color: #4285f4;
  --teal-color: #0d9488;
}

.text-teal {
  color: var(--teal-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Additional CSS Variables needed */
:root {
  --warning-color: #fb923c;
  --teal-color: #0d9488;
}

.bg-light-green {
  background-color: #f0fdf4;
}

.text-teal {
  color: var(--teal-color) !important;
}

.bg-warning {
  background-color: var(--warning-color) !important;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-5px) rotate(1deg);
  }
  66% {
    transform: translateY(-3px) rotate(-1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scroll Animations */
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .floating-card {
    position: static !important;
    margin: 1rem 0;
    transform: none !important;
  }

  .hero-image-container .floating-card:first-child {
    margin-bottom: 1rem;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }

  .hero-section {
    padding: 60px 0;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-content-card {
    margin-top: 2rem;
    max-width: 100%;
  }

  .success-badge {
    position: static !important;
    display: inline-flex;
    margin-bottom: 1rem;
    top: auto;
    left: auto;
  }

  .features-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .choose-us-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    .mt-mobile {
      margin-top: 2rem; /* Adjust value as needed (e.g., 1.5rem or 3rem) */
    }
  }

  .how-we-work-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .how-we-work-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .services-section,
  .how-we-work-section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .floating-card {
    font-size: 0.875rem;
    padding: 0.75rem !important;
  }

  .hero-section {
    padding: 40px 0;
  }

  .features-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .features-description {
    margin-bottom: 5rem;
  }

  .features-content-card {
    min-width: auto;
    width: 100%;
  }

  .features-section {
    padding: 40px 0;
  }

  .services-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .services-subtitle {
    text-align: center;
    margin-bottom: 2rem;
  }

  .how-we-work-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .how-we-work-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .services-section,
  .how-we-work-section {
    padding: 40px 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .container {
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .hero-section {
    padding: 30px 0;
  }

  .hero-main-image {
    max-height: 350px;
  }

  .badge.bg-warning {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-section .col-lg-6:first-child {
    padding-right: 1rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.shadow-custom {
  box-shadow: var(--shadow-lg);
}

.border-radius-lg {
  border-radius: 1rem;
}

.border-radius-xl {
  border-radius: 1.5rem;
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .floating-card {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: black !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --dark-color: #000000;
  }

  .btn-primary {
    background: #0000ff;
    border-color: #0000ff;
  }

  .text-muted {
    color: #666666 !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* services page */
/* Add this to your existing CSS */
.consultants-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.consultant-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.consultant-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consultant-list li {
  padding: 8px 0;
}

.bg-light-green {
  background-color: #f0fdf4;
}

.text-teal {
  color: #0d9488;
}

.bg-teal {
  background-color: #0d9488;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.consultant-cta {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.consultant-cta-pattern {
  background-image: radial-gradient(
    circle at 70% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(13, 148, 136, 0.2);
}

@media (max-width: 767.98px) {
  .consultant-card {
    margin-bottom: 20px;
  }
}

/* terms and condition page */
/* Terms & Conditions Section */
.terms-conditions-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.terms-header h2 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 2.25rem;
}

.term-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.term-card:hover {
  transform: translateY(-3px);
}

.term-title {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.term-text {
  color: #4b5563;
  line-height: 1.7;
}

.term-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.term-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.term-list li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .terms-conditions-section {
    padding: 2.5rem 0;
  }

  .terms-header h2 {
    font-size: 1.75rem;
  }

  .term-card {
    padding: 1.25rem;
  }
}
/* privcy and policy page  */
/* Privacy Policy Section */
.privacy-policy-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.privacy-header h2 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 2.25rem;
}

.policy-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-3px);
}

.policy-title {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.policy-text {
  color: #4b5563;
  line-height: 1.7;
}

.policy-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.policy-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.policy-list li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 2.5rem 0;
  }

  .privacy-header h2 {
    font-size: 1.75rem;
  }

  .policy-card {
    padding: 1.25rem;
  }
}

/* refund policy */
/* Refund Policy Section */
.refund-policy-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.refund-header h2 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 2.25rem;
}

.refund-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.refund-card:hover {
  transform: translateY(-3px);
}

.refund-title {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.refund-text {
  color: #4b5563;
  line-height: 1.7;
}

.refund-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.refund-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.refund-list li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.process-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
  list-style-type: decimal;
}

.process-list li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .refund-policy-section {
    padding: 2.5rem 0;
  }

  .refund-header h2 {
    font-size: 1.75rem;
  }

  .refund-card {
    padding: 1.25rem;
  }
}

/* disclaimer */
/* Disclaimer Section */
.disclaimer-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.disclaimer-header h2 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 2.25rem;
}

.disclaimer-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease;
  border-left: 4px solid #e5e7eb;
}

.disclaimer-card:hover {
  transform: translateY(-3px);
  border-left-color: #3b82f6;
}

.disclaimer-title {
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.disclaimer-text {
  color: #4b5563;
  line-height: 1.7;
}

.disclaimer-list {
  padding-left: 1.25rem;
  margin: 1rem 0;
}

.disclaimer-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.disclaimer-list li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Warning Highlight */
.disclaimer-warning {
  background-color: #fff8e6;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 5px 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2.5rem 0;
  }

  .disclaimer-header h2 {
    font-size: 1.75rem;
  }

  .disclaimer-card {
    padding: 1.25rem;
  }
}
