* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f4f4f9;
  overflow-x: hidden;
}

/* Loading Spinner Styles */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fallback for browsers that don't support dvh */
  height: 100dvh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.spinner-container {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s ease, height 0.3s ease;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(23, 136, 174, 0.1);
  border-top: 3px solid #1788ae;
  border-radius: 50%;
  animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-logo {
  position: relative;
  z-index: 1;
}

.spinner-logo img {
  width: 50px;
  height: auto;
  animation: pulseLogo 2s ease-in-out infinite;
  transition: width 0.3s ease;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Responsive Spinner */
@media (max-width: 768px) {
  .spinner-container {
    width: 90px;
    height: 90px;
  }

  .spinner-logo img {
    width: 35px;
  }
}

@media (max-width: 480px) {
  .spinner-container {
    width: 70px;
    height: 70px;
  }

  .spinner-logo img {
    width: 30px;
  }
}

/* HEADER */
/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  /* Slightly taller for better breathing room */
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  /* More transparent */
  backdrop-filter: blur(12px);
  /* Stronger blur */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo img {
  height: 80px;
  /* Increased size */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

header nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  text-decoration: none;
  color: #0f1a36;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

header nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #1788ae;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #1788ae;
}

header nav ul li a:hover::after,
header nav ul li a.active::after {
  width: 100%;
}

/* Header CTA Button */
.header-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, #1788ae, #1c4f63);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(23, 136, 174, 0.2);
  display: inline-block;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 136, 174, 0.3);
  color: #fff;
}

/* Menu toggle button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0f1a36;
  z-index: 1100;
}

.mobile-break {
  display: none;
}

/* Responsive styles */
@media (max-width: 992px) {
  header {
    padding: 0 30px;
  }

  header nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 60px;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-cta {
    display: none;
    /* Hide CTA on mobile or move it into menu */
  }

  header nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    /* Slide from right */
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    left: auto;
    /* Reset left */
    transform: none;
    /* Reset transform */
    border-radius: 0;
    opacity: 1;
    visibility: visible;
  }

  header nav ul.show {
    right: 0;
  }

  header nav ul li a {
    font-size: 1.2rem;
    color: #333;
    display: block;
    width: 100%;
  }

  /* Overlay for mobile menu */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .menu-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .mobile-break {
    display: inline;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  min-height: 100vh;

  padding: 0 50px;
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay */
.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  /* adjust darkness */
  z-index: 1;
}


@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-text {
  flex: 1;
  z-index: 2;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-btn {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background: #fff;
  color: #1788ae;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: #1788ae;
  color: #fff;
  box-shadow: 0 0 15px rgba(23, 136, 174, 0.6);
}

/* 
.shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.6;
}

.shape.one {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #ff7e5f, #feb47b);
  top: 10%;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape.two {
  width: 180px;
  /* background-image: url('Assets/2.jpg');
    background-size: cover;     
  background-position: right;  
  background-repeat: no-repeat; */
/* height: 180px; */
/* background: radial-gradient(circle, #1788ae, #3a1c71); */
/* bottom: 15%; */
/* right: 50px; */
/* animation: float 10s ease-in-out infinite; */
/* } */

/* .shape.three {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #42e695, #3bb2b8);
  top: 70%;
  left: 30%;
  animation: float 12s ease-in-out infinite;
} */

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: #f4f4f9;
  clip-path: ellipse(70% 100% at 50% 100%);
  z-index: 5;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide .hero-text {
  flex: 1;
  max-width: 500px;
  color: #fff;
  z-index: 3;
}

.slide .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide .hero-image img {
  width: 88%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.8s ease;
}

.home-bottom-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 6;
  width: 90%;
  max-width: 850px;
  padding: 10px 20px;
}

.home-bottom-text::before {
  content: "";
  position: absolute;
  top: -59px;
  left: 50%;
  transform: translateX(-50%);
  width: 112%;
  height: 170px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%231788ae' fill-opacity='0.15' d='M0,160L80,170.7C160,181,320,203,480,213.3C640,224,800,224,960,213.3C1120,203,1280,181,1360,170.7L1440,160L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z'></path></svg>") no-repeat center;
  background-size: cover;
  z-index: -1;
}

.home-bottom-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1788ae;
  margin-bottom: -22px;
  position: relative;
  z-index: 1;
}

.home-bottom-text h2::before,
.home-bottom-text h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #1788ae;
}

.home-bottom-text h2::before {
  left: -70px;
}

.home-bottom-text h2::after {
  right: -70px;
}

.home-bottom-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 680px;
  margin: 34px auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 412px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    height: auto;
    min-height: 83vh;
  }
}

@media (max-width: 768px) {

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    height: auto;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 40px;
    margin-top: 80px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .slide {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .slide .hero-image img {
    width: 120%;
    max-width: 400px;
  }

  .home-bottom-text {
    bottom: -52px;
    left: 50%;
    width: 100%;
    max-width: 850px;
    padding: 0px 0px;
  }

  .home-bottom-text h2 {
    font-size: 1rem;
    margin-bottom: -58px;
  }

  .home-bottom-text h2::before,
  .home-bottom-text h2::after {
    width: 45px;

  }

  .home-bottom-text h2::before {
    left: 26px;
  }

  .home-bottom-text h2::after {
    right: 26px;
  }

  .home-bottom-text p {
    font-size: 1rem;
    margin: 66px auto;
    line-height: 1;
  }

}

/* --------------------serivice------------/ */

.services {
  padding: 50px 20px 30px;
  text-align: center;
  background: #f4f4f9;
}

.title-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.title-container h2.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1788ae;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
}

.title-container .bg-text {
  position: absolute;
  top: 122%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(182, 192, 196, 0.2);
  -webkit-text-stroke: 2px #0e4b63;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  animation: scrollLimited 10s ease-in-out infinite alternate;
}

@keyframes scrollLimited {
  0% {
    transform: translate(-35%, -50%);
  }

  50% {
    transform: translate(-65%, -50%);
  }

  100% {
    transform: translate(-35%, -50%);
  }

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  padding: 60px 40px;
}

/* Service card */
.service-item {
  position: relative;
  opacity: 0;
  transform: scale(0.85) translateY(40px);
  transition: all 0.7s ease;
  will-change: opacity, transform;
  background: linear-gradient(145deg, #ffffff, #f7fafa);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(23, 136, 174, 0.08);
  text-align: center;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #1788ae, #1c4f63);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.service-item.hide {
  opacity: 0;
  transform: scale(0.85) translateY(40px);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.service-item:hover img {
  transform: rotate(8deg) scale(1.15);
}

.service-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0e4b63;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.65;
  padding: 0 5px;
  transition: color 0.3s ease;
}

.service-item:hover p {
  color: #222;
}

/* -------------SERVICE RESPONSIVE------------ */
@media (max-width: 768px) {
  .services {
    padding: 30px 20px;
  }

  .title-container h2.main-title {
    font-size: 2.5rem;
  }

  .title-container .bg-text {
    font-size: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .service-item {
    padding: 25px 15px;
  }

  .service-item h3 {
    font-size: 1.2rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }
}

/* --------------------about us------------------ */
.aboutus-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.aboutus-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.aboutus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.6);
  backdrop-filter: blur(1px);
  z-index: -1;

}

.aboutus-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  width: 100%;
}

.aboutus-text {
  flex: 1;
}

.aboutus-text h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;
}

.aboutus-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: #27bcee;
  border-radius: 2px;
}

.aboutus-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e7e5e5;
  margin-bottom: 15px;
}

.about-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 650px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input,
.form-row select {
  flex: 1;
}

.about-form input,
.about-form textarea,
.about-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.about-form input:focus,
.about-form textarea:focus,
.about-form select:focus {
  border-color: #1788ae;
  box-shadow: 0 0 8px rgba(23, 136, 174, 0.25);
  background: #fff;
}

.about-form textarea {
  resize: none;
}

.about-form button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1788ae;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-form button:hover {
  background: #126c8b;
}

/* -----------ABOUT RESPONSIVE-------------------- */
@media (max-width: 768px) {



  /* ABOUT US */
  .aboutus-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .aboutus-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
  }

  .aboutus-text h2 {
    font-size: 2.2rem;
  }

  .aboutus-text p {
    font-size: 1rem;
  }

  .about-form {
    max-width: 100%;
  }

  .about-form form {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

/* --------------------why choose us -------------- */
.why-choose-us-section {
  background: #f5f7ff;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(90deg, #6c63ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #6c63ff;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.image-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.image-card {
  position: relative;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.image-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  ;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.overlay h3 {
  font-size: 1.5rem;
  margin: 0;
}

.overlay p {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.image-card:hover .overlay p {
  opacity: 1;
  max-height: 300px;
}

/* ----WHY CHOOSE US RESPONSIVE------------------ */
@media (max-width: 768px) {

  /* WHY CHOOSE US */
  .why-choose-us-section {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .image-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .image-card {
    width: 100%;
    max-width: 350px;
  }
}

/* ---------------------------faq-------------------------*/
.faq-section {
  position: relative;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
  background: #f5f7ff;
  overflow: hidden;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.faq-left {
  flex: 1;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0e4b63;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  margin-top: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, #6c63ff, #00d4ff, #ff6ec7, #00d4ff);
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.faq-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.faq-card:hover {
  border-image: linear-gradient(135deg, #6c63ff, #00d4ff);
  border-image-slice: 1;
  transform: translateY(-5px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0e4b63;
}

.faq-toggle {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #372df7;
  background-color: #d1ddf0;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-toggle {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 25px;
}

.faq-card.active .faq-answer {
  max-height: 500px;
  padding: 15px 25px 25px 25px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Right side: image */
.faq-right {
  flex: 1;
  background: url('Assets/faq_opt.jpg') center/cover no-repeat;
  border-radius: 20px;
  min-height: 500px;
  z-index: 2;
}

/* Background bubbles */
.bg-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
  background: radial-gradient(circle at 30% 30%, #6c63ff, #00d4ff);
  animation: float 12s infinite ease-in-out;
}

.bubble1 {
  width: 220px;
  height: 220px;
  top: 60px;
  left: -100px;
  background: radial-gradient(circle at 30% 30%, #6c63ff, #ff6ec7);
}

.bubble2 {
  width: 180px;
  height: 180px;
  bottom: 120px;
  right: -80px;
  animation-delay: 3s;
}

.bubble3 {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: 6s;
}

.bubble4 {
  width: 130px;
  height: 130px;
  bottom: 10px;
  left: 20%;
  animation-delay: 9s;
  background: radial-gradient(circle at 30% 30%, #ff7eb3, #ff758c);
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-40px) scale(1.05);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* -------------------FAQ RESPONSIVE------------------ */
@media (max-width: 768px) {

  /* FAQ */
  .faq-section {
    padding: 20px 14px;
  }

  .faq-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-toggle {
    width: 50px;
    height: 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-right {
    width: 100%;
    min-height: 200px;
    /* smaller but still visible */
    background-position: center;
    background-size: cover;
    border-radius: 12px;
  }

  .faq-answer p {
    line-height: 1.5;
    margin: -14px;
  }
}

/* ---------------- HOW WE WORK ---------------- */
.how-we-work {
  padding: 60px 20px;
  background: #f5f8fb;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.how-we-work .title-container {
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
}

.how-we-work .main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1788ae;
  position: relative;
  z-index: 2;
}

.how-we-work .bg-text {
  position: absolute;
  top: 122%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(182, 192, 196, 0.15);
  -webkit-text-stroke: 2px #1788ae;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0 20px;
}

.work-item {
  background: #ffffff;
  padding: 30px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(23, 136, 174, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-item::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, #1788ae, #00c3ff);
  top: 100%;
  left: -10%;
  border-radius: 50%;
  transition: all 0.6s ease;
  opacity: 0.15;
  z-index: 0;
}

.work-item:hover::before {
  top: -40%;
}

.work-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  object-fit: contain;
  transition: all 0.5s ease;
  z-index: 2;
  position: relative;
}

.work-item:hover img {
  transform: scale(1.2) rotate(5deg);
}

.work-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e4b63;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.work-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(23, 136, 174, 0.2);
}

/* ---HOW WE WORK RESPONSIVE------------------  */
@media (max-width: 768px) {
  .how-we-work {
    padding: 40px 20px;
  }

  .how-we-work .main-title {
    font-size: 2.5rem;
  }

  .how-we-work .bg-text {
    font-size: 3rem;
  }

  .work-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 0;
    ;
  }

  .work-item {
    padding: 20px;
  }

  .work-item h3 {
    font-size: 1.2rem;
  }

  .work-item p {
    font-size: 0.95rem;
  }
}

/* ------technology------------------------- */
.technology-section {
  background: #f9f9ff;
  padding: 50px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f1a36;
}

.tech-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
  margin: 0 90px;
}

.tech-slide-track {
  display: flex;
  gap: 50px;
  align-items: center;
  height: 180px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.tech-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tech-slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.tech-slide p {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}

.tech-slide:hover {
  transform: scale(1.3);
  z-index: 2;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* -----TECHNOLOGY RESPONSIVE------------------  */
@media (max-width: 768px) {

  /* TECHNOLOGY */
  .technology-section {
    padding: 30px 20px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .tech-slider {
    padding: 0 20px;
    margin: 0 20px;
  }

  .tech-slide-track {
    height: 150px;
  }

  .tech-slide img {
    width: 80px;
    height: 80px;
  }

  .tech-slide p {
    font-size: 0.8rem;
  }
}

/* --------------footer------------------- */
/* --------------footer------------------- */
.footer {
  background: #0b1120;
  /* Deep dark blue/black */
  color: #e2e8f0;
  padding: 80px 0 0;
  position: relative;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(23, 136, 174, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.footer-col.about {
  max-width: 380px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
  /* Make logo white */
  opacity: 0.9;
}

.footer-col.about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 30px;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #1788ae;
  border-radius: 2px;
}

/* Links List */
.footer-col.links ul {
  list-style: none;
  padding: 0;
}

.footer-col.links li {
  margin-bottom: 15px;
}

.footer-col.links a {
  font-size: 0.95rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-col.links a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-col.links a::before {
  content: "\203A";
  /* Chevron */
  margin-right: 8px;
  font-size: 1.2rem;
  color: #1788ae;
  transition: margin-right 0.3s;
}

.footer-col.links a:hover::before {
  margin-right: 12px;
}

/* Contact Info */
.footer-col.contact p {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-col.contact i {
  color: #1788ae;
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-col.contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col.contact a:hover {
  color: #38bdf8;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background: #1788ae;
  color: #fff;
  transform: translateY(-3px);
  border-color: #1788ae;
  box-shadow: 0 5px 15px rgba(23, 136, 174, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 25px 0;
  text-align: center;
  background: #080c17;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col.about {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

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

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer h4::after {
    left: 0;
    /* Align with left text in mobile if desired, or center */
  }
}

@media (max-width: 480px) {

  /* Extra small screens */
  .hero-text h1 {
    font-size: 2rem;
  }

  .title-container h2.main-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .aboutus-text h2 {
    font-size: 1.8rem;
  }

  .how-we-work .main-title {
    font-size: 2rem;
  }
}