body {
  font-family: 'Segoe UI', sans-serif;
}

.custom-container {
  max-width: 1450px;
  margin: auto;
}

/* NAVBAR */
/* NAVBAR */
.custom-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: transparent;
  transition: 0.3s;
}

.custom-navbar.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* logo */
.navbar-brand img {
  height: 100px;
      border-radius: 50px;
}

/* center menu */
/* .navbar-nav {
  align-items: center;
} */

/* links */
.nav-link {
  margin: 0 12px;
  position: relative;
}

/* underline */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  /* background: #00a8b5; */
  bottom: 18px;
  /* left: 0; */
  transition: 0.3s;
}

/* .nav-link:hover::after {
  width: 100%;
} */

/* dropdown */
.dropdown-menu {
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-item:hover {
  background: #f5f5f5;
  color: #00a8b5;
}

/* login */
.login-btn {
  background: #00a8b5;
  color: white;
  border-radius: 6px;
}

/* HERO */
.hero {
  padding-top: 120px;
  min-height: 100vh;
}

.hero h1 {
  font-size: 40px;
}

.hero span {
  color: #00a8b5;
}

/* MOBILE */
@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 10px;
  }

  .nav-link {
    margin: 10px 0;
  }

}





/* HERO */
.hero {
  padding: 120px 0 60px;
  background: #f5f7fb;
}

/* FLEX LAYOUT */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT */
.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-content span {
  color: #2f80ed;
}

.hero-content p {
  margin: 20px 0;
  max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* IMAGE */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CIRCLE */
.circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  border-radius: 50%;
  z-index: 0;

  animation: float 4s ease-in-out infinite;
}

/* IMAGE */
/* HERO LAYOUT */
.hero {
  padding: 120px 0 60px;
  background: #f5f7fb;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* IMAGE AREA */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 🔵 CIRCLE (ZOOM ANIMATION) */
.circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  border-radius: 50%;
  z-index: 0;

  transform: scale(0);
  animation: zoomCircle 1s ease forwards;
}

/* 📱 IMAGE (DELAY AFTER CIRCLE) */
.hero-img {
  width: 50%;
  position: relative;
  z-index: 1;

  opacity: 0;
  transform: translateY(40px);

  animation: showImage 1s ease forwards;
  animation-delay: 0.8s; /* 👈 after circle */
}

/* 🔥 ANIMATIONS */
@keyframes zoomCircle {
  to {
    transform: scale(1);
  }
}

@keyframes showImage {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: floatBtn 2s ease-in-out infinite;
}

/* Hover Effect */
.animated-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Floating Animation */
@keyframes floatBtn {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* TEXT */
.hero-content h1 {
  font-size: 48px;
}

.hero-content span {
  color: #2f80ed;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .circle {
    width: 250px;
    height: 250px;
  }

  .hero-img {
    width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}


.features {
  padding: 60px 0;
}

/* MAIN BOX */
.feature-box {
  background: #eaf3f7;
  border-radius: 25px;
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* ITEM */
.feature-item {
  padding: 20px;
}

/* ICON CIRCLE */
.icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  color: white;

  background: linear-gradient(135deg, #2f80ed, #56ccf2);
}

/* TITLE */
.feature-item h5 {
  margin-top: 20px;
  font-weight: 600;
}

/* TEXT */
.feature-item p {
  color: #555;
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}
.feature-box {
  background: #eef6fa;

  border-radius: 30px;

  /* 🔥 GRADIENT BORDER EFFECT */
  border: 1.5px solid rgba(0, 168, 181, 0.4);

  /* 🔥 OUTER GLOW */
  box-shadow: 
    0 10px 30px rgba(0, 168, 181, 0.15),
    0 0 0 2px rgba(0, 168, 181, 0.05) inset;

  padding: 50px 20px;

  transition: 0.3s;
}
.feature-box:hover {
  box-shadow: 
    0 20px 50px rgba(0, 168, 181, 0.25),
    0 0 0 2px rgba(0, 168, 181, 0.08) inset;

  transform: translateY(-3px);
}
.feature-box {
  border-radius: 30px;
  padding: 2px;

  background: linear-gradient(135deg, #2f80ed, #56ccf2);
}

.feature-box-inner {
  background: #eef6fa;
  border-radius: 28px;
  padding: 50px 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .feature-box {
    padding: 30px 15px;
  }

  .feature-item {
    margin-bottom: 30px;
  }

  .icon {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }

}



.services {
  padding: 60px 0;
  background: #d8ebf1;
}

/* LEFT BOX */
.service-tabs {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
}

/* TAB ITEM */
.service-tabs .nav-link {
  color: #333;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}

/* ACTIVE TAB */
.service-tabs .nav-link.active {
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* RIGHT CONTENT */
.service-content {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TEXT */
.service-content h3 {
  font-size: 32px;
}

/* IMAGE */
.service-content img {
  width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .service-content img {
    margin-top: 20px;
    width: 180px;
  }

}
.tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* SECTION */
.why {
  padding: 80px 0;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  color: #555;
}

/* WRAPPER */
/* SECTION */
.why-left {
  position: relative;
  padding: 20px;
}

/* TITLE */
.title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  max-width: 600px;
  margin: 10px auto 40px;
  color: #666;
}

/* WRAPPER */
.why-wrapper {
  position: relative;
  padding: 30px;
}

/* 🔥 REAL CURVED BACKGROUND (SVG BASED) */
.why-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  z-index: 0;
}

.why-bg svg {
  width: 100%;
  height: 100%;
}

.why-bg path {
  fill: linear-gradient(135deg, #2f80ed, #56ccf2);
  fill: #3fa9f5;
}

/* CARD */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 1;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* 🔥 PREMIUM HIGHLIGHT CARD */
.why-card.highlight {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  background: white;
  color: #00a8b5;
  border-radius: 50%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.why-card h5 {
  margin-top: 15px;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* 🔥 ANIMATION */
.why-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.4s; }
.why-card:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 MOBILE */
@media (max-width: 991px) {

  .why-bg {
    width: 100%;
    height: 220px;
  }

  .why-card {
    text-align: center;
  }

}





/* SLIDER */
.mobile-slider {
  position: relative;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;

  perspective: 1000px;
  /* overflow: hidden; */
}

/* COMMON */
.mobile {
  position: absolute;
  width: 50%;

  border-radius: 30px;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.2); */

  transition: all 0.8s ease;
}

/* CENTER */
.mobile.active {
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 3;
  opacity: 1;
}

/* RIGHT */
.mobile.next {
  transform: translateX(120px) scale(0.85) rotateY(-25deg);
  z-index: 2;
  opacity: 0.6;
}

/* LEFT */
.mobile.prev {
  transform: translateX(-120px) scale(0.75) rotateY(25deg);
  z-index: 1;
  opacity: 0.4;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {

  .mobile-slider {
    height: 400px;
  }

  .mobile {
    width: 200px;
  }

  .mobile.next {
    transform: translateX(80px) scale(0.9) rotateY(-15deg);
  }

  .mobile.prev {
    transform: translateX(-80px) scale(0.85) rotateY(15deg);
  }

}

/* ================= MOBILE ================= */
/* ================= MOBILE (3D ENABLED) ================= */
@media (max-width: 576px) {

  .mobile-slider {
    height: 300px;
    perspective: 800px; /* 🔥 keep depth */
  }

  .mobile {
    width: 150px;
  }

  /* CENTER */
  .mobile.active {
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 3;
    opacity: 1;
  }

  /* RIGHT */
  .mobile.next {
    transform: translateX(50px) scale(0.9) rotateY(-12deg);
    z-index: 2;
    opacity: 0.7;
  }

  /* LEFT */
  .mobile.prev {
    transform: translateX(-50px) scale(0.85) rotateY(12deg);
    z-index: 1;
    opacity: 0.5;
  }

}




.business {
  padding: 80px 0;
  background: #f5f7fb;
}

/* TABS */
.business-tabs {
  background: #eee;
  padding: 5px;
  border-radius: 12px;
  display: inline-flex;
}

.business-tabs .nav-link {
  padding: 10px 25px;
  border-radius: 10px;
  color: #333;
  transition: 0.3s;
}

.business-tabs .nav-link.active {
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* IMAGE */
.business-img {
  max-width: 100%;
}

/* LIST */
.business-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.business-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.business-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #00a8b5;
  font-weight: bold;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {

  .business-img {
    max-width: 280px;
    margin-bottom: 20px;
  }

}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .business-tabs {
    flex-direction: column;
    width: 100%;
  }

  .business-tabs .nav-link {
    text-align: center;
  }

  .business-img {
    max-width: 220px;
  }

  .business h3 {
    text-align: center;
  }

  .business p {
    text-align: center;
  }

  .business-list {
    text-align: left;
  }

}
.tab-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* testimonial */

.testimonial {
  padding: 80px 0;
  background: #f5f7fb;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding-top: 50px;
  padding: 30px;
  
  border-radius: 15px;
  text-align: left;

  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
  margin: 0 10px;

  transition: 0.4s;
  position: relative;
}

/* IMAGE */
/* WRAPPER */
.user-wrapper {
  position: absolute;
  top: -35px;
  left: 20px;
}

/* AVATAR (INITIAL LETTER) */
.user-avatar {
  width: 65px;
  height: 65px;
border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);

  color: #fff;
  font-size: 22px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* BADGE */
.badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;

  width: 22px;
  height: 22px;

  background: #00a8b5;
  color: #fff;

  border-radius: 50%;
  font-size: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #fff;
}

/* FLOAT ANIMATION (OPTIONAL) */
.user-wrapper {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* TEXT */
.testimonial-card p {
  margin-top: 40px;
  color: #555;
}

.name {
  display: block;
  margin-top: 10px;
  color: #00a8b5;
  font-style: italic;
}

/* CENTER ACTIVE */
.slick-center .testimonial-card {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* SIDE CARDS */
/* .slick-slide {
  opacity: 0.5;
} */

.slick-center {
  opacity: 1;
}

/* ARROWS HIDE */
.slick-prev,
.slick-next {
  display: none !important;
}
.slick-list {
  overflow-x: hidden;
  overflow-y: visible;
}

.slick-track {
  padding-top: 60px; /* space for avatar */
}

/* DOTS */
.slick-dots li button:before {
  color: #00a8b5;
}
.testimonial-slider {
  overflow: hidden;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
.testimonial {
  background: linear-gradient(to bottom, #f5f7fb, #eef4f8);
}

/* SECTION */
.testimonial {
  position: relative;
  padding: 80px 0;
  background: #f5f7fb;
  overflow: hidden;
}

/* FLOATING BLOBS */
.testimonial::before,
.testimonial::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

/* LEFT BLOB */
.testimonial::before {
  background: #00a8b5;
  top: 10%;
  left: -100px;
  animation: moveBlob 8s infinite alternate ease-in-out;
}

/* RIGHT BLOB */
.testimonial::after {
  background: #4fc3dc;
  bottom: 10%;
  right: -100px;
  animation: moveBlob2 10s infinite alternate ease-in-out;
}

/* ANIMATION */
@keyframes moveBlob {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

@keyframes moveBlob2 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

/* KEEP CONTENT ABOVE */
.testimonial .container-fluid {
  position: relative;
  z-index: 2;
}
.testimonial {
  background: linear-gradient(120deg, #f5f7fb, #eef4f8, #f5f7fb);
  background-size: 200% 200%;
  animation: bgMove 8s ease infinite;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.testimonial {
  background-color: #f5f7fb;
  background-image: radial-gradient(#d0e7ec 1px, transparent 1px);
  background-size: 20px 20px;
  animation: dotsMove 10s linear infinite;
}

@keyframes dotsMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}



/* marquee section  */

.brand-slider {
  /* background: #d9e6eb; */
  padding: 40px 0;
  overflow: hidden;
}

/* TRACK */
.brand-track {
  display: flex;
  gap: 30px;
  width: max-content;

  animation: scrollLogos 20s linear infinite;
}

/* ITEM */
.brand-item {
  background: #fff;
  padding: 20px 40px;
  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
}

.brand-item img {
  max-height: 60px;
  object-fit: contain;
}

/* ANIMATION */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* TABLET */
@media (max-width: 991px) {

  .brand-item {
    min-width: 140px;
    padding: 15px 25px;
  }

  .brand-item img {
    max-height: 30px;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .brand-item {
    min-width: 120px;
    padding: 10px 20px;
  }

  .brand-item img {
    max-height: 50px;
  }

}
.brand-slider:hover .brand-track {
  animation-play-state: paused;
}
.brand-item:hover {
  transform: scale(1.05);
}



/* SECTION */
/* MAIN SECTION */
.app-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  /* GRADIENT BASE */
  background: linear-gradient(135deg, #e6f4f7, #d2ecf3);
}

/* DOT GRID LAYER */
.app-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(0, 168, 181, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;

  animation: moveDots 20s linear infinite;

  z-index: 0;
}

/* GRADIENT GLOW BLOB */
.app-section::after {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  background: radial-gradient(circle, rgba(0,168,181,0.25), transparent);

  top: 50%;
  right: 10%;
  transform: translateY(-50%);

  filter: blur(60px);

  animation: floatBlob 8s ease-in-out infinite alternate;

  z-index: 0;
}

/* DOT ANIMATION */
@keyframes moveDots {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}

/* BLOB FLOAT */
@keyframes floatBlob {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.15); }
}

/* CONTENT ABOVE BG */
.app-section .container {
  position: relative;
  z-index: 2;
}

/* BLOB ANIMATION */
@keyframes blobMove {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.1); }
}

/* TEXT */
.app-section h2 {
  font-size: 38px;
  font-weight: 700;
}

.app-section p {
  margin: 20px 0;
  color: #555;
}

/* PLAY BUTTON */
.play-btn img {
  height: 50px;
}

/* PHONE */
.phone-wrapper {
  position: relative;
  width: 260px;
  margin: auto;
}

/* FRAME */
.phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* SCREEN */
.screen {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 90%;
  height: 92%;
  overflow: hidden;
  border-radius: 20px;
}

/* SCREEN IMAGES */
.screen img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.6s;
}

.screen img.active {
  opacity: 1;
}

/* FLOAT ANIMATION */
.phone-wrapper {
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* mobile frame */

.app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #dceff4, #c6e3ec);
  position: relative;
  overflow: hidden;
}

/* TEXT */
.content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.content p {
  margin: 20px 0;
  color: #555;
}

.play-btn {
  height: 50px;
  cursor: pointer;
}

/* PHONE */
.phone-container {
  position: relative;
  width: 280px;
  margin: auto;
}

/* BACKGROUND SHAPE */
.bg-shape {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #00a8b5, #2f80ed);
  border-radius: 50% 40% 60% 40%;
  transform: translateY(-50%);
  z-index: 0;
  animation: blob 6s infinite alternate ease-in-out;
}

/* PHONE FRAME */
.phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* SCREEN PERFECT FIT */
.screen {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 89%;
  height: 92%;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
}

/* SCREEN IMAGES */
.screen img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.6s ease;
}

.screen img.active {
  opacity: 1;
}

/* FLOAT EFFECT */
.phone-container {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* BLOB */
@keyframes blob {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.1); }
}


/* SECTION */
.app-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #dceff4, #c6e3ec);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND SHAPE */
.app-section::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 50%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00a8b5, #2f80ed);
  border-radius: 50% 40% 60% 40%;
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: 0;
  animation: blob 6s infinite alternate ease-in-out;
}

/* TEXT */
.content {
  position: relative;
  z-index: 2;
}

.content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.content p {
  margin: 20px 0;
  color: #555;
}

.play-btn {
  height: 50px;
  cursor: pointer;
}

/* 3D CONTAINER */
.phone-3d {
  position: relative;
  width: 280px;
  height: 500px;
  margin: auto;
  perspective: 1200px;
  z-index: 2;
}

/* IMAGE */
.phone-3d .img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 25px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.2); */

  transition: all 0.8s ease;
}

/* CENTER */
.img1 {
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 3;
}

/* RIGHT */
.img2 {
  transform: translateX(140px) scale(0.85) rotateY(-35deg);
  z-index: 2;
  opacity: 0.6;
}

/* LEFT */
.img3 {
  transform: translateX(-140px) scale(0.75) rotateY(35deg);
  z-index: 1;
  opacity: 0.4;
}

/* FLOAT EFFECT */
.phone-3d {
  animation: float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes blob {
  0% { transform: translateY(-50%) scale(1); }
  100% { transform: translateY(-50%) scale(1.1); }
}

/* TABLET */
@media (max-width: 991px) {

  .content {
    text-align: center;
  }

  .content h2 {
    font-size: 28px;
  }

  .phone-3d {
    margin-top: 40px;
    width: 220px;
    height: 420px;
  }

  .img2 {
    transform: translateX(100px) scale(0.85) rotateY(-30deg);
  }

  .img3 {
    transform: translateX(-100px) scale(0.75) rotateY(30deg);
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .app-section {
    padding: 60px 0;
  }

  .phone-3d {
    width: 180px;
    height: 350px;
  }

  .img2 {
    transform: translateX(70px) scale(0.85) rotateY(-25deg);
  }

  .img3 {
    transform: translateX(-70px) scale(0.75) rotateY(25deg);
  }

}


/* INITIAL HIDDEN */
.animate-title,
.animate-text,
.animate-btn {
  opacity: 0;
  transform: translateY(30px);
}

/* TITLE ANIMATION */
.animate-title {
  animation: slideUp 0.8s ease forwards;
}

/* TEXT DELAY */
.animate-text {
  animation: slideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* BUTTON DELAY */
.animate-btn {
  animation: slideUp 0.8s ease forwards, pulse 2s infinite;
  animation-delay: 0.6s;
}

/* SLIDE UP */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BUTTON PULSE (CTA EFFECT) */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,168,181,0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0,168,181,0);
  }
  100% {
    transform: scale(1);
  }
}

/* HOVER */
.play-btn:hover {
  transform: scale(1.08);
  transition: 0.3s;
}


.contact-section {
  position: relative;
  background: url('bg.png') center/cover no-repeat;
  padding: 100px 0;
  overflow: hidden;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT ABOVE */
.contact-section .container {
  position: relative;
  z-index: 2;
}

/* FORM BOX */
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: fadeUp 0.8s ease;
}

.contact-box h4 {
  margin-bottom: 20px;
}

/* INPUT */
.contact-box input,
.contact-box textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

/* BUTTON */
.contact-box button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  border: none;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-box button:hover {
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.content-area h2 {
  font-size: 40px;
}

.content-area p {
  margin: 15px 0 30px;
}

/* STATS */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.stat {
    width: 20%;
    animation: fadeUp 1s ease;
    text-align: center;
}

.stat h3 {
  font-size: 28px;
}

.stat span {
  font-size: 14px;
}

/* ICON */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 991px) {

  .content-area {
    margin-top: 40px;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .stat {
    width: 100%;
  }

}

@media (max-width: 576px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-box {
    padding: 20px;
  }

}


.footer {
  background: #000;
  color: #ccc;
  padding: 80px 0 20px;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* HEADINGS */
.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #00a8b5;
  padding-left: 5px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border: 1px solid #00a8b5;
  border-radius: 8px;

  margin-right: 10px;
  color: #00a8b5;

  transition: 0.3s;
}

.social-icons a:hover {
  background: #00a8b5;
  color: #fff;
  transform: translateY(-3px);
}

/* LINE */
.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}

/* COPYRIGHT */
.copy {
  font-size: 14px;
  color: #888;
}


@media (max-width: 991px) {

  .footer-col {
    margin-bottom: 30px;
  }

}

@media (max-width: 576px) {

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}



/* services start  */

.aeps-section {
  padding: 100px 0;
  background: #f7fbfd;
}

/* TEXT */
.aeps-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0a0a0a;
}

.aeps-content p {
  margin: 20px 0;
  color: #6b7a8c;
  line-height: 1.6;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  border: none;
  padding: 12px 30px;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,168,181,0.3);
}

/* IMAGE */
.aeps-image img {
  width: 100%;
  max-width: 500px;
  animation: floatImg 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* TABLET */
@media (max-width: 991px) {

  .aeps-content {
    text-align: center;
  }

  .aeps-content h2 {
    font-size: 28px;
  }

  .aeps-image {
    margin-top: 40px;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .aeps-section {
    padding: 60px 0;
  }

  .aeps-content h2 {
    font-size: 24px;
  }

  .contact-btn {
    width: 100%;
  }

}

.aeps-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00a8b5, #2f80ed);
  border-radius: 50%;
  opacity: 0.1;
  transform: translateY(-50%);
}






/* ================= SECTION BACKGROUND ================= */
.aeps-services {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  /* Gradient base */
  background: linear-gradient(135deg, #e8f6fb, #d9eef6);
}

/* ===== DOT PATTERN ===== */
.aeps-services::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(0,168,181,0.15) 1px, transparent 1px);
  background-size: 22px 22px;

  animation: moveDots 25s linear infinite;
  z-index: 0;
}

/* ===== FLOATING BLOB ===== */
.aeps-services::after {
  content: "";
  position: absolute;

  width: 350px;
  height: 350px;

  background: radial-gradient(circle, rgba(0,168,181,0.25), transparent);

  top: 20%;
  right: 10%;

  filter: blur(60px);
  animation: floatBlob 8s ease-in-out infinite alternate;

  z-index: 0;
}

/* ANIMATIONS */
@keyframes moveDots {
  from { background-position: 0 0; }
  to { background-position: 200px 200px; }
}

@keyframes floatBlob {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* CONTENT ABOVE BACKGROUND */
.aeps-services .container {
  position: relative;
  z-index: 2;
}

/* ================= CARDS ================= */
.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  text-align: center;

  border: 1px solid #e6eef2;
  transition: all 0.4s ease;

  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

/* LIGHT GLOW ON HOVER */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(0,168,181,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ACTIVE CARD */
.service-card.active {
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0,168,181,0.4);
}

/* ICON */
.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00a8b5;
}

.service-card.active .icon {
  color: #fff;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card.active p {
  color: #eaf9fc;
}

/* ================= ENTRY ANIMATION ================= */
.service-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* SECTION */
.aeps-info {
  padding: 100px 0;
  background: #f8fbfd;
}

/* TEXT */
.aeps-text h2 {
  font-size: 36px;
  font-weight: 700;
}

.aeps-text p {
  margin: 15px 0;
  color: #6b7a8c;
  line-height: 1.7;
}

/* RIGHT VISUAL */
.aeps-visual {
  position: relative;
  text-align: center;
}

/* IMAGE */
.main-img {
  width: 80%;
  /* max-width: 420px; */
  animation: floatImg 4s ease-in-out infinite;
}





/* ANIMATIONS */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aeps-info::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,168,181,0.2), transparent);
  transform: translateY(-50%);
}






.how-works {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f6fbff);
}

/* IMAGE */
.how-img {
  width: 100%;
  /* max-width: 380px;  */
  animation: floatImg 4s ease-in-out infinite;
}

/* CONTENT */
.how-content h2 {
  font-size: 36px;
  font-weight: 700;
}

.subtitle {
  margin: 15px 0 25px;
  color: #6b7a8c;
}

/* STEPS */
/* ================= STEPS TIMELINE ================= */
.steps {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 10px;
}

/* LEFT LINE */
.steps::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d9e9ef;
}

/* EACH ITEM */
.steps li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #444;

  animation: fadeUp 0.6s ease forwards;
}

/* ICON */
.steps .icon {
  position: absolute;
  left: 0;
  top: 2px;

  width: 26px;
  height: 26px;

  background: #00a8b5;
  color: #fff;

  border-radius: 50%;
  font-size: 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 12px rgba(0,168,181,0.3);
}

/* HOVER EFFECT */
.steps li:hover .icon {
  transform: scale(1.1);
  background: #2f80ed;
}

@media (max-width: 991px) {

  .steps {
    margin-left: 0;
  }

  .steps::before {
    left: 10px;
  }

  .steps li {
    padding-left: 40px;
  }

}

/* ANIMATION */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* TABLET */
@media (max-width: 991px) {

  .how-content {
    text-align: center;
    margin-top: 40px;
  }

  .steps li {
    justify-content: center;
    text-align: left;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .how-works {
    padding: 60px 0;
  }

  .how-content h2 {
    font-size: 24px;
  }

  .how-img {
    max-width: 260px;
  }

}







.dmt-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f7fbfd, #eef5f9);
}

/* TITLE */
.dmt-title {
  font-size: 36px;
  font-weight: 700;
}

.dmt-subtitle {
  max-width: 750px;
  margin: 10px auto;
  color: #6b7a8c;
}

/* CARD */
.dmt-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  background: #fff;
  padding: 25px;
  border-radius: 12px;

  border: 1px solid #e6eef2;
  margin-bottom: 25px;

  transition: 0.3s;
}

/* ICON */
.dmt-card .icon {
  width: 55px;
  height: 55px;

  background: #dff3f6;
  color: #00a8b5;

  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

/* TEXT */
.dmt-card h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.dmt-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.dmt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dmt-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.dmt-card:nth-child(2) { animation-delay: 0.2s; }
.dmt-card:nth-child(3) { animation-delay: 0.3s; }
.dmt-card:nth-child(4) { animation-delay: 0.4s; }
.dmt-card:nth-child(5) { animation-delay: 0.5s; }
.dmt-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.benefits-section {
  padding: 100px 0;
  background: #eef6f8;
}

/* IMAGE */
.benefits-img {
  width: 100%;
  max-width: 450px;
  animation: floatImg 4s ease-in-out infinite;
}

/* CONTENT */
.benefits-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
}

/* HIGHLIGHT TEXT */
.benefits-content h2 span {
  color: #00a8b5;
}

/* SUBTITLE */
.subtitle {
  margin: 15px 0 25px;
  color: #6b7a8c;
}

/* LIST */
.benefits-list {
  list-style: none;
  padding: 0;
}

/* LIST ITEM */
.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;

  animation: fadeUp 0.6s ease forwards;
}

/* ICON */
.benefits-list .icon {
  min-width: 28px;
  height: 28px;

  background: #dff3f6;
  color: #00a8b5;

  border-radius: 50%;
  margin-right: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
}

/* ANIMATION */
@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.dmt-benefits-section {
  padding: 100px 0;
  background: #eef6f8;
}

/* IMAGE */
.dmt-benefits-img {
  width: 100%;
  max-width: 450px;
  animation: dmtFloat 4s ease-in-out infinite;
}

/* CONTENT */
.dmt-benefits-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.4;
}

/* HIGHLIGHT */
.dmt-benefits-content h2 span {
  color: #00a8b5;
}

/* SUBTITLE */
.dmt-benefits-subtitle {
  margin: 15px 0 25px;
  color: #6b7a8c;
}

/* LIST */
.dmt-benefits-list {
  list-style: none;
  padding: 0;
}

/* ITEM */
.dmt-benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;

  animation: dmtFadeUp 0.6s ease forwards;
}

/* ICON */
.dmt-benefits-icon {
  min-width: 28px;
  height: 28px;

  background: #dff3f6;
  color: #00a8b5;

  border-radius: 50%;
  margin-right: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
}

/* ANIMATION */
@keyframes dmtFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dmtFadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 991px) {

  .dmt-benefits-content {
    text-align: center;
    margin-top: 40px;
  }

  .dmt-benefits-content h2 {
    font-size: 26px;
  }

  .dmt-benefits-list li {
    justify-content: center;
    text-align: left;
  }

}

@media (max-width: 576px) {

  .dmt-benefits-section {
    padding: 60px 0;
  }

  .dmt-benefits-img {
    max-width: 280px;
  }

} 

/* about start  */

.about-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #cfe9ee, #a7c8d1);
  overflow: hidden;
}

/* TITLE */
.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #0b1b2b;
  position: relative;
  z-index: 2;
}

/* FLOATING DOTS */
.dot {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(0, 168, 181, 0.4);
  border-radius: 50%;
  filter: blur(50px);
  animation: floatDot 6s infinite ease-in-out;
}

/* POSITIONS */
.dot1 {
  top: 20%;
  left: 10%;
}

.dot2 {
  bottom: 10%;
  left: 40%;
  animation-delay: 2s;
}

.dot3 {
  top: 30%;
  right: 10%;
  animation-delay: 4s;
}

/* ANIMATION */
@keyframes floatDot {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.rain {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    rgba(255,255,255,0.3) 1px,
    transparent 1px
  );
  background-size: 2px 20px;
  animation: rainMove 0.5s linear infinite;
  opacity: 0.2;
}

@keyframes rainMove {
  from { background-position: 0 0; }
  to { background-position: 0 20px; }
}

/* TABLET */
@media (max-width: 991px) {
  .about-title {
    font-size: 36px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .about-hero {
    padding: 80px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .dot {
    width: 80px;
    height: 80px;
  }
}







.about-insurance-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f7fbfd, #eef5f9);
}

/* HEADING */
.about-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TEXT */
.about-text {
  color: #5f6f82;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* IMAGE LAYOUT */
.about-images {
  position: relative;
  height: 500px;
}

/* COMMON */
.img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CREATIVE POSITIONING */
.img1 {
  width: 60%;
  height: 200px;
  top: 0;
  left: 0;
}

.img2 {
  width: 60%;
  height: 200px;
  top: 0;
  right: 0;
}

.img3 {
  width: 60%;
  height: 200px;
  bottom: 0;
  left: 0;
}

.img4 {
  width: 60%;
  height: 200px;
  bottom: 0;
  right: 0;
}

/* HOVER */
.img-box:hover {
  transform: scale(1.05);
}


/* TABLET */
@media (max-width: 991px) {

  .about-images {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
  }

  .img-box {
    position: relative;
    width: 100%;
    height: 180px;
  }

  .about-heading {
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .about-insurance-section {
    padding: 60px 0;
  }

  .about-heading {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

}





/* ================= SECTION ================= */
.about-mission-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fbfd, #eef5f9);
}

/* ================= IMAGE ================= */
.mission-img {
  width: 100%;
  max-width: 450px;
  animation: floatMission 4s ease-in-out infinite;
}

/* ================= CONTENT ================= */
.mission-content {
  padding-left: 30px;
}

/* ITEM */
.mission-item {
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}

/* DOT */
.mission-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;

  width: 10px;
  height: 10px;
  background: #00a8b5;
  border-radius: 50%;
}

/* LINE */
.mission-item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;

  width: 2px;
  height: calc(100% - 10px);
  background: #d9e5ec;
}

/* REMOVE LAST LINE */
.mission-item:last-child::after {
  display: none;
}

/* TEXT */
.mission-item h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.mission-item p {
  color: #6b7a8c;
  font-size: 15px;
  line-height: 1.7;
}

/* FLOAT ANIMATION */
@keyframes floatMission {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .about-mission-section {
    padding: 70px 0;
  }

  .mission-content {
    padding-left: 0;
    text-align: center;
    margin-top: 40px;
  }

  .mission-item {
    padding-left: 0;
  }

  .mission-item::before,
  .mission-item::after {
    display: none;
  }

}

@media (max-width: 576px) {

  .about-mission-section {
    padding: 60px 0;
  }

  .mission-img {
    max-width: 280px;
  }

  .mission-item h4 {
    font-size: 18px;
  }

  .mission-item p {
    font-size: 14px;
  }

}

.product-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.img-wrapper {
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* PRICE BADGE */
.price {
  position: absolute;
  top: 15px;
  right: 15px;

  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;

  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CONTENT */
.product-content {
  padding: 20px;
}

.product-content h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* BUTTON */
.enquiry-btn {
  background: #ffc107;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;

  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: #e0a800;
  transform: scale(1.05);
}












/* ================= SECTION ================= */
.contact-section-contact {
  padding: 80px 0;
  background: #f5f7fb;
}

/* ================= CARD ================= */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* ================= FORM ================= */
.form-control {
  border-radius: 8px;
  height: 45px;
}

textarea.form-control {
  height: auto;
}

/* ================= BUTTON ================= */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* ================= RIGHT SIDE ================= */
.contact-info {
  padding-left: 40px;
  text-align: left;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info p {
  color: #6c7a89;
  margin-bottom: 25px;
}

/* ================= INFO BOX ================= */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

/* UNIQUE ICON CLASS */
.contact-icon {
  width: 45px;
  height: 45px;
  background: #eaf7f9;
  color: #00a8b5;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  flex-shrink: 0;

  transition: 0.3s;
}

/* HOVER EFFECT */
.info-box:hover .contact-icon {
  background: #00a8b5;
  color: #fff;
  transform: scale(1.1);
}

/* TEXT */
.info-box h6 {
  margin: 0;
  font-weight: 600;
}

.info-box span {
  color: #00a8b5;
}

.info-box a {
  color: #00a8b5;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {

  .contact-info {
    padding-left: 0;
    margin-top: 40px;
    text-align: left;
  }

  .info-box {
    justify-content: flex-start;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .contact-section {
    padding: 60px 0;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group.col-md-6 {
    width: 100%;
  }

}




/* ================= SECTION ================= */
.office-section {
  background: #f8f9fb;
}

/* ================= LEFT SIDE ================= */
.office-content {
  padding: 60px 50px;
}

.content-wrapper {
  max-width: 500px;
}

/* HEADING */
.office-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.office-content h2 span {
  color: #00a8b5;
}

/* TEXT */
.office-content p {
  color: #6c7a89;
  margin-bottom: 30px;
}

/* ================= INFO ================= */
.office-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

/* ICON */
.office-icon {
  width: 50px;
  height: 50px;
  background: #eaf7f9;
  color: #00a8b5;
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.office-info:hover .office-icon {
  background: #00a8b5;
  color: #fff;
  transform: scale(1.1);
}

/* TEXT */
.office-info h6 {
  margin: 0;
  font-weight: 600;
}

.office-info span {
  color: #00a8b5;
}

.office-info a {
  color: #00a8b5;
  text-decoration: none;
}

.office-info a:hover {
  text-decoration: underline;
}

/* ================= MAP ================= */
.office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 991px) {

  .office-content {
    padding: 40px 25px;
    text-align: left;
  }

  .office-map iframe {
    height: 400px;
  }

}

/* MOBILE */
@media (max-width: 576px) {

  .office-content {
    padding: 30px 20px;
  }

  .office-content h2 {
    font-size: 22px;
  }

  .office-map iframe {
    height: 300px;
  }

}













/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* COMMON STYLE */
.floating-buttons a,
.floating-buttons button {
  width: 50px;
  height: 50px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  border: none;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* HOVER */
.floating-buttons a:hover,
.floating-buttons button:hover {
  transform: translateY(-5px) scale(1.05);
}

/* SCROLL TOP */
#scrollTopBtn {
  background: linear-gradient(135deg, #00a8b5, #4fc3dc);
  display: none;
}

/* CALL */
.call-btn {
  background: #007bff;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #25d366;
}

/* ANIMATION PULSE */
.whatsapp-btn {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* MOBILE SIZE */
@media (max-width: 576px) {
  .floating-buttons a,
  .floating-buttons button {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}




/* FORM INPUT */
form input,
form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    outline: none;
    transition: 0.3s;
}

/* FOCUS */
form input:focus,
form textarea:focus {
    border-color: #00a8b5;
    box-shadow: 0 0 10px rgba(0,168,181,0.1);
}

/* TEXTAREA */
form textarea {
    height: 120px;
    resize: none;
}

/* CHECKBOX */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 20px;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-wrapper label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* BUTTON */
form button {
    width: 100%;
    padding: 13px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(135deg, #00a8b5, #4fc3dc);
    color: #fff;

    font-size: 16px;
    font-weight: 600;

    transition: 0.3s;
}

/* DISABLED BUTTON */
form button:disabled {
    background: #bfcfd2;
    cursor: not-allowed;
}

/* ACTIVE HOVER */
form button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,168,181,0.2);
}

/* MOBILE */
@media (max-width: 576px) {

    .checkbox-wrapper {
        align-items: flex-start;
    }

    .checkbox-wrapper label {
        font-size: 13px;
    }

}