:root {
  --primary-color: #eb3505;
  --primary-dark: #d43004;
  --secondary-color: #1e293b;
  --text-color: #475569;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
}

* {
  scrollbar-width: none;
}

/* Landing Page Specific Styles */
.landing-header {
  display: none; /* Hide on all screens by default */
  background: rgba(30, 41, 59, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow 0.3s ease; /* Only transition the shadow */
}

.landing-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Remove any transform transitions from the header */
.landing-header {
  transform: none !important;
}

/* Enhanced Desktop Nav Styles */
.desktop-nav {
  display: none; /* Hide on all screens */
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.desktop-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.desktop-nav .brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.desktop-nav .brand h1 {
  color: white;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.desktop-nav .brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
  opacity: 0.9;
}

.desktop-nav .brand div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-links a i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.nav-links a:not(.btn) {
  position: relative;
  overflow: hidden;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:hover i {
  transform: translateY(-2px);
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: white;
}

.nav-links a.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-links a.btn-primary {
  background: var(--primary-color);
  box-shadow: 0 4px 12px rgba(235, 53, 5, 0.25);
}

.nav-links a.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.mobile-header {
  display: flex; /* Show mobile header by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: var(--secondary-color);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px; /* Start off-screen */
  width: 300px;
  height: 100vh;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding-top: 0;
}

.mobile-menu.active {
  right: 0; /* Slide in from right */
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: white;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-header h2 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin: 0;
}

.mobile-menu nav {
  padding: 1rem;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.25rem 0;
  border-radius: 8px;
  font-size: 0.938rem;
  font-weight: 500;
  position: relative;
}

.mobile-menu nav a:not(.external-link):hover::after,
.mobile-menu nav a:not(.external-link).active::after {
  width: 80%;
}

.mobile-menu nav a:hover {
  background: rgba(235, 53, 5, 0.05);
  color: var(--primary-color);
}

.mobile-menu nav a i {
  font-size: 1.1rem;
  opacity: 0.75;
}

.mobile-menu nav a:hover i {
  opacity: 1;
}

.mobile-menu nav a.active {
  background: rgba(235, 55, 5, 0);
  color: var(--primary-color);
}

.mobile-menu nav a.active i {
  opacity: 1;
}

.menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
  margin: 0.75rem 0;
}

.close-menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.close-menu-btn:hover {
  opacity: 0.8;
}

/* Updated Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)),
    url("../img/background/dpwhbg.png") center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin-top: -2em;
  animation: fadeIn 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); /* Reduced from 2.5rem, 6vw, 4rem */
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 800px; /* Added max-width */
  margin-left: auto;
  margin-right: auto;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Updated Hero Badge */
.hero-badge {
  background: rgba(235, 53, 5, 0.15);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(235, 53, 5, 0.2);
  box-shadow: 0 4px 15px rgba(235, 53, 5, 0.1);
  transition: all 0.3s ease;
}

.hero-badge i {
  font-size: 1.2em;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.hero-subtitle {
  font-size: clamp(
    0.875rem,
    1.5vw,
    1rem
  ); /* Reduced from 1.1rem, 2.5vw, 1.25rem */
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px; /* Reduced from 800px */
  margin: 0 auto 2rem; /* Reduced from 3rem */
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: var(--primary-color);
  border: none;
  box-shadow: 0 10px 25px rgba(235, 53, 5, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(235, 53, 5, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Enhanced Stats Section */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 2rem);
  max-width: 800px;
  margin: 2rem auto 0;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 0; /* Allow shrinking below content size */
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #eb3505 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  white-space: nowrap; /* Prevent number from wrapping */
}

.stat-number .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
}

.stat-number i.bi-exclamation-circle {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.stat-label {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap; /* Prevent label from wrapping */
}

/* Update the divider styling */
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0;
}

.features-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-color);
  font-size: 0.938rem;
  line-height: 1.6;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-badge {
  display: inline-block;
  background: rgba(235, 53, 5, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Enhanced Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, #f8fafc);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.75rem;
  color: white;
}

.benefit-content h3 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.benefit-content p {
  color: var(--text-color);
  font-size: 0.938rem;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("../img/pattern.png") center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-content {
  position: relative;
  padding-top: 1rem;
  flex-grow: 1;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: serif;
}

.testimonial-content p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: auto;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin: 0;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--text-color);
  margin: 0;
}

/* Enhanced CTA Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  min-width: 160px;
}

/* Hero Image Styles */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
  display: none; /* Hidden by default, shown only on mobile */
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Desktop Hero Image Styles */
.desktop-hero-container {
  display: none;
  position: relative;
  width: 40%;
  margin-left: auto;
  perspective: 1000px;
  /* margin-top: -12em; */
}

.desktop-hero-image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: rotateY(-15deg);
  transition: transform 0.5s ease;
}

.desktop-hero-image:hover {
  transform: rotateY(-5deg);
}

.desktop-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: #fff;
  animation: floatDesktop 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.desktop-floating-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card-left {
  left: -15%;
  top: 20%;
  animation-delay: 0s;
}

.card-right {
  right: -15%;
  bottom: 25%;
  animation-delay: 1.5s;
}

@keyframes floatDesktop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: -60px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(235, 53, 5, 0.3);
}

.scroll-to-top.visible {
  bottom: 20px;
  opacity: 1;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(235, 53, 5, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Update navbar styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: white;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Only apply fixed navbar on mobile */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hero-section {
    padding: 100px 0 60px;
    background-attachment: scroll;
    min-height: 85vh;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    position: relative;
  }

  .hero-content {
    min-height: 70vh;
    padding: 1rem;
    margin-top: 0;
    padding: 2rem 1rem;
    width: 100%;
  }

  .hero-content p,
  .hero-subtitle {
    display: none; /* Hide paragraphs on mobile */
  }

  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none; /* Hide the text on mobile */
  }

  .hero-buttons {
    margin-top: 1rem;
    width: 85%; /* Make buttons container narrower */
    margin: 2rem auto;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 80%;
    margin-bottom: 0.5rem;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 28px;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .hero-buttons .btn-primary {
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-dark)
    );
    box-shadow: 0 4px 15px rgba(235, 53, 5, 0.3);
    border: none;
  }

  .hero-buttons .btn-outline-light {
    display: none; /* Hide the Explore Features button on mobile */
  }

  .hero-buttons {
    width: 85%;
    margin: 1.5rem auto; /* Adjust margin since we only have one button now */
  }

  .hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .hero-buttons .btn:active {
    transform: translateY(2px);
  }

  .hero-buttons .btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .hero-buttons .btn:hover i {
    transform: translateX(3px);
  }

  .hero-stats {
    flex-direction: row; /* Keep horizontal layout */
    justify-content: space-around;
    padding: 1rem 0.5rem;
    margin: 1rem 0.5rem;
    gap: 0.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .stat-item {
    padding: 0 0.25rem;
  }

  /* Remove any existing stat-number mobile styles and use this instead */
  .stat-number {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .features-section {
    padding: 4rem 0;
  }

  .features-section h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Mobile Header Adjustments */
  .mobile-header {
    padding: 0.75rem;
  }

  .mobile-brand h1 {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .mobile-brand p {
    font-size: 0.8rem;
  }

  /* Hero Section Mobile Adjustments */
  .hero-section {
    padding: 80px 0 40px;
  }

  .hero-content {
    min-height: 60vh;
    padding: 1rem;
    margin-top: -3.5em;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(235, 53, 5, 0.2);
    border: 1px solid rgba(235, 53, 5, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .hero-badge i {
    font-size: 1em;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .hero-buttons {
    margin: 0.5rem 0 2rem;
  }

  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Stats Section Mobile */
  .hero-stats {
    padding: 1rem;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Features Section Mobile */
  .features-section {
    padding: 3rem 0;
  }

  .section-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* Benefits Section Mobile */
  .benefit-card {
    padding: 1.5rem;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .benefit-card p {
    font-size: 0.85rem;
  }

  /* Testimonials Section Mobile */
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-rating {
    font-size: 1rem;
  }

  .testimonial-content p {
    font-size: 0.938rem;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .testimonial-author p {
    font-size: 0.875rem;
    color: var(--text-color);
    margin: 0;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  .testimonial-author h4 {
    font-size: 1rem;
  }

  .testimonial-author p {
    font-size: 0.8rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .brand-info h3 {
    font-size: 1.1rem;
  }

  .brand-info p {
    font-size: 0.8rem;
  }

  .partnership-section h4 {
    font-size: 1rem;
  }

  .partner-logo span {
    font-size: 0.8rem;
  }

  .copyright p {
    font-size: 0.75rem;
  }

  .benefits-section,
  .testimonials-section {
    padding: 4rem 0;
  }

  .benefits-grid,
  .testimonials-grid {
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.5rem;
    flex-direction: row; /* Keep horizontal layout */
    align-items: center;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .benefit-icon i {
    font-size: 1.25rem;
  }

  .benefit-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .benefit-content p {
    font-size: 0.875rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .testimonial-content p {
    font-size: 0.938rem;
  }

  .testimonial-author img {
    width: 40px;
    height: 40px;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .cta-buttons .btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .stat-divider {
    height: 35px;
    opacity: 0.3;
  }

  .hero-image-container {
    display: block; /* Show on mobile */
    width: 85%;
    margin: 2rem auto;
  }

  .floating-card {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .floating-card i {
    font-size: 1rem;
  }

  /* Adjust card positions for mobile */
  .card-1 {
    top: 5%;
    left: -5%;
  }

  .card-2 {
    bottom: 10%;
    right: -5%;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    right: 15px;
    font-size: 1.1rem;
  }

  /* Show mobile footer, hide desktop footer */
  .footer-section {
    display: none;
  }

  .mobile-footer {
    display: block;
  }

  .mobile-menu {
    width: 280px; /* Slightly smaller width */
  }

  .mobile-menu nav a {
    font-size: 0.875rem; /* Smaller font size */
    padding: 0.75rem 1rem; /* Reduced padding */
  }

  .mobile-menu nav a i {
    font-size: 1rem; /* Smaller icons */
  }

  .mobile-menu-header h2 {
    font-size: 1.125rem; /* Smaller header */
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Acknowledgments Section */
.acknowledgments-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* New Social Icons Styles */
.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.team-social .social-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.team-social .social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    padding: 20px;
  }

  .team-social .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}

/* Desktop Footer Styles */
.desktop-footer {
  display: none;
  background: var(--secondary-color);
  color: white;
  padding: 4rem 0 2rem;
}

/* Update Desktop Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr; /* Changed from 2fr 1fr 2fr to 1.5fr 1.5fr */
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
}

.footer-brand h3 {
  font-size: 1.25rem;
  margin: 0;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.938rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul a:hover {
  color: white;
}

.footer-partnership h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Enhanced Footer Social Icons */
.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1;
}

.footer-social-links a i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.footer-social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-links a:hover::before {
  transform: translateY(0);
}

.footer-social-links a:hover i {
  transform: scale(1.2);
}

/* Specific social media colors on hover */
.footer-social-links a[aria-label="Facebook"]:hover::before {
  background: #1877f2;
}

.footer-social-links a[aria-label="Twitter"]:hover::before {
  background: #000000;
}

.footer-social-links a[aria-label="Instagram"]:hover::before {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.footer-social-links a[aria-label="LinkedIn"]:hover::before {
  background: #0077b5;
}

/* Update Footer Bottom Styles */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.875rem;
}

/* Mobile Footer Bottom */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive Styles */
@media (min-width: 1024px) {
  .landing-header {
    display: block;
  }

  .desktop-nav {
    display: flex;
  }

  .mobile-header,
  .mobile-menu,
  .mobile-footer {
    display: none;
  }

  .desktop-footer {
    display: block;
  }

  .hero-section .container {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .hero-content {
    width: 55%;
    text-align: left;
    align-items: flex-start;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .desktop-hero-container {
    display: block;
  }

  /* Hide mobile hero image on desktop */
  .hero-image-container {
    display: none;
  }

  .hero-section {
    padding-top: 120px;
  }
}
