* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Bricolage Grotesque", sans-serif;
}

body {
  background: #ffffff;
}

button {
  cursor: pointer;
  outline: none;
  font-family: inherit;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

/* reusable classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.default-button {
  border-radius: 100px;
  color: #ffffff;
  background: #3ab7f5;
  box-shadow: 0px 2px 2px 0px #00000040;
}

/* Header */
.menu-btn {
  display: none;
}

.mobile-nav {
  display: none;
}

.header-hero {
  background: linear-gradient(
    111.89deg,
    #dfffeb 59.49%,
    rgba(141, 219, 240, 0.75) 88.11%,
    #ffffff 98.49%
  );
}

header {
  padding: 20px 10px;
  backdrop-filter: blur(20px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-content ul li a {
  color: #383838;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.header-content ul li a:hover {
  color: #3ab7f5;
}

.header-content .buttons-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-btn {
  background: transparent;
  color: #383838;
}

/* Hero */
.hero {
  padding: 3rem 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 600;
  color: #383838;
  line-height: 120%;
}

.hero-text p {
  font-size: 16px;
  color: #38383899;
  line-height: 120%;
  font-weight: 400;
  max-width: 500px;
}

.hero img {
  width: 100%;
  border-radius: 20px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-button {
  border-radius: 100px;
  color: #383838;
  background: #4ade80;
  box-shadow: 0px 2px 2px 0px #00000040;
}

/* Stats */
.stats {
  padding: 50px 10px;
}

.stats-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.stat-item h2 {
  font-size: 32px;
  font-weight: 300;
  color: #383838;
}

.stat-item p {
  color: #38383899;
  font-size: 16px;
  font-weight: 400;
}

.stat-item i {
  color: #383838;
}

/* CTA Marquee */
.cta {
  padding: 50px 0;
  background: #ffffff;
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.cta-marquee {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 2rem;
  width: max-content;
}

.cta-item {
  background: #f8f8f8;
  padding: 24px;
  border-radius: 8px;
  min-width: 300px;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* .cta-item:hover { */
/*   transform: translateY(-5px); */
/*   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
/* } */

.cta-item div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-item h2 {
  font-size: 18px;
  font-weight: 300;
  color: #383838;
  margin-bottom: 10px;
}

.cta-item p {
  color: #38383899;
  font-size: 14px;
  font-weight: 400;
}

.cta-item i {
  color: #ff9a2b;
  transition: transform 0.3s ease;
}

/* .cta-item:hover i { */
/*   transform: translateX(5px); */
/* } */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.cta:hover .cta-marquee {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-item {
    min-width: 250px;
    padding: 20px;
  }

  .cta-marquee {
    animation-duration: 25s;
  }
}

/* Services */
.services {
  padding: 50px 10px;
  background: #1f5e37;
}

.services-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  line-height: 120%;
}

.services-header p {
  color: #ffffffcc;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.service-item {
  backdrop-filter: blur(20px);
  background: #00000066;
  background-blend-mode: overlay;
  background-blend-mode: overlay;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item i {
  color: #3c9017;
}

.service-item h3 {
  margin-top: 2rem;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
}

.service-item p {
  color: #ffffffcc;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 1rem;
  text-align: center;
}

/* about us */
.about {
  padding: 80px 20px;
  background: white;
  position: relative;
}

.about-content {
  position: relative;
  background: white;
}

.about-header {
  text-align: center;
  /* margin-bottom: 60px; */
  padding-bottom: 40px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #2d3748;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-content > h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #2d3748;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

/* .why-content { */
/*   padding: 40px; */
/* } */

.why-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: center;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-text {
  flex: 1;
  max-width: 450px;
}

.why-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.why-item img {
  width: 100%;
  object-fit: cover;
}

/* Main cta */
.main-cta {
  background: url("./assets/images/cta-image.png") center center no-repeat;
  padding: 50px 0;
  min-height: 600px;
  display: flex;
  align-items: center; /* Vertically centers the content */
}

.main-cta-content {
  width: 100%; /* Take full width */
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: flex-start; /* Align to left */
}

.main-cta-text {
  max-width: 540px;
  display: flex;
  flex-direction: column;
}

.main-cta-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #383838;
  margin-bottom: 1rem;
}

.main-cta-text p {
  font-size: 1rem;
  color: #38383899;
  margin-bottom: 2rem;
}

/* Testimonial */
.testimonial {
  padding: 50px 10px;
  background: #ffffff;
  overflow: hidden;
}

.testimonial h2 {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 120%;
  color: #383838;
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-marquee {
  display: flex;
  animation: scroll 40s linear infinite;
  gap: 2rem;
  width: max-content;
}

.testimonial-item {
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  backdrop-filter: blur(20px);
  background: #f8f8f8;
  background-blend-mode: overlay;
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-item .stars {
  color: #3c9017;
  display: flex;
  gap: 2px;
}

.testimonial-item h4 {
  font-weight: 300;
  font-size: clamp(16px, 2vw, 18px);
  color: #383838;
}

.testimonial-item p {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 140%;
  color: #383838;
  flex-grow: 1;
}

.testimonial-item span {
  font-weight: 400;
  font-size: clamp(12px, 2vw, 14px);
  color: #38383899;
  margin-top: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.testimonial:hover .testimonial-marquee {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-item {
    min-width: 300px;
    max-width: 300px;
  }

  .testimonial-marquee {
    animation-duration: 35s;
  }
}

/* Pricing */
.pricing {
  padding: 50px 10px;
  background: #ffffff;
}

.testimonials-header h2 {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 120%;
  color: #383838;
  text-align: center;
}

/* FAQ */
.faq {
  padding: 50px 10px;
  background: #ffffff;
}

.faq h2 {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 120%;
  color: #383838;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item .question h3 {
  font-size: clamp(18px, 3vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #1e1e1e;
}

.faq-item .question i {
  color: #1a1a1a;
  transition: transform 0.5s ease-in;
  flex-shrink: 0;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}

.faq-item .answer p {
  font-size: clamp(14px, 2vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1a1a1a;
  padding-top: 1rem;
}

.faq-item.active .answer {
  max-height: 300px;
}

.faq-item.active .question i {
  transform: rotate(180deg);
}

/* Contact US */
.contact-us {
  padding: 50px 10px;
  background: #4ade80;
}

.contact-us-header {
  text-align: center;
}

.contact-us-header h2 {
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 120%;
  letter-spacing: 0%;
  color: white;
}

.contact-us-header p {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 120%;
  color: white;
}

.contact-us form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-us form input {
  padding: 1rem;
  border-radius: 10px;
  border: none;
  color: #38383899;
  font-size: 16px;
  background: #ffffff;
  backdrop-filter: blur(20px);
}

.contact-us form input::placeholder {
  color: #38383899;
}

.contact-us form textarea {
  padding: 1rem;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  color: #38383899;
  resize: none;
  font-size: 16px;
  backdrop-filter: blur(20px);
}

.contact-us form textarea::placeholder {
  color: #38383899;
}

.contact-us form div {
  display: flex;
  justify-content: flex-end;
}

.contact-us form button {
  border-radius: 10px;
  background: #383838;
  color: white;
}

/* Footer */
footer {
  padding: 50px 10px;
  background: #ffffff;
}

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

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #fc7cd4;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.contact-value {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
  color: #666;
  font-size: 12px;
}

.footer-bottom a {
  color: #fc7cd4;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bg {
  margin: 0 3rem;
  min-height: 700px;
  background: url("./assets/images/footer-logo.png") no-repeat center
    center/cover;
}

/* Pricing Section */
.pricing {
  padding: 80px 10px;
  background: #ffffff;
}

.data h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #383838;
  line-height: 120%;
}

.data-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.data-plan {
  border: 2px solid #4ade80;
  border-radius: 20px;
  background: #ffffff;
  padding: 2rem 1.5rem;
  color: #383838;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.data-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #4ade80;
}

.data-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4ade80, #4ade80);
}

.data-plan img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
}

.data-plan h4 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #383838;
}

.data-plan ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.data-plan ul:last-of-type {
  margin-bottom: 2rem;
}

.data-plan ul li {
  font-size: 0.95rem;
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #4ade80;
  font-weight: 500;
}

.data-plan ul li:last-child {
  border-bottom: none;
}

.data-plan ul li:first-child {
  font-weight: 600;
  color: #4ade80;
  font-size: 1.1rem;
}

.data-plan ul li:nth-child(2) {
  font-weight: 700;
  color: #383838;
  font-size: 1.1rem;
}

.data-plan ul li:nth-child(3) {
  color: #666;
  font-size: 0.9rem;
}

.data-plan a {
  display: block;
  width: 100%;
}

.data-plan button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: #4ade80;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 154, 43, 0.3);
}

.data-plan button:hover {
  background: #304fb288;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 154, 43, 0.4);
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

/* Responsive Styles */
@media (max-width: 800px) {
  /* Hide desktop navigation elements */
  .main-nav {
    display: none !important;
  }

  .buttons-content {
    display: none !important;
  }

  /* Show mobile menu button */
  .menu-btn {
    display: block !important;
    z-index: 1001;
  }

  #menu-icon i.active:before {
    content: "\f00d";
  }

  /* Mobile nav styles */
  .mobile-nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    top: 0;
    left: -100%;
    right: 0;
    background-color: #ffffff;
    transition: left 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 1000;
  }

  .mobile-nav.active {
    left: 0;
  }

  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .mobile-nav ul li a {
    font-size: 18px;
    color: #383838;
    font-weight: 500;
  }

  .mobile-buttons-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Tablet and Mobile Responsive Styles */

/* Hero Section Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-button,
  .default-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .container {
    padding: 0 15px;
  }
}

/* Stats Section Responsive */
@media (max-width: 768px) {
  .stats-content {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 10px;
  }

  .stat-item h2 {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 14px;
  }
}

/* Services Section Responsive */
@media (max-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    padding: 40px 10px;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-header p {
    font-size: 14px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 24px;
    margin-top: 1.5rem;
  }

  .service-item p {
    font-size: 14px;
  }
}

/* About Section Responsive */
@media (max-width: 1024px) {
  .why-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .why-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 20px;
  }

  .about-header h2,
  .about-content > h2 {
    font-size: 2rem;
  }

  .about-header p {
    font-size: 1rem;
  }

  .why-text h3 {
    font-size: 1.5rem;
  }

  .why-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 40px 15px;
  }

  .about-header h2,
  .about-content > h2 {
    font-size: 1.8rem;
  }

  .why-text h3 {
    font-size: 1.3rem;
  }
}

/* Main CTA Section Responsive */
@media (max-width: 1024px) {
  .main-cta {
    min-height: 500px;
    background-size: cover;
    background-position: center;
  }

  .main-cta-content {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .main-cta {
    min-height: 400px;
    padding: 40px 0;
  }

  .main-cta-text h2 {
    font-size: 32px;
  }

  .main-cta-text p {
    font-size: 0.9rem;
  }

  .main-cta-text {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .main-cta {
    min-height: 350px;
  }

  .main-cta-text h2 {
    font-size: 28px;
  }
}

/* Pricing/Data Section Responsive */
@media (max-width: 1024px) {
  .data-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 10px;
  }

  .data-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .data-plan {
    padding: 1.5rem 1rem;
  }

  .data h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .data-plan {
    padding: 1.2rem 0.8rem;
  }

  .data-plan h4 {
    font-size: 1.3rem;
  }

  .data-plan ul li {
    font-size: 0.85rem;
    padding: 0.6rem 0;
  }
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 40px 10px;
  }

  .faq-list {
    margin-top: 2rem;
  }

  .faq-item .question {
    gap: 0.5rem;
  }

  .faq-item .question h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .faq-item .answer p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .faq-item .question h3 {
    font-size: 16px;
  }

  .faq-item .answer p {
    font-size: 13px;
  }
}

/* Contact Us Section Responsive */
@media (max-width: 768px) {
  .contact-us {
    padding: 40px 10px;
  }

  .contact-us form {
    margin-top: 2rem;
    max-width: 100%;
  }

  .contact-us form input,
  .contact-us form textarea {
    padding: 0.8rem;
    font-size: 14px;
  }

  .contact-us form textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .contact-us form input,
  .contact-us form textarea {
    padding: 0.7rem;
    font-size: 13px;
  }
}

/* Footer Section Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-description {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bg {
    margin: 0 1rem;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .footer-bg {
    margin: 0 0.5rem;
    min-height: 300px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-links li a {
    font-size: 13px;
  }

  .contact-value {
    font-size: 13px;
  }
}

/* Header Refinements for Mobile */
@media (max-width: 480px) {
  header {
    padding: 15px 10px;
  }

  .mobile-nav ul li a {
    font-size: 16px;
  }

  .mobile-buttons-content .default-button,
  .mobile-buttons-content .login-btn {
    width: 200px;
  }
}

/* General Responsive Utilities */
@media (max-width: 768px) {
  /* Ensure all sections have proper mobile padding */
  .testimonial,
  .stats,
  .cta {
    padding: 40px 10px;
  }

  /* Adjust button sizes for mobile */
  button {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Improve touch targets */
  .faq-item .question {
    padding: 1rem 0;
    cursor: pointer;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .services-header h2,
  .about-header h2 {
    font-size: 24px;
  }

  .main-cta-text h2 {
    font-size: 24px;
  }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-nav {
    padding: 20px 0;
  }

  .mobile-nav ul {
    gap: 1rem;
  }

  .hero {
    padding: 1rem 0;
  }
}

/* Print styles */
@media print {
  .mobile-nav,
  .menu-btn,
  .cta-marquee,
  .testimonial-marquee {
    display: none !important;
  }

  * {
    background: white !important;
    color: black !important;
  }
}
/* Enhanced Mobile Navigation */
.mobile-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: -100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 2rem;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.mobile-nav.active ul {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav ul li {
  position: relative;
  overflow: hidden;
}

.mobile-nav ul li a {
  font-size: 1.5rem;
  color: #383838;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

.mobile-nav ul li:nth-child(1) a {
  animation-delay: 0.1s;
}
.mobile-nav ul li:nth-child(2) a {
  animation-delay: 0.2s;
}
.mobile-nav ul li:nth-child(3) a {
  animation-delay: 0.3s;
}
.mobile-nav ul li:nth-child(4) a {
  animation-delay: 0.4s;
}
.mobile-nav ul li:nth-child(5) a {
  animation-delay: 0.5s;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(58, 183, 245, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.mobile-nav ul li a:hover::before {
  left: 100%;
}

.mobile-nav ul li a:hover {
  color: #3ab7f5;
  background: rgba(58, 183, 245, 0.05);
  transform: translateY(-2px);
}

.mobile-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3ab7f5, #4ade80);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-nav ul li a:hover::after {
  width: 80%;
}

.mobile-buttons-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.mobile-nav.active .mobile-buttons-content {
  opacity: 1;
  transform: translateY(0);
}

.mobile-buttons-content .login-btn {
  background: transparent;
  color: #383838;
  border: 2px solid #383838;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-buttons-content .login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #383838;
  transition: left 0.3s ease;
  z-index: -1;
}

.mobile-buttons-content .login-btn:hover::before {
  left: 0;
}

.mobile-buttons-content .login-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 56, 56, 0.3);
}

.mobile-buttons-content .default-button {
  border-radius: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #3ab7f5, #4ade80);
  box-shadow: 0 8px 25px rgba(58, 183, 245, 0.3);
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-buttons-content .default-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4ade80, #3ab7f5);
  transition: left 0.3s ease;
}

.mobile-buttons-content .default-button:hover::before {
  left: 0;
}

.mobile-buttons-content .default-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 183, 245, 0.4);
}

/* Enhanced Menu Button */
.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.menu-btn:hover {
  background: rgba(58, 183, 245, 0.1);
}

.menu-btn i {
  font-size: 1.5rem;
  color: #383838;
  transition: all 0.3s ease;
}

.menu-btn:hover i {
  color: #3ab7f5;
  transform: rotate(180deg);
}

/* Add smooth overlay animation */
.mobile-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 183, 245, 0.02) 0%,
    rgba(74, 222, 128, 0.02) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.mobile-nav.active::before {
  opacity: 1;
}

/* Close button animation */
.mobile-nav.active .menu-btn i {
  transform: rotate(45deg);
}

/* Add subtle animations for better UX */
@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav ul,
  .mobile-buttons-content,
  .mobile-nav ul li a {
    transition: none;
    animation: none;
  }
}
