:root {
  --blue-dark: #023668;
  --blue: #248ade;
  --blue-light: #E8F2FB;
  --orange: #4db3de;
  --orange-dark: #D96C10;
  --grey: #5C6B73;
  --line: #E3E9EC;
  --white: #fff;
  --cream: #F5F8FA;
  --radius: 12px;
  --shadow: 0 18px 40px -18px rgba(2, 54, 104, .28);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--blue-dark);
  line-height: 1.6;
  max-width: 1400px;
  margin: auto !important;
}

body,
html {
  margin: 0;
  padding: 0;
}

/* Container ko relative position dena zaroori hai */
.thumb-box {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Main Product Image */
.thumb-box .product-img {
  width: 100%;
  height: auto;
  display: block;
}

.thumb-box .watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 50%;
  max-width: 150px;
  opacity: 0.50;
  pointer-events: none;
  user-select: none;
}

/* Background Video */
/* .bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
} */



.container {
  width: min(1200px, 90%);
  margin: auto;
  z-index: 10;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

section {
  position: relative;
}




/* ================= VIDEO HERO SECTION ================= */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}




.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Video Overlay - Gradient + Dark Layer */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Video Content - Text on Top */
.video-content {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 80px;
  max-width: 800px;
}

.video-content .eyebrow {
  color: #4db3de;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  background: rgb(66 171 217 / 21%);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgb(74 178 223);
  width: fit-content;
}

.video-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.video-content h1 span {
  color: #4db3de;
}

.video-content p {
  font-size: 1.1rem;
  color: #D7E4EC;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.video-content .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.video-content .btn.outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}

.video-content .btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Animation for text */
.video-content .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.video-content .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.video-content .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.video-content .reveal:nth-child(3) {
  transition-delay: 0.4s;
}

.video-content .reveal:nth-child(4) {
  transition-delay: 0.6s;
}



/* Responsive */
@media (max-width: 768px) {
  .video-content {
    padding: 120px 0 60px;
    text-align: center;
    align-items: center;
  }

  .video-content p {
    max-width: 100%;
  }

  .video-content .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .video-content .cta-row {
    justify-content: center;
  }
}

/* Loading animation for video */
.bg-video {
  animation: videoFadeIn 1s ease-in;
}

@keyframes videoFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/* ---- reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
  overflow: hidden;
  position: relative;
}



.about-img img:hover {
  transition: 0.5s;
  transform: scale(1.2);
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .3s var(--ease), background .3s, box-shadow .3s;
  box-shadow: 0 12px 26px -12px rgba(36, 138, 222, .55);
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

.btn.outline {
  background: transparent;
  border: 1.5px solid var(--white);
  box-shadow: none;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, .12);
}

.btn.blue {
  background: var(--blue);
}

.btn.blue:hover {
  background: var(--blue-dark);
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 18px rgba(2, 54, 104, .06);
  transition: padding .3s var(--ease), box-shadow .3s;
}

.static-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 154px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.static-logos .item img {
  max-width: 58px;
  height: auto;
  display: block;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue-dark);
}

.logo .dot {
  color: var(--orange);
}

nav.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav.main-nav>ul>li {
  position: relative;
}

nav.main-nav a {
  font-weight: 500;
  font-size: .92rem;
  color: var(--blue-dark);
  position: relative;
  padding: 6px 0;
}

nav.main-nav>ul>li>a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .3s var(--ease);
}

nav.main-nav>ul>li:hover>a::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  align-items: flex-start !important;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s var(--ease);
  z-index: 20;
  flex-direction: column;
  gap: 0 !important;
}

li:hover>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: .87rem;
  color: var(--grey);
}

.dropdown li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--blue);
  font-size: .92rem;
}

.header-phone .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
}

/* ================= HERO ================= */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  background:
    linear-gradient(120deg, rgba(2, 54, 104, .94), rgba(36, 138, 222, .85)),
    url('https://www.fitwellpipefitting.com/wp-content/uploads/2024/03/Pvc-and-rass-pipes.webp') center/cover;
  color: #fff;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.hero .tag {
  display: inline-block;
  background: rgba(245, 130, 32, .16);
  color: var(--orange);
  border: 1px solid rgba(245, 130, 32, .4);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: #D7E4EC;
  max-width: 520px;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.hero-stats .num {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
}

.hero-stats .num .suf {
  color: var(--orange);
}

.hero-stats .lbl {
  font-size: .82rem;
  color: #B9CCD6;
  margin-top: 4px;
}

.hero-float {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 26px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-card img {
  border-radius: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
  animation-delay: .4s;
}

.hero-badge .n {
  font-size: 1.4rem;
  display: block;
}

.hero-badge .l {
  font-size: .68rem;
  font-weight: 500;
  opacity: .9;
}

/* ================= APPLICATIONS ================= */
.apps {
  padding: 0px 0;
}

.sec-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--blue-dark);
  margin-bottom: 14px;
}

.sec-head p {
  color: var(--grey);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.app-card:hover .idx {
  rotate: 3deg;
  transition: 1s;
}

.app-card .idx {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--blue-light);
  -webkit-text-stroke: 1px var(--blue);
  color: transparent;
  margin-bottom: 14px;
}

.idx2 {
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.6rem;
  color: #248ade !important;
  -webkit-text-stroke: unset !important;
  color: transparent;
  margin-bottom: 14px;
}

.app-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.app-card p {
  font-size: .87rem;
  color: var(--grey);
}

/* ================= ABOUT ================= */
.about {
  padding: 100px 0;
}

.about .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.container.centre {
  display: block !important;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: 0.5s;
}

.about .eyebrow {
  color: var(--orange);
}

.about h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 18px;
  color: var(--blue-dark);
}

.about p {
  color: var(--grey);
  margin-bottom: 20px;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cert-row img {
  height: 52px;
  width: auto;
  filter: grayscale(.15);
  transition: transform .35s var(--ease);
}

.cert-row img:hover {
  transform: translateY(-5px) scale(1.06);
}



/* ================= PRODUCTS - PREMIUM DESIGN ================= */
.products {
  padding: 0px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.products::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(36, 138, 222, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.products::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.products .container {
  position: relative;
  z-index: 1;
}

/* Section Header Styling */
.products .sec-head {
  margin-bottom: 60px;
}

/* .products .sec-head .eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(36, 138, 222, 0.1), rgba(245, 130, 32, 0.1));
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
  border: 1px solid rgba(36, 138, 222, 0.1);
} */

.products .sec-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products .sec-head p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Product Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Responsive adjustment for mobile and tablets */
@media (max-width: 1024px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img.reveal.in {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card - Premium Design */
.prod-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 54, 104, 0.06);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  border: 1px solid rgba(36, 138, 222, 0.06);
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

@keyframes gradientMove {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 0%;
  }
}

.prod-card:hover::before {
  opacity: 1;
}

.prod-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(36, 138, 222, 0.12);
  border-color: rgba(36, 138, 222, 0.15);
}

/* Card Image Container */
.prod-card .thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8, #e8edf3);
}

.prod-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* padding: 20px; */
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-card:hover .thumb img {
  transform: scale(1.08) rotate(-2deg);
}

/* Image Overlay Badge */
.prod-card .thumb .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 15px rgba(36, 138, 222, 0.3);
}

.prod-card:hover .thumb .badge {
  opacity: 1;
  transform: translateY(0);
}

/* Card Info */
.prod-card .info {
  padding: 24px 26px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  position: relative;
}

.prod-card .info .text {
  flex: 1;
}

.prod-card .info .text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.prod-card:hover .info .text h4 {
  color: var(--blue);
}

.prod-card .info .text .tag {
  font-size: 0.75rem;
  color: var(--grey);
  opacity: 0.7;
  font-weight: 500;
}

/* Arrow Button */
.prod-card .arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.prod-card .arrow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.prod-card:hover .arrow {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(36, 138, 222, 0.3);
}

.prod-card:hover .arrow::after {
  border-color: rgba(36, 138, 222, 0.2);
}

/* Number badge on card */
.prod-card .number {
  position: absolute;
  bottom: 80px;
  left: -8px;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(36, 138, 222, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
}

.prod-card:hover .number {
  color: rgba(36, 138, 222, 0.08);
  transform: translateX(8px);
}



/* Responsive */
@media (max-width: 992px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .prod-grid .prod-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .prod-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prod-card .thumb img {
    padding: 12px;
  }

  .prod-card .info {
    padding: 18px 20px 20px;
  }

  .prod-card .info .text h4 {
    font-size: 0.95rem;
  }

  .prod-card .number {
    display: none;
  }
}



/* ================= QUOTE / CTA STRIP ================= */
.cta-strip {
  padding: 70px 0;
  background: linear-gradient(115deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 24px);
}

.cta-strip .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-strip p {
  color: #CFE0E8;
}

/* ================= SERVICES ================= */
.services {
  padding: 100px 0;
}

.serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.serv-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  transition: .4s var(--ease);
}

.serv-card:hover {
  background: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0px 0px 9px 2px #bee0ff;
}

.serv-card .ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: .4s var(--ease);
}

.serv-card:hover .ico {
  background: var(--blue);
  transform: rotate(-10deg) scale(1.08);
}

.serv-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.serv-card p {
  font-size: .85rem;
  color: var(--grey);
}

/* ================= CERT MARQUEE ================= */
.marquee-sec {
  padding: 50px 0;
  background: var(--blue-dark);
  overflow: hidden;
}

.marquee-sec .lbl {
  text-align: center;
  color: #B9CCD6;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scrollx 24s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  height: 64px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.marquee .item img {
  max-height: 44px;
  filter: grayscale(1) brightness(1.7);
  opacity: .85;
  transition: .3s;
}

#certMarquee {
  display: flex;
  width: max-content;
  animation: certScroll 25s linear infinite;
  will-change: transform;
}

#certMarquee .item {
  flex: 0 0 auto;
  width: 160px;
  margin-right: 30px;
}

#certMarquee .item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
}

@keyframes certScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee .item:hover img {
  filter: none;
  opacity: 1;
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

.serv-card {
  background: white;
}

.blog-card .body {
  background: white;
}

/* ================= TESTIMONIALS ================= */
.testi {
  padding: 100px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 8px 24px -14px rgba(2, 54, 104, .14);
  transition: .4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.testi-card .stars {
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card p {
  color: var(--grey);
  font-size: .92rem;
  margin-bottom: 20px;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-who img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-who .name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-dark);
}

.testi-who .role {
  font-size: .76rem;
  color: var(--grey);
}

/* ================= BLOG ================= */
.blog {
  padding: 0px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .4s var(--ease);
}

.faq-section {
  padding: 80px 0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.blog-card .cover {
  height: 170px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 2rem;
}

.blog-card .body {
  padding: 22px;
}

.blog-card .date {
  font-size: .75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.blog-card h4 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: .86rem;
  color: var(--grey);
  margin-bottom: 14px;
}

.blog-card .read {
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
}

/* ================= EXPERIENCE BAND ================= */
.exp-band {
  padding: 70px 0;
  text-align: center;
  background: var(--blue-light);
}

.exp-band img {
  height: 60px;
  margin: 0 auto 20px;
  opacity: .85;
}

.exp-band h3 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ================= FOOTER ================= */
footer {
  background: var(--blue-dark);
  color: #B9CCD6;
  padding-top: 80px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: .98rem;
}

footer .flogo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
  background: white;
  padding: 10px 10px;
  border-radius: 10px;
}

footer .flogo .dot {
  color: var(--orange);
}

footer p.desc {
  font-size: .86rem;
  max-width: 300px;
}

footer ul li {
  margin-bottom: 11px;
  font-size: .87rem;
}

footer ul li a:hover {
  color: var(--orange);
}

.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.foot-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================= FLOATING ================= */
.float-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.fbtn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  transition: .3s var(--ease);
}

.fbtn:hover {
  transform: translateY(-4px) scale(1.06);
}

.fbtn.wa {
  background: #25D366;
}

.fbtn.top {
  background: var(--blue-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.fbtn.top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width:1080px) {

  .apps-grid,
  .prod-grid,
  .serv-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container,
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-float {
    order: -1;
    max-width: 340px;
    margin: 0 auto 20px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:760px) {

  nav.main-nav,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .apps-grid,
  .prod-grid,
  .serv-grid,
  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .cta-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }
}







/* --------- LOADER ----------- */




/* Creates a full-screen overlay on top of your website */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* Keeps it on top of everything */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Hide class applied by JavaScript */
#loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.container2 {
  position: relative;
  display: block;
  width: 70vh;
  height: 70vh;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(45deg) rotateX(45deg);
}

.circle {
  position: absolute;
  background: transparent;
  border: 3px solid #023668;
  border-radius: 50%;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.circle:nth-child(1) {
  left: 2.1875vh;
  top: 2.1875vh;
  width: 65.625vh;
  height: 65.625vh;
  animation-duration: 12s;
}

.circle:nth-child(2) {
  left: 4.375vh;
  top: 4.375vh;
  width: 61.25vh;
  height: 61.25vh;
  animation-duration: 6s;
}

.circle:nth-child(3) {
  left: 6.5625vh;
  top: 6.5625vh;
  width: 56.875vh;
  height: 56.875vh;
  animation-duration: 4s;
}

.circle:nth-child(4) {
  left: 8.75vh;
  top: 8.75vh;
  width: 52.5vh;
  height: 52.5vh;
  animation-duration: 3s;
}

.circle:nth-child(5) {
  left: 10.9375vh;
  top: 10.9375vh;
  width: 48.125vh;
  height: 48.125vh;
  animation-duration: 2.4s;
}

.circle:nth-child(6) {
  left: 13.125vh;
  top: 13.125vh;
  width: 43.75vh;
  height: 43.75vh;
  animation-duration: 2s;
}

.circle:nth-child(7) {
  left: 15.3125vh;
  top: 15.3125vh;
  width: 39.375vh;
  height: 39.375vh;
  animation-duration: 1.714s;
}

.circle:nth-child(8) {
  left: 17.5vh;
  top: 17.5vh;
  width: 35vh;
  height: 35vh;
  animation-duration: 1.5s;
}

.circle:nth-child(9) {
  left: 19.6875vh;
  top: 19.6875vh;
  width: 30.625vh;
  height: 30.625vh;
  animation-duration: 1.333s;
}

.circle:nth-child(10) {
  left: 21.875vh;
  top: 21.875vh;
  width: 26.25vh;
  height: 26.25vh;
  animation-duration: 1.2s;
}

.circle:nth-child(11) {
  left: 24.0625vh;
  top: 24.0625vh;
  width: 21.875vh;
  height: 21.875vh;
  animation-duration: 1.09s;
}

.circle:nth-child(12) {
  left: 26.25vh;
  top: 26.25vh;
  width: 17.5vh;
  height: 17.5vh;
  animation-duration: 1s;
}

.circle:nth-child(13) {
  left: 28.4375vh;
  top: 28.4375vh;
  width: 13.125vh;
  height: 13.125vh;
  animation-duration: 0.923s;
}

.circle:nth-child(14) {
  left: 30.625vh;
  top: 30.625vh;
  width: 8.75vh;
  height: 8.75vh;
  animation-duration: 0.857s;
}

.circle:nth-child(15) {
  left: 32.8125vh;
  top: 32.8125vh;
  width: 4.375vh;
  height: 4.375vh;
  animation-duration: 0.8s;
}

.circle:nth-child(16) {
  left: 35vh;
  top: 35vh;
  width: 0vh;
  height: 0vh;
  animation-duration: 0.75s;
}

.circle:nth-child(2n) {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.circle:last-child {
  display: none;
}

@keyframes spin {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(360deg);
  }
}




/* =========================
   FAQ SECTION
========================= */


/* Heading */

.faq-heading {
  text-align: center;
  margin-bottom: 45px;
}

.faq-heading span {
  display: inline-block;
  color: #0877b9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.faq-heading h2 {
  margin: 0;
  color: #063d67;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.faq-heading h2 strong {
  color: #0877b9;
}

.faq-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #6d7f8d;
  font-size: 14px;
  line-height: 1.7;
}

/* FAQ */


.faq-item {
  background: #ffffff;
  border: 1px solid #e3edf3;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: .3s ease;
  box-shadow: 0 3px 15px rgba(4, 62, 103, 0.04);
}

.faq-item:hover {
  border-color: #b9dced;
  box-shadow: 0 6px 20px rgba(4, 62, 103, 0.08);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 21px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: #073f68;
  font-size: 15px;
  font-weight: 600;
}

.faq-icon {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eaf5fb;
  color: #0877b9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  transition: .3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: #71818c;
  font-size: 13px;
  line-height: 1.8;
}

/* Active */

.faq-item.active {
  border-color: #0877b9;
}

.faq-item.active .faq-icon {
  background: #0877b9;
  color: #fff;
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

/* CTA */

.faq-cta {
  margin-top: 65px;
  padding: 25px 30px;
  border-radius: 8px;
  background: linear-gradient(100deg, #063d67, #0877b9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: white;
}

.faq-cta h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.faq-cta p {
  margin: 0;
  font-size: 13px;
  color: #dceefa;
}

.faq-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #fff;
  color: #07527f;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: .3s ease;
}

.faq-btn:hover {
  background: #eaf6fc;
  transform: translateY(-2px);
}

/* Mobile */

@media (max-width: 650px) {

  .faq-section {
    padding: 60px 15px;
  }

  .faq-heading h2 {
    font-size: 27px;
  }

  .faq-question {
    padding: 18px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .faq-btn {
    width: 100%;
    text-align: center;
  }
}









/* --------- mouse crusor --------- */

:root {

  /* Brand color for the cursor */
  --cursor-color: #0284c7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Hides the default computer cursor */
  cursor: none;

  /* The animated background */

}

/* Shifts the gradient positions smoothly */
@keyframes ambientLight {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.content {
  pointer-events: none;
  /* Prevents text from interfering with the cursor */
}


.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--cursor-color);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-glow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(2, 132, 199, 0.5);
  background-color: rgba(2, 132, 199, 0.1);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
}




/* 
.dot-field-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -999;
  pointer-events: none;
}

.dot-field-container canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dot-field-container svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}





 */









/* Slider Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  margin-top: 88px;
  background-color: #2b3e1f;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dark translucent overlay for crisp text readability over background images */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 35, 15, 0.85) 30%, rgba(20, 35, 15, 0.4) 100%);
  z-index: 1;
}

.slide-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  color: #ffffff;
  padding: 0 4rem;
}

/* Brand Logo / Header inside slide */
.brand-logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
}

.brand-logo span {
  font-size: 0.75rem;
  color: #cbd5e1;
  font-weight: 400;
  display: block;
  letter-spacing: 0.5px;
}

.slide-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
}

.slide-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-weight: 400;
  max-width: 450px;
  line-height: 1.5;
}

/* Feature Callout Tags / Hotspots styled like reference image */
.feature-tags {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: right;
}

.feature-icon {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Slider Navigation Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}



.prev-btn {
  left: 25px;
}

.next-btn {
  right: 25px;
}

/* Slider Dots Pagination */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #ef4444;
  width: 30px;
  border-radius: 6px;
}



/* Responsive adjustments */
@keyframes dropAnimate {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }

  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}