html, body {
  overflow-x: hidden;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-display: swap;
}

/* ================= VARIABLES ================= */
:root {
  --bg: #f5f7fa;
  --white: #ffffff;
  --dark: #2f343a;
  --text: #1a1f24;
  --muted: #6b7c85;
  --accent: #1e88e5;
}

/* ================= BODY ================= */
body {
  background: var(--bg);
  color: var(--text);
}

/* ================= CONTAINER ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GLOBAL MOBILE FIX */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 18px !important; }

  section {
    padding: 70px 6% !important;
  }

  .section-head {
    text-align: center;
  }
}

/* ================= TOPBAR ================= */
.topbar {
  background: var(--dark);
  color: #cfd8dc;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-left span {
  margin-right: 20px;
}

/* topbar button */
.topbar-right a {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.topbar-right a:hover {
  background: var(--accent);
}

.social-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 14px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #f0c040; /* premium gold hover */
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .topbar-left span {
    display: block;
    margin: 2px 0;
  }

  .topbar-right {
    margin-top: 5px;
  }
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e0e6eb;
  z-index: 1000;
}

/* layout */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* logo */
.logo img {
  height: 42px;
}

/* nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* links */
.nav-links a,
.nav-item span {
  text-decoration: none;
  color: #1a1f24;
  font-weight: 500;
  cursor: pointer;
}

/* dropdown */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: none;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 15px;
}

.dropdown a:hover {
  background: #f5f7fa;
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 25px;
}

#captchaQuestion {
  font-weight: 600;
  font-size: 16px;
  min-width: 80px;
}

#captchaInput {
  flex: 1;
}

/* 🔥 Better refresh button */
#refreshCaptcha {
  background: #1e88e5;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#refreshCaptcha:hover {
  transform: rotate(180deg) scale(1.1);
  background: #1565c0;
}

/* WRAPPER */
.captcha-wrapper {
  margin-top: 10px;   /* reduced */
}

/* LABEL */
.captcha-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #475569;

  margin: 0 0 4px 1px;  /* 🔥 key fix (tight spacing) */
  line-height: 1.2;
}

/* CAPTCHA ROW */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 0; /* remove extra gap */
}

/* spacing from submit */
.submit-btn {
  margin-top: 10px;
}

/* toggle */
.menu-toggle {
  display: none;
  width: 25px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 10px;
    transition: 0.4s;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a,
  .nav-item span {
    width: 100%;
    padding: 14px;
    border-bottom: 1px solid #eee;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
  }

  .nav-item.active .dropdown {
    display: block;
  }

}

/* overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e0e6eb;
  z-index: 1100; /* ABOVE OVERLAY */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.logo img {
  height: 42px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LINKS */
.nav-links a,
.nav-item span {
  text-decoration: none;
  color: #1a1f24;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  cursor: pointer;
}

/* UNDERLINE EFFECT */
.nav-links a::after,
.nav-item span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #1e88e5;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-item span:hover::after {
  width: 100%;
}

.nav-links .active {
  color: #1e88e5;
}
.nav-links .active::after {
  width: 100%;
}

/* DROPDOWN */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: none;
  overflow: hidden;
  z-index: 1200;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.dropdown a:hover {
  background: #f5f7fa;
  color: #1e88e5;
}

/* BUTTON */
.enquire-btn {
  padding: 8px 18px;
  border-radius: 8px;
  background: #1e88e5;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* TOGGLE */
.menu-toggle {
  display: none;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 8px;
    transition: 0.4s ease;
    z-index: 1101;
     overflow-y: auto;   /* ✅ enables vertical scroll */
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a,
  .nav-item span {
    width: 100%;
    padding: 14px;
    border-bottom: 1px solid #eee;
  }
  
    /* 🔥 REMOVE BLUE UNDERLINE */
  .nav-links a::after,
  .nav-item span::after {
    display: none !important;
  }

  .nav-links .active::after {
    display: none !important;
  }

  /* OPTIONAL: remove divider line */
  .nav-links a,
  .nav-item span {
    border-bottom: none;
  }

  /* FIX: disable hover dropdown on mobile */
  .nav-item:hover .dropdown {
    display: none;
  }

  .dropdown {
    position: static;
    display: none !important;
    box-shadow: none;
  }

  .nav-item.active .dropdown {
    display: block !important;
  }

}

/* ================= OVERLAY ================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000; /* ABOVE NAV + OVERLAY */
}

.modal.show {
  display: flex;
}

.modal-content {
  width: 90%;
  max-width: 420px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
}

/* FORM */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.modal-content textarea {
  height: 90px;
  resize: none;
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.captcha-box input {
  flex: 1;
}

/* SUBMIT */
.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #1e88e5;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* SUCCESS POPUP */

.popup-success{
  position: fixed;
  top: 30px;
  right: 30px;

  background: #16a34a;
  color: #fff;

  padding: 16px 24px;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 500;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 99999;

  animation: slideIn 0.4s ease;
}

@keyframes slideIn{

  from{
    opacity:0;
    transform:translateX(40px);
  }

  to{
    opacity:1;
    transform:translateX(0);
  }

}


/* HERO */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

/* BACKGROUND SLIDES */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;   /* show full image */
  background-repeat: no-repeat;
  background-position: center right;
  opacity: 0;
  transform: scale(1.00);
  transition: opacity 1s ease, transform 2s ease;
}

/* ACTIVE SLIDE */
.bg-slide.active {
  opacity: 1;
  transform: scale(1.04);
}


/* CONTENT */
.hero-content {
  position: absolute;
  bottom: -200px;        /* distance from bottom */
  left: 8%;            /* align with page padding */
  z-index: 3;
}

/* TEXT */
.hero-content h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #1e88e5;
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  color: #6b7c85;
}

/* BUTTONS (slightly upgraded) */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
    font-weight: 500;
  font-size: 15px;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid #6b7c85;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1f24;
    font-weight: 500;
  font-size: 15px;
}

.btn-outline:hover {
  background: rgba(0,0,0,0.05);
}

.center-only {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

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

@media (max-width: 768px) {

  /* HERO RESET */
  .hero {
    padding: 0 !important;
    height: auto;
    min-height: auto;
  }

  /* 🔥 GIVE BANNER HEIGHT (IMPORTANT) */
  .hero-bg {
    position: relative;
    width: 100%;
    height: 180px;   /* ✅ THIS FIXES IMAGE DISAPPEAR */
    overflow: hidden;
  }

  /* IMAGE */
  .bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;

    background-size: contain;  /* no crop */
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
  }

  .bg-slide.active {
    opacity: 1;
  }

  /* CONTENT BELOW */
  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;

    padding: 15px 6% 25px;
    text-align: center;
  }

  /* REMOVE TEXT */
  .hero-content h1,
  .hero-content p {
    display: none;
  }

  /* BUTTONS */
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ABOUT SECTION */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 100px 8%;
  background: #ffffff;
}

/* LEFT SIDE */
.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-left p {
  color: #6b7c85;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* RIGHT SIDE GRID */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARDS */
.about-card {
  background: #f5f7fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e0e6eb;
  transition: 0.3s;
}

.about-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-card p {
  font-size: 14px;
  color: #6b7c85;
}

/* HOVER EFFECT */
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.products-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #f5f7fa, #eef2f5);
}

/* HEADER */
.section-head h2 {
  font-size: 34px;
}

.section-head p {
  color: #6b7c85;
  margin-top: 10px;
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= HEADING ANIMATION ================= */
.about-left h2 {
  font-size: 38px;
  font-weight: 700;
  position: relative;
}

.about-left h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #1e88e5;
  position: absolute;
  bottom: -10px;
  left: 0;
  transition: 0.4s;
}

.about-left:hover h2::after {
  width: 100px;
}

/* ================= CARD PREMIUM HOVER ================= */
.about-card {
  background: #f5f7fa;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e0e6eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* shine sweep */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: 0.6s;
}

.about-card:hover::before {
  left: 120%;
}

/* glow border */
.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #1e88e5;
}

/* ================= BUTTON UPGRADE ================= */
.about-left .btn-primary {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.about-left .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: 0.4s;
}

.about-left .btn-primary:hover::after {
  opacity: 1;
}

/* ================= STATS ================= */
.stats {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px); /* auto responsive spacing */
  margin-top: 60px;
}

.stats div {
  text-align: center;
}

.stats h3 {
   font-size: 36px;
  font-weight: 700;
  color: #1e88e5;
}

.stats p {
  color: #6b7c85;
  font-size: 14px;
  margin-top: 5px;

}

@media (max-width: 768px) {

  /* MAIN LAYOUT */
  .about {
    grid-template-columns: 1fr; /* 🔥 stack */
    gap: 40px;
    padding: 70px 6%;
  }

  /* LEFT SIDE */
  .about-left {
    text-align: center;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .about-left h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-left p {
    font-size: 14px;
  }

  /* BUTTON CENTER */
  .about-left .btn-primary {
    display: inline-block;
  }

  /* RIGHT SIDE CARDS */
  .about-right {
    grid-template-columns: 1fr; /* 🔥 no 2 column squeeze */
    gap: 15px;
  }

  .about-card {
    padding: 20px;
    text-align: center;
  }

  .about-card h3 {
    font-size: 16px;
  }

  .about-card p {
    font-size: 13px;
  }

  /* STATS FIX */
  .stats {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .stats h3 {
    font-size: 24px;
  }

}


/* ================= GRID ================= */
.products-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e6eb;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  opacity: 0;
}

/* ================= IMAGE (FIXED NO CROP) ================= */
.card-image {
  width: 100%;
  background: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.card-image img {
  width: 100%;
  height: auto;           /* 🔥 keeps full image */
  object-fit: contain;    /* 🔥 NO CROP */
  max-height: 220px;      /* keeps layout balanced */
  transition: 0.5s;
}

/* ================= CONTENT ================= */
.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 20px;
}

.card-content p {
  color: #6b7c85;
  margin-top: 8px;
}

/* ================= DESKTOP HOVER ================= */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* ================= LIGHT SWEEP ================= */
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.6s;
}

.product-card:hover::before {
  left: 120%;
}

/* ================= SCROLL ANIMATION ================= */
.product-card.left {
  transform: translateX(-80px);
}
.product-card.right {
  transform: translateX(80px);
}
.product-card.center {
  transform: translateY(60px);
}

.product-card.show {
  opacity: 1;
  transform: translate(0,0);
  transition: 0.7s ease;
}

/* ================= MOBILE UPGRADE ================= */
@media (max-width: 900px) {

  /* GRID → SINGLE COLUMN */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARD */
  .product-card {
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* IMAGE */
  .card-image img {
    max-height: 180px;
  }

  /* CONTENT */
  .card-content {
    text-align: center;
  }

  /* TOUCH FEEL */
  .product-card:active {
    transform: scale(0.98);
  }

  /* REMOVE SIDE ANIMATION JERK */
  .product-card.left,
  .product-card.right,
  .product-card.center {
    transform: translateY(40px);
  }
}

.company-premium {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  overflow: hidden;
}

/* layout */
.company-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== LEFT IMAGE ===== */
.company-visual {
  position: relative;
}

.company-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transition: 0.5s;
}

.company-visual:hover img {
  transform: scale(1.03);
}

/* floating stats */
.floating-stats {
  position: absolute;
  bottom: -90px;         /* push below image */
  left: 50%;             /* center horizontally */
  transform: translateX(-50%);
  
  display: flex;
  gap: 20px;
}

.floating-stats div {
  min-width: 100px;
  padding: 14px 18px;
  text-align: center;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 12px;

  transition: 0.3s;
}
.floating-stats div:hover {
  transform: translateY(-5px);
}

.floating-stats h3 {
  font-size: 18px;
  color: #38bdf8;
}

@media (max-width: 768px) {

  .floating-stats {
    position: static;              /* ❗ remove absolute */
    transform: none;
    
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;               /* prevents cut */
    gap: 12px;
  }

  .company-visual {
    margin-bottom: 20px;           /* remove big gap */
  }

}

/* ===== RIGHT ===== */
.company-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.company-intro {
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* ===== CARDS ===== */
.card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* premium cards */
.premium-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 18px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* glow effect */
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* hover */
.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.premium-card:hover::before {
  opacity: 1;
}

/* highlight */
.premium-card.blue {
  background: linear-gradient(135deg, #1e88e5, #2563eb);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .company-wrap {
    grid-template-columns: 1fr;
  }

  .floating-stats {
    position: static;
    margin-top: 15px;
  }
}

/* ================= WHY SECTION PREMIUM ================= */
.why-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #f5f7fa, #eef3f8);
  text-align: center;
  position: relative;
}

.why-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,136,229,0.12), transparent);
  top: -150px;
  right: -150px;
  filter: blur(120px);
  animation: floatBg 10s infinite alternate ease-in-out;
}

@keyframes floatBg {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.why-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.why-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-header p {
  color: #6b7c85;
  line-height: 1.7;
  font-size: 16px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* ICON */
.why-card .icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
}

.why-card p {
  margin-top: 8px;
  color: #6b7c85;
  font-size: 14px;
}

/* 🔥 PREMIUM HOVER */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* gradient border glow */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, #1e88e5, transparent, #00c896);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

/* ICON GLOW */
.why-card .icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: inline-block;
  transition: 0.4s;
}

/* glow effect */
.why-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 12px rgba(30,136,229,0.6);
}

@media (max-width: 768px) {

  .why-section {
    padding: 80px 6%;
  }

  .why-header h2 {
    font-size: 26px;
  }

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

  /* horizontal swipe cards */
  .why-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .why-card {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

}

.testimonial-section {
  padding: 100px 8%;   /* 🔥 top-bottom + side spacing */
  background: #f8fafc; /* optional soft background */
}

.testimonial-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-header p {
  color: #6b7c85;
  font-size: 15px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
   padding: 10px 5px;
}

.testimonial-wrapper::before,
.testimonial-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.testimonial-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.testimonial-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

/* scrolling track */
.testimonial-track {
  display: flex;
  gap: 25px;
  animation: scrollLoop 18s linear infinite;
}

/* pause on hover */
.testimonial-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

/* CARD — CLEAN PROFESSIONAL */
.testimonial-card {
  min-width: 320px;
  background: #ffffff; /* solid clean */
  padding: 28px;
  border-radius: 16px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;

  opacity: 1;           /* removed fade */
  transform: none;      /* removed shrink */
}

/* HOVER — PREMIUM LIFT */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
}

/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-size: 14px;
  margin: 0;
}

.client span {
  font-size: 12px;
  color: #777;
}

/* AUTO SCROLL */
@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* CLIENT */
.client {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

/* AUTO SCROLL */
@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION */
.process-section {
  padding: 120px 8%;
  background: #ffffff;
}

.section-head.center {
  text-align: center;
}

.section-head.center h2 {
  font-size: 36px;
}

.section-head.center p {
  color: #6b7c85;
  margin-top: 10px;
}

/* FLOW WRAPPER */
.process-flow {
  position: relative;
  margin-top: 80px;
}

/* CENTER LINE */
.process-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(30,136,229,0.4),
    #1e88e5,
    rgba(30,136,229,0.4),
    transparent
  );

  box-shadow: 0 0 10px rgba(30,136,229,0.2);
}


/* CARD */
.process-card {
  width: 45%;
  background: #f5f7fa;
  padding: 25px;
  border-radius: 14px;
  position: relative;
  margin-bottom: 60px;
  border: 1px solid #e0e6eb;
  transition: 0.4s ease;

  opacity: 0;
}

/* LEFT / RIGHT */
.process-card.left {
  margin-right: auto;
  transform: translateX(-80px);
}

.process-card.right {
  margin-left: auto;
  transform: translateX(80px);
}

/* SHOW */
.process-card.show {
  opacity: 1;
  transform: translateX(0);
}

/* STEP BADGE */
.step {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #1e88e5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* TEXT */
.process-card h3 {
  margin-top: 10px;
}

.process-card p {
  margin-top: 8px;
  color: #6b7c85;
  font-size: 14px;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: #1e88e5;
}

/* CONNECTOR BASE */
.connector {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px dashed #1e88e5;
  border-left: none;
  border-bottom: none;
  opacity: 0.4;
}

/* LEFT CARDS → curve to right */
.process-card.left .connector {
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* RIGHT CARDS → curve to left */
.process-card.right .connector {
  left: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.connector::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1e88e5;
  border-radius: 50%;
  bottom: -5px;
  right: -5px;
  box-shadow: 0 0 0 6px rgba(30,136,229,0.15);
}

/* SECTION */
.cta-section {
  padding: 100px 8%;
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: white;
  position: relative;
  overflow: hidden;
}

/* subtle pattern overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%);
  pointer-events: none;
}

/* CONTENT */
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */
.cta-text h2 {
  font-size: 36px;
}

.cta-text p {
  margin-top: 12px;
  opacity: 0.9;
}

/* BUTTON */
.cta-main-btn {
  background: white;
  color: #1e88e5;
  padding: 16px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-main-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}
@media (max-width: 900px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #1f252b;
  color: #cfd8dc;
  padding-top: 80px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 8% 60px;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-logo span {
  color: #1e88e5;
}

/* TEXT */
.footer-col img{
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 18px;
}

.footer-col p {
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
}

/* hover */
.footer-col ul li a:hover {
  color: #1e88e5;
  padding-left: 5px;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom {
  position: relative;
  padding: 20px 8%;
  text-align: center;
  background: #1f252b;
}

/* 🔥 PREMIUM LINE */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);

  background: linear-gradient(
    to right,
    transparent,
    #1e88e5,
    transparent
  );

  box-shadow: 0 0 12px rgba(30,136,229,0.5);
}

/* CONTENT */
.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 14px;
}

/* 🔘 DEV BUTTON */
.dev-btn {
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;

  background: #1e88e5;   /* ✅ permanent blue */
  color: #ffffff;        /* ✅ readable text */
  border: 1px solid #1e88e5;

  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.dev-btn:hover {
  background: #1565c0; /* 🔥 slightly darker blue for effect */
  box-shadow: 0 0 15px rgba(30,136,229,0.6);
}

/* ✨ SHINE EFFECT */
.dev-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transition: 0.6s;
}

.dev-btn:hover::after {
  left: 100%;
}

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

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

/* ===== HERO ===== */
.product-hero {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= PRODUCT IMAGE FIX ================= */

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* wrapper */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 420px; /* fixed premium height */
  border-radius: 24px;
  overflow: hidden;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition: 0.45s ease;
}

/* image */
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 👈 FULL IMAGE visible */
  display: block;

  transition: transform 0.6s ease;
}

/* hover zoom */
.image-wrapper:hover img {
  transform: scale(1.04);
}

/* glow hover */
.image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    0 0 40px rgba(56,189,248,0.18);
}


/* FLOATING INFO */
.hero-floating {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-floating span {
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

/* RIGHT */
.hero-tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: #38bdf8;
}

.hero-right h1 {
  font-size: 42px;
  margin: 15px 0;
}

.hero-desc {
  color: #cbd5e1;
  margin-bottom: 25px;
}

/* highlights */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 14px;
}

/* buttons */
.hero-actions {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1e88e5;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

/* hover */
.btn-primary:hover {
  background: #1565c0;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

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

  .hero-right h1 {
    font-size: 28px;
  }
}

/* ================= TRUST BAR ================= */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #1e88e5, #00c896);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-weight: 500;
}

/* ================= SPEC TABLE (NEW) ================= */
.product-specs {
  padding: 100px 8%;
  background: #f8fafc;
}

/* HEADER */
.specs-header {
  text-align: center;
  margin-bottom: 60px;
}

.specs-header h2 {
  font-size: 36px;
}

.specs-header p {
  color: #6b7c85;
}

/* LAYOUT */
.specs-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

/* LEFT CARDS */
.spec-cards {
  display: grid;
  gap: 20px;
}

.spec-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.spec-card:hover {
  transform: translateY(-6px);
}

.spec-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.spec-card p {
  color: #5f6b75;
}

/* highlight card */
.spec-card.highlight {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: #fff;
}

/* RIGHT TABLE */
.spec-table-modern {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* rows */
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span {
  color: #6b7c85;
}

.spec-row strong {
  color: #111;
}

/* description */
.spec-description {
  margin-top: 40px;
  text-align: center;
  color: #555;
  max-width: 700px;
  margin-inline: auto;
}

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

/* ================= MORE PRODUCTS ================= */
.more-products {
  padding: 100px 8%;
  background: #0f172a;
  color: #fff;
}

/* HEADER */
.more-header {
  text-align: center;
  margin-bottom: 60px;
}

.more-header h2 {
  font-size: 36px;
}

.more-header p {
  color: #94a3b8;
}

/* GRID */
.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* CARD */
.more-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
    display: block;
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s;
}

.card-overlay h4 {
  margin-bottom: 10px;
}

/* BUTTON */
.view-btn {
  color: #38bdf8;
  font-size: 14px;
  text-decoration: none;
}

/* HOVER EFFECT */
.more-card:hover img {
  transform: scale(1.1);
}

.more-card:hover .card-overlay {
  opacity: 1;
}

/* LIFT EFFECT */
.more-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* ================= CTA SECTION ================= */
.product-cta {
  padding: 100px 8%;
  background: #f8fafc; /* same as specs */
  color: #111;
  border-top: 1px solid #e5e7eb;
}

/* layout */
.cta-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT ================= */
.cta-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #111;
}

.cta-left span {
  color: #1e88e5;
}

.cta-left p {
  color: #5f6b75;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* trust points */
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.cta-points div {
  font-size: 14px;
  color: #333;
}

/* CTA button */
.cta-main-btn {
  display: inline-block;
  background: #1e88e5;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-main-btn:hover {
  background: #1565c0;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30,136,229,0.3);
}

/* ================= RIGHT FORM ================= */
.cta-form-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
}

.cta-form-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.cta-form-box h3 {
  margin-bottom: 15px;
  color: #111;
}

/* inputs */
.cta-form-box input,
.cta-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  outline: none;
  font-size: 14px;
  background: #f9fafb;
  color: #111;
  transition: 0.3s;
}

/* input focus */
.cta-form-box input:focus,
.cta-form-box textarea:focus {
  border-color: #1e88e5;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(30,136,229,0.1);
}

/* submit button */
.cta-form-box button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #1e88e5;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.cta-form-box button:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

.phone-row,
.qty-row {
  display: flex;
  gap: 10px;
}

.phone-row select,
.qty-row select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9fafb;
}

.purpose-row {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 14px;
}

/* overlay */
.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;
}

/* show state */
.success-popup.show {
  opacity: 1;
  pointer-events: all;
}

/* box */
.success-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  transform: scale(0.8);
  transition: 0.3s;
}

.success-popup.show .success-box {
  transform: scale(1);
}

/* text */
.success-box h3 {
  margin-bottom: 10px;
  color: #1e88e5;
}

.success-box p {
  color: #555;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-left h2 {
    font-size: 26px;
  }

  .cta-left {
    text-align: center;
  }

  .cta-points {
    align-items: center;
  }
}

/* ================= PREMIUM HERO ================= */
.service-hero-premium {
  position: relative;
  padding: 150px 8% 120px; /* 👈 more bottom space */
  background: radial-gradient(circle at 80% 20%, #1e3a5f, #0f172a 60%);
  color: #fff;
  overflow: visible; /* 👈 IMPORTANT: stop cropping */
}

/* glow */
.hero-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 70%);
  top: -150px;
  right: -150px;
  filter: blur(120px);
}

/* layout */
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1400px; /* 👈 control width */
  margin: 0 auto;
  position: relative;
}

/* LEFT */
.service-hero-content {
  max-width: 600px;
}

.hero-tag {
  font-size: 12px;
  color: #38bdf8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-hero-content h1 {
  font-size: 42px;
  line-height: 1.25;
  margin: 14px 0;
  font-weight: 600;
}

.service-hero-content p {
  color: #cbd5e1;
  margin-bottom: 22px;
  max-width: 520px;
  font-size: 15px;
}

/* highlights */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 28px;
}

.hero-highlights span {
  font-size: 14px;
  color: #e2e8f0;
  opacity: 0.9;
}

/* buttons */
.hero-actions {
  display: flex;
  gap: 14px;
}

.service-hero-premium .btn-primary  {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
  box-shadow: 0 8px 25px rgba(30,136,229,0.35);
}

.service-hero-premium .btn-primary :hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30,136,229,0.5);
}

.service-hero-premium .btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 22px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
}

.service-hero-premium .btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* RIGHT IMAGE */
.hero-image-box {
  padding: 12px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

/* 🔥 FIXED SIZE IMAGE */
.hero-image-box img {
  width: 100%;
  max-width: 520px;

  height: 420px;
  object-fit: contain;

  background: transparent;   /* ❌ remove white */
  padding: 0;                /* ❌ remove spacing */

  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);

  transform: translateX(60px);
}

/* MOBILE */
@media (max-width: 900px) {

  .service-hero-premium {
    padding: 100px 6% 70px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-image-box {
    justify-content: flex-start;
  }

  .hero-image-box img {
    max-width: 100%;
    transform: none;
  }

  .hero-image-box::before {
    display: none;
  }
}

/* ================= FEATURES PREMIUM ================= */
.service-features-premium {
    margin-top: 40px;
  padding: 100px 8%;
  background: #f8fafc;
  text-align: center;
}

/* header */
.features-header {
  max-width: 600px;
  margin: 0 auto 60px;
}

.features-header h2 {
  font-size: 34px;
}

.features-header p {
  color: #6b7c85;
}

/* grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

/* card */
.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* glow border */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(120deg, #1e88e5, transparent, #00c896);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.feature-card:hover::before {
  opacity: 1;
}

/* icon */
.feature-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
  transition: 0.3s;
}

/* icon hover */
.feature-card:hover .icon {
  transform: scale(1.2) rotate(5deg);
  color: #1e88e5;
}

/* text */
.feature-card h4 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #6b7c85;
  font-size: 14px;
}

/* ================= CONTENT PREMIUM ================= */
.service-content-premium {
  padding: 100px 8%;
  background: #ffffff;
}

/* layout */
.content-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.content-image {
  position: relative;
}

.content-image img {
  width: 100%;
  max-width: 520px;        /* 👈 limit width */

  height: 420px;           /* 👈 FIX HEIGHT */
  object-fit: contain;     /* 👈 no crop */

  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  transition: 0.5s;
}

.content-image:hover img {
  transform: scale(1.05);
}

/* floating info */
.floating-info {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #1e88e5;
  padding: 10px 15px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  gap: 10px;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* TEXT */
.content-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.content-text p {
  color: #5f6b75;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* points */
.content-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.point {
  display: flex;
  align-items: center;
  gap: 10px;
}

.point span {
  color: #1e88e5;
  font-weight: bold;
}

/* button */
.content-text .btn-primary {
  display: inline-block;
  background: #1e88e5;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.content-text .btn-primary:hover {
  background: #1565c0;
}

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

  .content-text {
    text-align: center;
  }

  .content-points {
    align-items: center;
  }
}

/* ================= HORIZONTAL PROCESS ================= */
.service-process-horizontal {
  padding: 100px 8%;
  background: #f8fafc;
  text-align: center;
}

/* header */
.process-header {
  margin-bottom: 60px;
}

.process-header h2 {
  font-size: 34px;
}

.process-header p {
  color: #6b7c85;
}

/* wrapper */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* item */
.process-item {
  position: relative;
  min-width: 160px;
  text-align: center;
}

/* circle */
.circle {
  width: 60px;
  height: 60px;
  background: #1e88e5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

/* line */
.line {
  position: absolute;
  top: 30px;
  left: 100%;
  width: 60px;
  height: 3px;
  background: #1e88e5;
}

/* text */
.process-item h4 {
  margin-top: 12px;
  font-size: 14px;
}

/* hover */
.process-item:hover .circle {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(30,136,229,0.4);
}

/* MOBILE SCROLL */
@media (max-width: 900px) {
  .process-wrapper {
    justify-content: flex-start;
  }
}

/* ================= SERVICE LAYOUT PREMIUM ================= */
.service-layout-premium {
  padding: 100px 8%;
  background: #ffffff;
}

/* layout */
.layout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

/* HEADER */
.section-header {
  margin-bottom: 40px;
}

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

.section-header p {
  color: #6b7c85;
}

/* WHY GRID */
.why-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  transition: 0.4s;
  border: 1px solid #eef1f4;
  position: relative;
}

/* hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* icon */
.why-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
  color: #1e88e5;
}

/* text */
.why-card p {
  color: #6b7c85;
  font-size: 14px;
}

/* ================= SIDEBAR ================= */
.sidebar-premium {
  position: sticky;
  top: 100px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #eef1f4;
  height: fit-content;
}

/* links */
.service-links a {
  display: block;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
  border: 1px solid transparent;
}

/* hover */
.service-links a:hover {
  background: #f5f7fa;
}

/* active */
.service-links a.active {
  background: #1e88e5;
  color: #fff;
}

/* CONTACT Page   CARD */
.contact-card {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  border-radius: 14px;
  color: #fff;
  text-align: center;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* buttons */
.call-btn,
.enquire-btn {
  display: block;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
  color: #1e88e5;
  font-weight: 500;
}

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

  .why-grid-premium {
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT PAGE PREMIUM ================= */

.contact-page {
  position: relative;
  padding: 90px 8%;
  background: linear-gradient(180deg, #f8fafc, #eef2f6);
  overflow: hidden;
}

/* soft glow */
.contact-page::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(30,136,229,0.12), transparent);
  top: -120px;
  right: -120px;
  filter: blur(100px);
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 34px;
  font-weight: 600;
}

.contact-header p {
  color: #6b7c85;
  margin-top: 6px;
  font-size: 14px;
}

/* GRID */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

/* LEFT SIDE */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info h3 {
  margin-bottom: 10px;
}

/* INFO CARDS */
.info-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-card span {
  font-size: 20px;
}

.info-card strong {
  font-size: 13px;
}

.info-card p {
  font-size: 13px;
  color: #6b7c85;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: #1e88e5;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================================
   PREMIUM MAP STYLE
========================================= */

.premium-map {
  margin-top: 50px;

  background: #fff;

  padding: 16px;

  border-radius: 28px;

  border: 2px solid #1e88e5;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

  transition: 0.4s ease;

  overflow: hidden;

  width: 100%;
}

/* HOVER */

.premium-map:hover {
  transform: translateY(-6px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}

/* MAP */

.premium-map iframe {
  width: 100%;
  height: 420px;

  border: none;

  border-radius: 22px;

  display: block;
}

/* MOBILE */

@media (max-width: 768px) {

  .premium-map {
    padding: 12px;
    border-radius: 22px;
  }

  .premium-map iframe {
    height: 280px;
    border-radius: 16px;
  }
}

/* FORM CARD */
.contact-form {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.6);
  transition: 0.3s;
  height: fit-content;
}
/* REMOVE EXTRA EMPTY SPACE */

.contact-wrapper {
  align-items: start;
}

.contact-form:hover {
  transform: translateY(-4px);
}

/* FORM GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-group.full {
  grid-column: span 2;
}

/* INPUT */
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d0d7de;
  border-radius: 10px;
  font-size: 14px;
  background: #f9fbfd;
  transition: 0.25s;
}

/* LABEL */
.input-group label {
  position: absolute;
  left: 10px;
  top: 12px;
  font-size: 12px;
  color: #6b7c85;
  background: #fff;
  padding: 0 4px;
  transition: 0.25s;
}

/* FLOAT LABEL */
.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:valid + label,
.input-group textarea:valid + label {
  top: -7px;
  font-size: 10px;
  color: #1e88e5;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #1e88e5;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,136,229,0.1);
}

/* BUTTON */
.contact-btn {
  margin-top: 18px;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;

  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  color: #fff;
  border: none;

  box-shadow: 0 10px 25px rgba(30,136,229,0.3);
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(30,136,229,0.45);
}

.contact-btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Glass Effect */
/* BASE */
.whatsapp-float,
#scrollTopBtn {
  position: fixed;
  right: 20px;
  border-radius: 50%;
  padding: 14px;
  color: #fff;
  z-index: 999;
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.6);

  opacity: 1;
  transform: translateY(0);
}

/* STACKING */
.whatsapp-float {
  bottom: 90px;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

#scrollTopBtn {
  bottom: 20px;
}

/* SHOW/HIDE */
.show {
  opacity: 1;
  transform: translateY(0);
}

.hide {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* ICON SIZE */
.whatsapp-float i,
#scrollTopBtn i {
  font-size: 20px;
}

/* 🔥 GLOW HOVER */
.whatsapp-float:hover,
#scrollTopBtn:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 15px rgba(30,136,229,0.4);
}

/* WhatsApp glow */
.whatsapp-float:hover {
  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(37,211,102,0.7);
}

/* 🔥 PULSE RING */
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: ring 2s infinite;
}

@keyframes ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* RIPPLE CLICK */
.whatsapp-float::after,
#scrollTopBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  opacity: 0;
  transform: scale(0);
}

.whatsapp-float:active::after,
#scrollTopBtn:active::after {
  opacity: 1;
  transform: scale(1.6);
  transition: 0.4s;
}


/* FLOATING BUTTON */
.bh-float-btn {
  position: fixed;
  bottom: 150px; /* above whatsapp */
  right: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1e88e5, #38bdf8);
  color: white;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(30,136,229,0.4);
  z-index: 9999;
  transition: 0.3s;
}

/* hover */
.bh-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(30,136,229,0.6);
}

/* pulse animation */
.bh-float-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(30,136,229,0.3);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* 🔥 NAVBAR INQUIRY BUTTON FIX */
.navbar .enquire-btn {
  background: #1e88e5 !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

/* hover */
.navbar .enquire-btn:hover {
  background: #1565c0 !important;
  color: #fff !important;
}



/* MAIN */
.bh-about {
  padding: 100px 8%;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  position: relative;
  overflow: hidden;
}

/* HERO */
.bh-about__hero h1 {
  font-size: 46px;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(90deg, #0f172a, #1e88e5, #38bdf8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 4s linear infinite;
}

@keyframes textGlow {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

.bh-about__hero p {
  text-align: center;
  color: #64748b;
  margin-top: 10px;
}

/* CARDS */
.bh-about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px 0;
}

.bh-about__card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}

/* glow border */
.bh-about__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(45deg,#1e88e5,transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.bh-about__card:hover::after {
  opacity: 1;
}

.bh-about__card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 25px 50px rgba(30,136,229,0.25);
}

/* CONTENT */
.bh-about__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 100px;
}

/* highlight box */
.bh-about__highlight {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: 0.4s;
}

.bh-about__highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30,136,229,0.2);
}

/* animated list */
.bh-about__highlight li {
  margin: 12px 0;
  position: relative;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  transition: 0.35s ease;
  cursor: pointer;
}

/* icon */
.bh-about__highlight li::before {
  content: "✔";
  margin-right: 10px;
  color: #1e88e5;
  font-weight: bold;
}

/* hover */
.bh-about__highlight li:hover {
  transform: translateX(8px) scale(1.03);
  background: linear-gradient(135deg,#1e88e5,#38bdf8);
  color: #fff;
  box-shadow: 0 10px 25px rgba(30,136,229,0.3);
}

/* text */
.bh-about__highlight li span {
  transition: 0.3s;
}

.bh-about__highlight li:hover span {
  color: #fff;
}

/* 🔥 LIQUID EFFECT BOX */
.liquid-box {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* animated gradient blob */
.liquid-box::before {
  content: "";
  position: absolute;
  width: 250%;
  height: 250%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center, rgba(30,136,229,0.25), transparent 60%);
  opacity: 0;
  transition: 0.6s;
  z-index: 0;
}

/* glow on hover */
.liquid-box:hover::before {
  opacity: 1;
  animation: liquidMove 6s linear infinite;
}

/* animation */
@keyframes liquidMove {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* bring content above */
.liquid-box * {
  position: relative;
  z-index: 2;
}

/* =========================================
   ABOUT PAGE MOBILE FIX
========================================= */

@media (max-width: 992px) {

  /* INFO CARDS */

  .bh-about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .bh-about__card {
    padding: 22px 18px;
  }

  .bh-about__card h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .bh-about__card p {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
  }

  /* CONTENT SECTION */

  .bh-about__content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 70px;
  }

  .bh-about__text h2,
  .bh-about__highlight h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .bh-about__text p {
    font-size: 17px;
    line-height: 1.9;
  }

  /* HIGHLIGHT BOX */

  .bh-about__highlight {
    width: 100%;
    padding: 28px 22px;
  }

  .bh-about__highlight ul {
    padding: 0;
    margin: 0;
  }

  .bh-about__highlight li {
    display: flex;
    align-items: flex-start;

    font-size: 16px;
    line-height: 1.7;

    padding: 14px 16px;

    word-break: break-word;
  }

  .bh-about__highlight li::before {
    flex-shrink: 0;
    margin-top: 2px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

  /* SECTION PADDING */

  .bh-about {
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  /* CARDS */

  .bh-about__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
  }

  .bh-about__card {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .bh-about__card h3 {
    font-size: 28px;
  }

  .bh-about__card p {
    font-size: 17px;
  }

  /* WHO WE ARE */

  .bh-about__text h2,
  .bh-about__highlight h2 {
    font-size: 32px;
  }

  .bh-about__text p {
    font-size: 16px;
    line-height: 1.8;
  }

  /* WHY CHOOSE US */

  .bh-about__highlight {
    border-radius: 24px;
    padding: 24px 18px;
  }

  .bh-about__highlight li {
    padding: 15px;
    font-size: 15px;

    transform: none !important;
  }

  .bh-about__highlight li:hover {
    transform: none;
  }

  /* REMOVE OVERFLOW ISSUE */

  .liquid-box::before {
    width: 180%;
    height: 180%;
  }

}

/* =========================================
   JOURNEY IMAGE SECTION
========================================= */

.bh-journey-img-section {
  position: relative;
  padding: 110px 6%;
  background: linear-gradient(to bottom, #f8fbff, #eef5ff);
  overflow: hidden;
}

/* HEADING */

.bh-journey-heading {
  text-align: center;
  margin-bottom: 60px;
}

.bh-journey-heading span {
  display: inline-block;
  color: #1e88e5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.bh-journey-heading h2 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #071c3c;
}

/* IMAGE WRAPPER */

.bh-journey-image-wrapper {
  position: relative;
  max-width: 1600px;
  margin: auto;
}

/* MAIN IMAGE */

.bh-journey-image {
  width: 100%;
  display: block;
  border-radius: 30px;
  position: relative;
  z-index: 2;

  animation: floatTimeline 5s ease-in-out infinite;
}

/* GLOW EFFECT */

.bh-journey-glow {
  position: absolute;
  width: 55%;
  height: 180px;
  background: rgba(30,136,229,0.18);
  filter: blur(90px);

  left: 50%;
  bottom: 10%;

  transform: translateX(-50%);
  z-index: 1;
}

/* FLOAT ANIMATION */

@keyframes floatTimeline {

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

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

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

/* MOBILE */

@media (max-width: 992px) {

  .bh-journey-heading h2 {
    font-size: 34px;
  }

  .bh-journey-img-section {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {

  .bh-journey-heading h2 {
    font-size: 28px;
  }

  .bh-journey-image {
    border-radius: 20px;
  }
}


/* =========================================
   CORE STRENGTHS SECTION
========================================= */

.bh-strengths {
  padding: 110px 6%;
  position: relative;
  overflow: hidden;
}

.bh-strengths__heading {
  text-align: center;
  max-width: 850px;
  margin: auto auto 70px;
}

.bh-strengths__heading span {
  display: inline-block;
  color: #1e88e5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.bh-strengths__heading h2 {
  font-size: 52px;
  font-weight: 800;
  color: #071c3c;
  margin-bottom: 18px;
}

.bh-strengths__heading p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f6b7a;
}

/* GRID */

.bh-strengths__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

/* CARD */

.bh-strength-card {
  position: relative;
  padding: 45px 35px;
  border-radius: 28px;

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(30,136,229,0.08);

  transition: 0.45s ease;

  overflow: hidden;
}

/* HOVER */

.bh-strength-card:hover {
  transform: translateY(-14px);

  box-shadow:
    0 25px 60px rgba(30,136,229,0.14);
}

/* TOP LIGHT */

.bh-strength-card::before {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background: rgba(56,189,248,0.12);

  border-radius: 50%;

  top: -60px;
  right: -60px;

  transition: 0.5s;
}

.bh-strength-card:hover::before {
  transform: scale(1.4);
}

/* ICON */

.bh-strength-icon {
  width: 75px;
  height: 75px;

  border-radius: 22px;

  background: linear-gradient(135deg,#1e88e5,#38bdf8);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;

  box-shadow:
    0 15px 35px rgba(30,136,229,0.25);
}

.bh-strength-icon i {
  font-size: 30px;
  color: white;
}

/* TEXT */

.bh-strength-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #071c3c;
  margin-bottom: 14px;
}

.bh-strength-card p {
  color: #5f6b7a;
  line-height: 1.8;
  font-size: 16px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .bh-strengths__grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {

  .bh-strengths {
    padding: 80px 20px;
  }

  .bh-strengths__heading h2 {
    font-size: 34px;
  }

  .bh-strengths__grid {
    grid-template-columns: 1fr;
  }

  .bh-strength-card {
    padding: 35px 25px;
  }
}
