/* Basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #fff;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: #000;
  border-bottom: 1px solid #333;
  position: fixed;
  z-index: 10;
  width: 100vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: auto;
}

.logo span {
  color: #ff4b00;

  font-size: 1.5rem;
}

/* .nav-links {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 4px 8px;
    border-radius: 50px;
    border: 1px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90.48deg, #FF4B00 -13.2%, #FFBDA2 76.37%);
} */
.nav-links {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
}

.nav-links::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background-color: #000;
  border-radius: 48px; /* Slightly less than container */
  z-index: 0;
}

.nav-item {
  text-decoration: none;
  color: #fff;
  z-index: 1;
  padding: 10px 12px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
.nav-item:hover {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider {
  position: absolute;
  bottom: 0;
  left: 0;
  /* width: 20px; */
  height: 1px;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  transition: left 0.3s ease, width 0.3s ease;
  margin-bottom: 8px;
}
.contact-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 25px;
  background-color: #000;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background-image: linear-gradient(#000, #000),
    linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-image-slice: 1;
  /* border-image-source: linear-gradient(90.48deg, #FF4B00 -13.2%, #FFBDA2 76.37%); */
}

.contact-button a:hover {
  background-color: #000;
  color: transparent;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Inner glow effect */
  box-shadow: inset 0 0 5px rgba(255, 107, 0, 0.8);
}
/* Hamburger Icon - Mobile Only */
.hamburger {
  display: none; /* default hidden */
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  font-size: 14px;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.whatsapp-btn i {
  font-size: 15px;
}

/* Mobile-only floating WhatsApp button */
.whatsapp-btn-mobile {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.2s ease, background 0.3s ease;
}

.whatsapp-btn-mobile i {
  font-size: 24px;
  color: #fff;
}

.whatsapp-btn-mobile:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}


/* Show only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .whatsapp-btn{
    display: none;
  }
   .whatsapp-btn-mobile {
    display: block !important;
  }
}

/* Hide on tablets and desktops */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
   .whatsapp-btn{
    display: none;
  }
   .whatsapp-btn-mobile {
    display: block !important;
  }
   .whatsapp-btn-mobile {
    width: 60px;
    height: 60px;
   bottom: 40px;
  right: 40px;
 
  }
}

/* ===== Mobile Devices ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  .logo {
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }

  .logo img {
    width: 40px; /* slightly larger for mobile clarity */
    height: auto;
  }

  .logo span {
    font-size: 1.7rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    box-sizing: border-box;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-item {
    background: #222;
    padding: 12px 0;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    width: 100%;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .nav-item:hover {
    background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .contact-button {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .contact-button a {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    background-color: #111;
    border: 1px solid #ff4b00;
    transition: all 0.3s ease;
  }

  .contact-button a:hover {
    background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
    color: #fff;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
  }
}

/* ===== Tablet Devices ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }

  .logo img {
    width: 40px;
  }

  .logo span {
    font-size: 1.6rem;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    background: transparent;
    padding: 0;
  }

  .nav-item {
    font-size: 15px;
    padding: 10px 12px;
    background: transparent;
    border-radius: 0;
  }

  .contact-button a {
    padding: 12px 18px;
    font-size: 15px;
  }

  .hamburger {
    display: none;
  }
}

/* page routes */
.pages {
  /* padding: 20px; */
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* home */
/* Home section occupies full viewport height */
.home-content {
  position: relative;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background-image: url("./asserts/home-bg.jpg"); */
  background-image: url("./asserts/services-image.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Overlay: blur + orange gradient block */
.home-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,    /* top: dark */
    rgba(25, 25, 25, 0.95) 40%, /* dark gray */
    rgba(255, 87, 34, 0.9) 160% /* bottom: orange */
  );
  backdrop-filter: blur(0.4px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

/* Content sits above overlay */
.home-content > * {
  position: relative;
  z-index: 1;
}

/* Animation for heading (h1) */
.home-content h1 {
  opacity: 0;
  transform: translateX(-50vw);
  animation: slideInFromLeft 0.5s forwards;
  font-size: 3rem;
  margin-bottom: 20px;
  /* margin-top: 15%; */
  margin-top: 17%;
}

/* Animation for paragraph (p) */
.home-content p {
  opacity: 0;
  transform: translateX(50vw);
  animation: slideInFromRight 1s 0.3s forwards;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.home-content p b {
  font-weight: 500;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* No animation for button */
.explore-button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  background-color: transparent; /* No background color */
  z-index: 1;
  overflow: hidden;
  margin-top: 2%;
  margin-bottom: 10%;
}

.explore-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Border thickness */
  border-radius: 25px;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none; /* So hover works properly */
}
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 2rem;
    margin-top: 60%;
  }

  .home-content p {
    font-size: 1rem;
    width: 90%;
    margin: auto;
  }

  .explore-button {
    font-size: 0.9rem;
    padding: 10px 20px;
    margin-top: 8%;
  }
}

/* Sliding Text Containers */
/* Container row */
.sliding-texts,
.sliding-texts-secondrow {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.sliding-texts-secondrow {
  margin-top: 1.2%;
  margin-bottom: 4%;
}
/* Inner wrapper that moves */
.sliding-inner {
  display: inline-flex;
  animation: slide 20s linear infinite;
}

/* Second row moves opposite */
.sliding-texts-secondrow .sliding-inner {
  animation: slideReverse 20s linear infinite;
}

/* Text items */
.sliding-text {
  padding: 0 40px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}

/* Smooth sliding animations */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Move half because we duplicated content */
}

@keyframes slideReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Keyframes for heading and paragraph animations */
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px); /* Start off left */
  }
  60% {
    opacity: 1;
    transform: translateX(20px); /* Overshoot right */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Settle in normal position */
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px); /* Start off right */
  }
  60% {
    opacity: 1;
    transform: translateX(-10px); /* Overshoot left */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Settle at normal position */
  }
}

/* Responsive Layout: Disable sliding, stack texts vertically on mobile & tablet */
@media (max-width: 768px) {
  .sliding-inner {
    display: flex;
    flex-wrap: wrap;
    animation: none; /* Stop animation */
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  .sliding-text {
    font-size: 1rem;
    padding: 10px;
    white-space: normal; /* Allow wrapping */
    text-align: center;
  }
  .sliding-texts-secondrow .sliding-inner {
    animation: none; /* Stop animation */
    display: none;
  }
  /* Hide the second set of sliding-text items */
  .sliding-inner .sliding-text:nth-child(n + 11) {
    display: none;
  }
}
/* services section */
.services-container {
  width: 100%;
  background-color: #fdfdfd;
  /* padding-top: 50px;
  padding-bottom: 50px; */
  padding-bottom: 6%;
  padding-top: 5%;
  margin-top: -7%;
  /* z-index: 1000; */
  border-radius: 100px 90px;
  position: relative;
}
.services {
  /* position: relative; */
  width: 120%;
  /* padding-bottom: 110px; */
  /* padding-bottom: 8.6%; */
  /* padding-bottom: 89%; */
  /* margin-top: 20%; */
  background-color: rgb(30, 20, 159);
  height: 105%;
}
.service-title {
  text-align: center;
  color: #040504;
  padding-top: 3%;
  margin-bottom: 3%;
  font-size: 2.5rem;
  margin-top: -3%;
  font-weight: 500;
}
.service-title b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.card {
  position: sticky;
  top: 27%;
  display: flex;
  border: 1px solid #605f5f;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
  width: 90%;
  margin-left: 5%;
  padding: 3% 5%;
  background-size: cover;
  background-position: center;
  background: white;
}

.card:last-child {
  margin-bottom: 3%;
}

/* .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  opacity: 0.3;
  z-index: 0;
} */

/* .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 6, 6, 0.5); 
  z-index: 0;
} */

.card-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 300px;
  z-index: 1;
  background: transparent;
}

.card-content img {
  object-fit: cover;
  border-radius: 20px;
  /* height: 80%;
  width: 45%; */
  height: 300px;
  width: 400px;
}

.card-content .text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content .text h1 {
  margin: 0 0 10px;
  color: #1b1b1b;
  /* color: white; */
  font-weight: 600;
  font-style: semi-bold;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 5%;
}

.card-content .text p {
  margin: 0;
  font-size: 16px;
  color: #777777;
  /* color: white; */
}

@media (max-width: 768px) {
  .services-container {
    border-radius: 20px 10px;
  }

  .card {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .card-content {
    flex-direction: column;
    height: auto;
  }

  .card-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .card-content .text {
    padding: 10px;
  }

  .card-content .text h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .card-content .text p {
    font-size: 1rem;
    color: #555;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 20px;
  }
  .services-container {
    border-radius: 20px 10px;
  }
  .card {
    border-radius: 15px;
    padding: 10px;
  }

  .card-content .text h1 {
    font-size: 1.3rem;
  }

  .card-content .text p {
    font-size: 0.95rem;
    padding-bottom: 10%;
  }
}

/* eyemission */
.our-vismis-h2 {
  font-size: 2rem;
  position: absolute;
  margin-top: -55%;
  font-weight: 500;
}
.our-vismis-h2 b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.eyemission {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  box-shadow: inset 0px 4px 250px -70px #ff4b00;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170vh;
  width: 100vw;
  overflow: hidden;
  /* padding-top: 17.2%; */
  margin-top: -6%;
  /* padding-bottom: 12.1%; */
  /* padding-top: 15%; */
}

.eye-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.eyemission-left,
.eyemission-right {
  background: rgba(0, 0, 0, 0.6);
  border: 0.1px solid #000000;
  padding: 20px;
  max-width: 45%;
  min-height: 70vh;
  box-shadow: 0px -1px 65px -30px #ffffff99 inset;
  backdrop-filter: blur(2.7px);
  -webkit-backdrop-filter: blur(2.7px);
  opacity: 0;
  text-align: center;
}

.eyemission-left {
  border-bottom-right-radius: 400px 400px;
  transform: translateX(-100px);
  /* transform: translateX(0); */
  animation: slideInLeft 1s forwards;
  position: absolute;
  left: 0%;
  margin-top: -14.3%;
}

.eyemission-right {
  border-top-left-radius: 400px 400px;
  transform: translateX(100px);
  animation: slideInRight 1s forwards;
  animation-delay: 1.2s;
  position: absolute;
  right: 0%;
  margin-bottom: -20.5%;
}

.eyemission-left h2 {
  /* margin: 10px 0; */
  /* color: #ff7845; */
  font-size: 30px;
  /* margin-right: 35%; */
  margin-right: 5%;
  margin-top: -5%;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.eyemission-right h2 {
  margin: 10px 0;
  /* color: #ff7845; */
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  font-size: 30px;
  margin-top: -5%;
}

.eyemission-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
  margin-left: 21%;
  margin-top: 2%;
  max-width: 50%;
}
.eyemission-right p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
  max-width: 50%;
  margin-left: 25%;
}

.eyemission-left img {
  width: 25%;
  height: 25%;
  margin: auto;
  display: block;
  /* margin-left: -2%; */
  margin-right: 40%;
}
.eyemission-right img {
  width: 30%;
  height: 30%;
  margin: auto;
  display: block;
  margin-top: 5%;
}

.center-img img {
  max-width: 180px;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 1.5s ease forwards 0.5s;
  margin-left: -20%;
  margin-top: 40%;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* Section Title */
  .our-vismis-h2 {
    position: relative;
    /* margin-top: -90%; */
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .our-vismis-h2 b {
    display: block;
    background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
  }

  /* Container Layout */
  .eye-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    align-items: center;
    justify-content: center;
  }

  /* Left & Right Cards */
  .eyemission-left,
  .eyemission-right {
    position: relative;
    max-width: 95%;
    min-height: auto;
    padding: 15px;
    border-radius: 15px;
    transform: none !important;
    animation: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1 !important;
    text-align: center;
  }

  .eyemission-left h2,
  .eyemission-right h2 {
    font-size: 1.4rem;
    margin: 10px auto;
  }

  .eyemission-left p,
  .eyemission-right p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
    margin: 10px auto;
    max-width: 100%;
    text-align: center;
  }

  .eyemission-left img,
  .eyemission-right img {
    width: 50%;
    height: auto;
    margin: 15px auto;
    display: block;
  }

  /* Center Image */
  .center-img img {
    max-width: 120px;
    margin: 20px auto;
    display: block;
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* why choose us */
.whyus {
  height: 100%;
  width: 100%;
  background-color: #fff;
  padding-bottom: 10%;
}

.whyus h1 {
  text-align: center;
  color: #040504;
  padding-top: 3%;
  margin-bottom: 3%;
  font-size: 2.5rem;
  margin-top: -3%;
  font-weight: 500;
}

.whyus h1 b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.whyus-cards {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 2% 5%;
  gap: 2%;
  flex-wrap: wrap;
}

.whyus-card {
  width: 30%;
  border: 1px solid #aaa8a8;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
}

.whyus-card img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.image-container b {
  position: absolute;
  bottom: 2%;
  /* left: 18%; */
  left: 0;
  color: #fff;
  font-size: 1.2rem;
  background: rgba(33, 32, 32, 0.5);
  padding: 5px 10px;
  /* border-radius: 5px; */
  text-align: center;
  width: 100%;
}

.whyus-card p {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .whyus h1 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .whyus-cards {
    flex-direction: column;
    padding: 10px;
    gap: 20px;
    align-items: center;
  }

  .whyus-card {
    width: 90%; /* Make cards take most of the viewport width */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .whyus-card img {
    height: auto; /* Let image adjust to its aspect ratio */
    max-height: 250px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .image-container b {
    font-size: 1rem;
    padding: 4px 8px;
  }

  .whyus-card p {
    font-size: 0.9rem;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
  }
}

/* client reviews */
.reviews-section {
  width: 100%;
  background-color: #fdfdfd;
  padding-bottom: 5%;
}
.reviews-section h1 {
  text-align: center;
  color: #040504;
  padding-top: 3%;
  margin-bottom: 3%;
  font-size: 2.5rem;
  margin-top: -3%;
  font-weight: 500;
  width: 60%;
  margin-left: 20%;
}

.reviews-section h1 b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.reviews-slider {
  display: flex;
  animation: slide 4s linear infinite;
  /* overflow:auto; */
}

.review-card {
  background: #f8f8f8;
  width: 100%;
  min-width: 35%;
  margin-right: 20px;
  border-radius: 30px;
  padding: 20px;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
  text-align: center;
  /* border: 1px solid #9c9b9b; */
}

.review-card img {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: fill;
  margin-bottom: 1%;
}

.review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10%;
  color: #333;
}

.review-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10%;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* services slider */
.services-slider {
  background: linear-gradient(
    181.67deg,
    #ff6d31 -97.42%,
    #ff9265 -25.73%,
    #ffc5ad 62.37%
  );
  padding: 20px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: white solid 50px;
}

.services-track {
  display: flex;
  align-items: center;
  animation: slide 4s linear infinite;
}

.service-item {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
  color: black;
  margin: 0 15px;
}

.dot {
  /* display: inline-block;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  margin: 0 15px; */
  color: black;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
  .services-slider {
    display: none;
  }
  .reviews-section {
    padding: 10%;
  }
  .reviews-section h1 {
    font-size: 1.8rem;
    width: 90%;
    margin-left: 5%;
    margin-top: 0;
    padding-top: 2%;
  }

  .reviews-slider {
    flex-direction: column;
    animation: none; /* Disable sliding animation on small screens */
  }

  .review-card {
    min-width: 90%;
    margin: 10px auto;
  }

  .review-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1%;
  }

  .review-card h3 {
    font-size: 1.1rem;
  }

  .review-card p {
    font-size: 0.95rem;
  }

  /* Services Slider */
  .services-slider {
    padding: 10px;
    white-space: normal;
  }

  .services-track {
    flex-direction: column;
    animation: none; /* Disable sliding animation */
  }

  .service-item {
    display: block;
    font-size: 1.2rem;
    margin: 10px auto;
    text-align: center;
  }

  .dot {
    display: none; /* Hide dots for simplicity */
  }
  .reviews-slider .review-card:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .reviews-section h1 {
    font-size: 1.5rem;
    width: 95%;
    margin-left: 2.5%;
  }

  .review-card {
    padding: 15px;
  }

  .service-item {
    font-size: 1rem;
    margin: 8px auto;
  }
}

/* faq */
.faq-container {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 50px;
}

.faq-container h1 {
  text-align: center;
  color: #050505;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
}
.faq-container h1 b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.faq-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.faq-left {
  flex: 1;
  min-width: 60%;
}

.faq-left h2 {
  text-align: center;
  color: #ff6d31;
  margin-bottom: 20px;
  font-weight: 400;
}

.faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 25px;
  margin-bottom: 15px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question p {
  font-size: 1.2rem;
  margin: 0;
  color: rgb(6, 6, 6);
}

.icon {
  font-size: 1.5rem;
  color: #ff6d31;
  transition: transform 0.3s ease;
}

.description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 1rem;
  color: #555;
  padding: 0 0;
}

.faq-item.open .description {
  max-height: 300px;
  padding-top: 10px;
}

.faq-item.open .icon {
  transform: rotate(45deg);
}

.faq-right {
  flex: 1;
  min-width: 35%;
  text-align: center;
  background: #fff;
  /* padding: 30px; */
  border-radius: 10px;
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 2%;
}

.faq-right img {
  width: 100%;
  max-width: 400px;
}

.faq-right h3 {
  color: black;
  margin-top: 5px;
  font-size: 25px;
  font-weight: 500;
}
.faq-right h3 b {
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.faq-right p {
  color: #000000;
  margin-top: 7px;
}

/* .faq-right button {
      margin-top: 15px;
      padding: 10px 20px;
      background: #FF6D31;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
    } */

.contact-button-faq a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0b0b0b;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 25px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid #ff4b00;
  border-radius: 25px;
  /* background-image: linear-gradient(#000, #000),
    linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%); */
  /* background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%); */
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-button-faq a:hover {
  background-color: #fff;
  color: transparent;
  background: linear-gradient(90.48deg, #ff4b00 -13.2%, #ffbda2 76.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Inner glow effect */
  box-shadow: inset 0 0 5px rgba(255, 107, 0, 0.8);
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 30px;
  }

  .faq-left,
  .faq-right {
    min-width: 100%;
    width: 100%;
    padding: 0;
  }

  .faq-left h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .faq-item {
    width: 95%;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .faq-question p {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .icon {
    font-size: 1.3rem;
  }

  .faq-right {
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 15px;
  }

  .faq-right img {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
  }

  .faq-right h3 {
    font-size: 1.5rem;
  }

  .faq-right p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .contact-button-faq a {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* growth section */
.growth-section-container {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #fff;
  padding-bottom: 5%;
}

.growth-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 80vh;
  width: 90vw;
  padding: 10px;
  background: #000;
  margin-left: 5vw;
  border-radius: 30px;
  box-shadow: inset 0px 4px 250px -70px #ff4b00;
}

.growth-image {
  width: 50%;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.growth-image.visible {
  opacity: 1;
  transform: translateX(0);
}

.growth-text {
  width: 45%;
}

.growth-text h1 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 130%;
  right: -32%;
  margin-top: -4%;
  position: absolute;
}

.growth-text h1 span {
  color: #ff8453;
}

.growth-text p {
  font-size: 1rem;
  margin-top: 12%;
  color: #ccc;
  /* width: 130%; */
  text-align: center;
  margin-right: 35%;
}

.growthbtn {
  margin-top: 5%;
  margin-left: 19%;
  /* position: absolute; */
}
@media (max-width: 768px) {
  .growth-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-radius: 20px;
  }

  .growth-image {
    width: 80%;
    opacity: 1;
    transform: translateX(0);
    margin-bottom: 20px;
  }

  .growth-text {
    width: 90%;
    text-align: center;
    position: relative;
  }

  .growth-text h1 {
    font-size: 1.8rem;
    width: 100%;
    position: relative;
    margin-top: 10px;
    right: 0;
  }

  .growth-text h1 span {
    color: #ff8453;
  }

  .growth-text p {
    font-size: 1rem;
    margin-top: 15px;
    color: #ccc;
    margin-right: 0;
    text-align: center;
  }

  .growthbtn {
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
}

/* footer */
.footer-container {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #fff;
  padding-bottom: 5%;
}
.footer {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  max-width: 1200px;
  /* margin: 50px auto; */
  box-shadow: 0 4px 10px rgba(247, 247, 247, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 3%;
  border: 2px solid #ddd;
}

.footer-logo {
  flex: 1;
  /* min-width: 250px; */
  min-width: 40%;
  text-align: center;
}

.footer-logo img {
  /* width: 120px; */
  width: 40%;
  margin-top: -6%;
}

.footer-logo h1 {
  color: #555;
}

.footer-logo p {
  margin: 10px 0;
  color: #555;
  font-size: 0.9rem;
  margin-top: -5%;
  width: 80%;
  text-align: start;
  margin-left: 13%;
  margin-bottom: 5%;
}

.social-icons {
  margin-top: 10px;
}

.social-icons img {
  width: 25px;
  margin: 0 5px;
  vertical-align: middle;
}

.footer-services,
.footer-contact {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.footer-services h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.footer-services p,
.footer-contact p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #333;
}

.footer-rating {
  text-align: center;
  flex-basis: 100%;
  margin-top: 20px;
}

.footer-rating img {
  width: 150px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 5px;
    border-radius: 15px;
    margin-left: 3%;
    margin-right: 3%;
  }

  .footer-logo {
    min-width: 80%;
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 60%;
    margin-top: 0;
  }

  .footer-logo h1 {
    font-size: 1.5rem;
    color: #555;
  }

  .footer-logo p {
    margin-top: 10px;
    margin-left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }

  .social-icons {
    margin-top: 15px;
  }

  .social-icons img {
    width: 30px;
    margin: 0 8px;
  }

  .footer-services,
  .footer-contact {
    min-width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-services h3,
  .footer-contact h3 {
    font-size: 1.3rem;
  }

  .footer-services p,
  .footer-contact p {
    font-size: 1rem;
    margin: 6px 0;
  }

  .footer-rating {
    margin-top: 25px;
  }

  .footer-rating img {
    width: 120px;
  }
}
