/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif !important;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #555;
}

h1, h2 {
  font-family: 'Poppins', sans-serif;
  color: #0a3d62;
}

section {
  margin: 0;
}


/* Optional logo fallback styling */
.site-logo img {
  width: 120px;
  height: auto;
}

.about-premium,
.section {
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
}

/* ===== COMMON SECTION HEADING (GLOBAL STYLE) ===== */

.section-header h2,
.about-synergy h2,
.what-we-do h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #0a3d62;
  line-height: 1.3;
  margin-bottom: 15px;
}


/* ===== FINAL LINK FIX ===== */
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
}

/* ===== BUTTON FIX ===== */
a.btn {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content;

  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  border: 2px solid transparent;

  position: relative;
  overflow: hidden;
  cursor: pointer;

  transition: all 0.4s ease;
}

/* BACKGROUND WIPE (GLOBAL EFFECT) */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;

  z-index: 0;
}

/* TEXT LAYER */
.btn span {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: inherit !important;
  transition: all 0.3s ease;
}

/* ARROW MOVE */
.btn:hover span {
  transform: translateX(5px);
}


.btn.primary {
  background: #2b6cb0;
  color: #fff !important;
  border-color: #2b6cb0;
}

.btn.primary::before {
  background: #fff;
}

.btn.primary:hover {
  background: transparent;
  color: #2b6cb0 !important;
}

.btn.primary:hover span {
  color: #2b6cb0 !important;
}





.nav-container {
  display: flex !important;
}

.navbar {
  background: #000;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.nav-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}

.navbar {
  background: rgba(0, 0, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid rgba(255,255,255,0.1);
}


section {
  margin-bottom: 0;
}

.process {
  margin-bottom: 0;
}

.about-premium {
  padding-top: 80px;
}


/* ===== LOGO RESPONSIVE ===== */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Subtle premium glow */
.logo img {
  filter: drop-shadow(0 0 10px rgba(0, 114, 255, 0.4));
}

/* Hover effect */
.logo img:hover {
  transform: scale(1.05);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}



/* =========================
   PREMIUM NAVBAR DESIGN
========================= */

/* DEFAULT NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 999;
  transition: all 0.3s ease;
  background: #0b1c2c; /* Dark Blue (premium) */
}

/* CONTAINER */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

/* LOGO */
.logo img {
  height: 55px;
  transition: 0.3s ease;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE HOVER EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00c6ff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-btn {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* CTA HOVER EFFECT */
.nav-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
}

/* =========================
   DROPDOWN (UPDATED FOR DARK)
========================= */

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  color: #333;
  padding: 14px 20px;
  display: block;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   STICKY SHRINK EFFECT
========================= */

.navbar.scrolled {
  padding: 10px 0;
  background: #071521; /* darker on scroll */
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* LOGO SHRINK */
.navbar.scrolled .logo img {
  height: 42px;
}

/* NAV LINK SIZE REDUCE */
.navbar.scrolled .nav-links a {
  font-size: 14px;
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
}


/* FIX DROPDOWN POSITION */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border-radius: 12px;
  min-width: 240px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* ARROW DESIGN */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}







/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-content {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 56px;
  color:#ffffff; 
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
}

.hero-box {
  margin: auto;

  max-width: 480px;

  padding: 18px 22px;  /* 🔥 reduced padding */

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.hero-content h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;

  text-shadow: 0 4px 20px rgba(0,0,0,0.9); /* 🔥 strong contrast */
}

.hero-content p {
  font-size: 16px;
  color: #ffffff;

  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-content h1 {
  color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #cce7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hero-content p {
  color: #ffffff;   /* ✅ FULL WHITE */
  margin-top: 15px;
}


@media (max-width: 1440px) {
  .hero-box {
    max-width: 500px;
    padding: 20px 25px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}


.hero-content {
  transform: translateY(-60px); /* move slightly up */
}


/* BUTTON */
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(45deg, #2b6cb0, #1e90ff);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* HOVER EFFECT (SLIDE LIGHT) */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-content .btn {
  margin-top: 10px;
  display: inline-block;
}


.about-synergy {
  background: #f4f6f9;
  padding: 90px 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-synergy {
  background: #f4f6f9;
  padding: 100px 0;
}

.about-synergy h2 {
  font-size: 42px;
  color: #1e5fa8;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-synergy p {
  font-size: 17px;
  color: #5f6f81;
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1e5fa8;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

/* HEADING */
.about-synergy h2 {
  font-size: 42px;
  font-weight: 600;
  color: #1e5fa8;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
}



/* PARAGRAPH */
.about-synergy p {
  font-size: 16px;
  color: #5f6f81;
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1e5fa8;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

/* HOVER */
.about-btn:hover {
  background: #154a86;
}


.process-premium {
  background: #3cb4e6;
  padding: 80px 5%;
  text-align: center;
  color: #fff;
}

/* TITLE */
.process-premium h2 {
  font-size: 34px;
  font-weight: 700;   /* ✅ BOLD */
  color: #ffffff;     /* ✅ WHITE */
  margin-bottom: 60px;

  text-transform: uppercase;  /* ✅ UPPERCASE */
  letter-spacing: 1px;        /* Slight spacing like premium sites */
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
}

/* GRID */
.process-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ITEM */
.process-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  transition: 0.3s ease;
}

/* ICON */
.process-item img {
  width: 60px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.process-item p {
  font-size: 14px;
  line-height: 1.5;
}

/* HOVER EFFECT */
.process-item:hover {
  transform: translateY(-8px);
}

/* MOBILE */
@media(max-width:768px){
  .process-grid {
    flex-direction: column;
    gap: 30px;
  }
}



/* ===== PREMIUM SPLIT ===== */

.split-premium {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 60px;

  padding: 80px 5%;
  max-width: 1400px;
  margin: auto;
}

/* LEFT */
.split-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f4f82;
  margin-bottom: 20px;
}

.split-left p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn.primary {
  display: inline-flex !important;   /* FIX stretch */
  width: auto !important;
  max-width: max-content;

  align-items: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  background: #2b6cb0;
  color: #fff !important;  /* default */
  border: 2px solid #2b6cb0;

  position: relative;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* BACKGROUND WIPE */
.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;

  z-index: 0;
}

/* TEXT ABOVE */
.btn.primary span {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: inherit !important;   /* 🔥 FIX */
  transition: all 0.3s ease;
}

/* HOVER */
.btn.primary:hover {
  background: transparent;
  color: #2b6cb0 !important;   /* 🔥 FORCE BLUE */
  border: 2px solid #2b6cb0;
}

/* APPLY TO TEXT + ARROW */
.btn.primary:hover span {
  color: #2b6cb0 !important;   /* 🔥 FIX TEXT */
  transform: translateX(5px);
}

/* ANIMATION */
.btn.primary:hover::before {
  transform: scaleX(1);
}
/* ARROW MOVE */
.btn.primary:hover span {
  transform: translateX(5px);
}

/* ARROW MOVE */
.btn.primary:hover span {
  transform: translateX(5px);
}



/* RIGHT */
.split-right {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}

/* SLIDER */
/* ===== SLIDER CLEAN ===== */

.premium-slider {
  width: 100%;
  height: 100%;
}

.premium-slider .swiper-slide {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}


/* ARROWS */
.premium-prev,
.premium-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1e90ff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-prev { left: 15px; }
.premium-next { right: 15px; }

.premium-prev::after {
  content: '‹';
  font-size: 22px;
  color: #fff;
}

.premium-next::after {
  content: '›';
  font-size: 22px;
  color: #fff;
}



/* IMAGE */
.premium-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PERFECT ALIGNMENT */

/* ICON FIX */
.premium-prev::after {
  content: '‹';
  font-size: 22px;
  color: #fff;
}

.premium-next::after {
  content: '›';
  font-size: 22px;
  color: #fff;
}

/* POSITION */
.premium-prev { left: 15px; }
.premium-next { right: 15px; }



.premium-next::after {
  content: '›';
  color: #fff;
  font-size: 22px;
}



/* MOBILE */
@media(max-width:768px){
  .split-premium {
    grid-template-columns: 1fr;
  }

  .split-right {
    height: 280px;
  }
}

/* ===== PREMIUM DEPTH EFFECT ===== */






.premium-prev:hover,
.premium-next:hover {
  transform: scale(1.1);
}






/* ===== PREMIUM CONCEPT SECTION FIX ===== */


/* IMAGE FULL COVER */


/* ZOOM EFFECT */
.concept-premium.active img {
  transform: scale(1);
}


/* TEXT CENTER */
.concept-content {
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 1s ease;
  z-index: 2;
}

/* ANIMATION */
.concept-premium.active .concept-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* TEXT STYLE */
.concept-content h2 {
  font-size: 48px;
  font-weight: 600;
}

.concept-content p {
  margin-top: 10px;
  font-size: 16px;
}

/* MOBILE */
.concept-premium {
  padding: 60px 0; /* spacing top & bottom */
  background: #fff;
}

.concept-image-wrapper {
  max-width: 1200px;  /* control width */
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.concept-image-wrapper img {
  width: 100%;
  max-height: 600px;  /* ✅ CONTROL HEIGHT */
  object-fit: contain; /* ✅ FULL IMAGE VISIBLE */
}


/* ===== WHAT WE DO SECTION ===== */

.what-we-do {
  padding: 80px 0;
  background: #f8fbff;
}

/* Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  color: #0a3d62;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #5f6f81;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: left;
}

/* Hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Title */
.service-card h3 {
  font-size: 20px;
  color: #1e5fa8;
  margin-bottom: 10px;
}

/* Text */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ===== MOBILE ===== */
@media(max-width:992px){
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}


/* SECTION */
.section {
  padding: 80px 10%;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

/* CARD */
.card {
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
  border-radius: 10px;
  transition: 0.3s;
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-10px);
}



/* WHY CHOOSE US SECTION - PREMIUM STYLE */
.section.dark {
  background: #3cb4e6; /* 🎯 exact light blue tone */
  padding: 80px 20px;
  text-align: center;
}

/* HEADING */
.section.dark h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* FEATURES WRAPPER */
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* INDIVIDUAL FEATURE */
.feature h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}


/* TABLET */
@media (max-width: 768px) {

  .section.dark {
    padding: 60px 20px;
  }

  .section.dark h2 {
    font-size: 32px;
  }

  .features {
    gap: 30px;
  }

}

/* MOBILE */
@media (max-width: 480px) {

  .section.dark h2 {
    font-size: 26px;
  }

  .feature h3 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
  }

}


/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* PARALLAX */
.parallax {
  background: url('/assets/images/slide.jpg') center/cover fixed;
  color: #fff;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-premium {
  padding: 80px 10%;
}

.about-premium h2 {
  font-size: 32px;
  color: #0a3d62;
  margin-bottom: 20px;
}

.about-text {
  max-width: 800px;
  margin: auto;
  color: #555;
  line-height: 1.7;
}






/* SECTION */
.expertise-slider {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}


.expertise-slider {
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.expertiseSwiper {
  width: 100%;
  max-width: 1200px;   /* 👈 THIS FIXES LEFT EMPTY SPACE */
  margin: 0 auto;      /* 👈 CENTER ALIGN */
  position: relative;
}


.expertiseSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}


.expertiseSwiper .swiper-slide {
  width: 360px !important;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.85);
}

.expertiseSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.15);
  z-index: 2;
}

.expertiseSwiper .swiper-slide-prev,
.expertiseSwiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.95);
}


.expertise-card img {
  height: 460px;
  width: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* PERFECT POSITION */
.swiper-button-prev {
  left: 0;   /* 👈 inside container now */
}

.swiper-button-next {
  right: 0;  /* 👈 inside container now */
}

.expertiseSwiper {
  padding: 0 40px;   /* 👈 balances left/right spacing */
}




/* SWIPER */
.expertiseSwiper {
  width: 100%;
  padding: 40px 0;
}

/* SLIDES */
.expertiseSwiper .swiper-slide {
  width: 320px;
  transition: 0.5s;
  opacity: 0.4;
  transform: scale(0.8);
}

/* CENTER ACTIVE */
.expertiseSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}

/* SIDE SLIDES */
.expertiseSwiper .swiper-slide-prev,
.expertiseSwiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.9);
}

/* CARD */
.expertise-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.expertise-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* TEXT */
.expertise-card h3 {
  font-size: 18px;
  margin: 15px 0 5px;
}

.expertise-card p {
  font-size: 14px;
  padding: 0 15px 20px;
}

/* ARROWS */
.swiper-button-prev,
.swiper-button-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* FORCE VISIBILITY */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  color: #000;
}


.expertise-slider {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* FIX LEFT ARROW */
.swiper-button-prev {
  left: -10px;   /* 👈 adjust if needed */
}

/* FIX RIGHT ARROW */
.swiper-button-next {
  right: -10px;  /* 👈 adjust if needed */
}


.expertiseSwiper {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.expertiseSwiper .swiper-slide {
  width: 300px !important;
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.expertiseSwiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
}

.expertiseSwiper .swiper-slide-prev,
.expertiseSwiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.95);
}












/* ===== MAIN SECTION ===== */
.stats-premium {
  position: relative;
  width: 100%;
  overflow: hidden;

  min-height: 600px;

  padding-top: 140px;
  padding-bottom: 140px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ===== VIDEO BACKGROUND ===== */
.stats-video {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover; /* VERY IMPORTANT */

  z-index: 0;
}



/* ===== TITLE ===== */
.stats-header {
  position: relative;
   transform: translateY(-50px);
  z-index: 2;

  text-align: center;

  top: -80px; /* PERFECT POSITION */
  margin-bottom: 160px;
}

.stats-header h2 {
  font-size: 42px;
  color: #0a3d62;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== STATS ===== */
.stats-container {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin: auto;
  width: 100%;
}

/* ===== INDIVIDUAL ITEM ===== */
.stat-item {
  text-align: center;
  flex: 1;
}

/* ICON */
.stat-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  object-fit: contain;

  filter: brightness(0) invert(1); /* make icons white */
}

/* NUMBER */
.stat-item h3 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
}

/* TEXT */
.stat-item p {
  font-size: 13px;
  color: #e0f2ff;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px){

  .stats-premium {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .stats-header {
    top: -40px;
    margin-bottom: 100px;
  }

  .stats-header h2 {
    font-size: 26px;
  }

  .stats-container {
    flex-direction: column;
    gap: 40px;
  }

  .stat-item img {
    width: 40px;
    height: 40px;
  }

  .stat-item h3 {
    font-size: 28px;
  }
}





/* ===== REMOVE DARK OVERLAY COMPLETELY ===== */
.stats-premium::after {
  display: none;
}

/* CATEGORY */
.category-strip {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #0e3a5f; /* fallback */
}

/* BACKGROUND IMAGES */
.bg-images {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg-images .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.bg-images .bg.active {
  opacity: 1;
}



.category {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

/* TEXT BOX */
.category span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

/* HOVER */
.category:hover span {
  background: rgba(255, 255, 255, 0.18);
}

/* ACTIVE */
.category.active span {
  background: rgba(255, 255, 255, 0.22);
}

.category span {
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.category {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


/* CATEGORY STRIP */
.categories {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
}

/* EACH COLUMN */
.category {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

/* ACTIVE UNDERLINE */
.category::after {
  content: "";
  position: absolute;
  bottom: 30px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.category.active::after {
  width: 60%;
}

/* HOVER EFFECT */
.category:hover {
  background: rgba(255,255,255,0.05);
}

/* REMOVE LAST BORDER */
.category:last-child {
  border-right: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .category-strip {
    height: auto;
  }

  .categories {
    flex-direction: column;
  }

  .category {
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-right: none;
  }

  .category::after {
    display: none;
  }
}



/* PROCESS */
.process {
  height: 80vh;
  min-height: 600px;
  background: url('/assets/images/concept.webp') center/cover no-repeat;
  position: relative;
  z-index: 0;
}

.process-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

/* VENUE */
.venue {
  padding: 80px 10%;
  text-align: center;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.venue-card {
  position: relative;
}

.venue-card img {
  width: 100%;
  border-radius: 10px;
}

.venue-card span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-weight: bold;
}



/* FULL IMAGE SECTION */
.why-full-image {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}

/* IMAGE SETTINGS */
.why-full-image img {
  width: 100%;
  height: auto; /* 🔥 keeps full image visible */
  display: block;
  object-fit: contain; /* extra safety */
}

/* =========================
   📱 MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {

  .why-full-image {
    padding: 0;
  }

  .why-full-image img {
    width: 100%;
    height: auto;
  }

}

/* =========================
   📲 SMALL MOBILE DEVICES
========================= */
@media (max-width: 480px) {

  .why-full-image img {
    width: 100%;
    height: auto;
  }

}







/* SPLIT */
.split {
  display: flex;
  align-items: center;
  padding: 80px 10%;
  gap: 40px;
}

.split-left {
  max-width: 520px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 100%;
  min-height: 420px; /* MATCH SLIDER HEIGHT */
}

.split-left h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1e5fa8;
  margin-bottom: 20px;
  line-height: 1.3;
}

.split-left p {
  font-size: 16px;
  line-height: 1.9;
  color: #5f6f81;
  margin-bottom: 18px;
}

.split-right > img {
  width: 100%;
  border-radius: 10px;
}

/* ============================= */
/*        RISSA FOOTER           */
/* ============================= */

.rissa-footer {
  background: linear-gradient(135deg, #0a1f44, #0f2f66);
  color: rgba(255,255,255,0.9);
  padding: 70px 0 25px;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 COLUMNS */
  gap: 40px;

  align-items: flex-start; /* ALL START SAME LINE */
}

/* COLUMN */
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 240px; /* EQUAL HEIGHT */
}

/* HEADINGS */
.footer-col h3 {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 6px;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: auto; /* PUSH TO BOTTOM */
  padding-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.footer-social a {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-social a:hover {
  background: #fff;
  color: #0c5f94;
  transform: translateY(-3px);
}

/* ============================= */
/*        BOTTOM BAR             */
/* ============================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 50px;
  padding-top: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* ============================= */
/*        RESPONSIVE             */
/* ============================= */

@media(max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* MOBILE */
@media(max-width:768px){
  .split {
    flex-direction: column;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
}



/* MOBILE */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .features {
    flex-direction: column;
    gap: 20px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-box {
    max-width: 90%;
  }
}

@media(max-width:768px){
  .concept-overlay-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .stats-header {
    margin-top: -40px; /* less shift for mobile */
    transform: none;
  }
}

/* CINEMATIC ZOOM EFFECT */
.split-slider .swiper-slide img {
  transform: scale(1);
  transition: transform 6s ease-in-out;
}

.split-slider .swiper-slide-active img {
  transform: scale(1.08);
}

#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 45px;
  height: 45px;
  border-radius: 50%;

  background: #2b6cb0;
  color: #fff;
  font-size: 20px;

  border: none;
  cursor: pointer;

  display: none; /* hidden initially */

  align-items: center;
  justify-content: center;

  z-index: 9999; /* 🔥 IMPORTANT */

  transition: all 0.3s ease;
}

/* HOVER */
#scrollTopBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* =========================
   ABOUT PAGE (CLEAN VERSION)
========================= */

/* HERO VIDEO */
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 CENTER WRAPPER (KEY FIX) */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}



/* CONTENT */
.hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #fff;

  display: flex;
  flex-direction: column;   /* 🔥 THIS FIXES IT */
  align-items: center;      /* center horizontally */
  justify-content: center;
  text-align: center;
}

.hero-content p {
  font-size: 20px;
  margin-top: 15px;
  max-width: 600px;  /* 🔥 prevents long line stretch */
}



/* TEXT */
.hero-content-box h1 {
    font-size: 42px;  /* reduce if currently large */
    line-height: 1.2;
}

.hero-content-box p {
    font-size: 16px;
    margin: 10px 0 15px;
}

.hero-content-box {
    backdrop-filter: blur(8px);  /* reduce from 15–20px */
    background: rgba(255, 255, 255, 0.15); /* lighter glass */
}



@media(max-width:768px) {

  .hero-overlay {
    padding: 0 20px; /* prevent side cut */
  }

  .hero-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
    max-width: 100%;
  }

}

@media(max-width:768px) {
  .hero-content {
    padding: 0 15px;
  }
}


.hero-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}





/* INTRO */
.center {
  text-align: center;
}

.big-text {
  font-size: 22px;
  margin-bottom: 20px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  background: #0b3d5c;
  color: #fff;
  padding: 60px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 50px;
}

/* =========================
   SPLIT SECTION (FIXED)
========================= */

/* Wrapper for spacing */
/* WRAPPER */
.split-wrapper {
  padding: 60px 40px; /* reduce side pressure */
}

/* MAIN LAYOUT */
/* =========================
   SPLIT SECTION
========================= */
.split-wrapper {
  padding: 80px 60px;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.split-text {
  flex: 1;
}

.split-text h2 {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.split-text ul {
  padding-left: 18px;
}

.split-text li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.split-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .split-wrapper {
    padding: 40px 20px;
  }
  .split-section {
    flex-direction: column;
    gap: 30px;
  }
  .split-image {
    width: 100%;
    justify-content: center;
  }
}




/* =========================
   FOUNDER SECTION
========================= */

.founder-section {
  padding: 80px 60px;
  background: #f5f5f5;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}


.founder-card img {
  width: 300px;
  border-radius: 20px;
  object-fit: cover;
  border-radius: 16%;
}

.founder-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.founder-info span {
  display: block;
  margin-bottom: 15px;
  color: #777;
  font-size: 16px;
}

.founder-info p {
  line-height: 1.7;
  color: #444;
}

.founder-card img {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media(max-width:768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .founder-card img {
    width: 250px;
    height: 300px;
  }
}

/* =========================
   DESIGN & SAFETY STANDARDS
========================= */

.standards-section {
  padding: 80px 60px;
  background: #fff;
}

.standards-section .container {
  max-width: 1100px;
  margin: auto;
}

.standards-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.standards-subtext {
  font-size: 18px;
  color: #444;
  max-width: 750px;   /* 🔥 controls width */
  margin: 0 auto 40px auto; /* 🔥 centers horizontally */
  margin-bottom: 40px;
  max-width: 800px;
}

/* LOGOS */
.standards-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.standard-box {
  text-align: center;
  flex: 1;
}

.standard-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #1c4e70;
}

.standard-box img {
  height: 80px;
  object-fit: contain;
}

/* BENEFITS */
.standards-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
  font-size: 18px;
  margin-bottom: 50px;
}

/* IMAGE CARDS */
.standards-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.image-card {
  overflow: hidden;
  border-radius: 16px;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER EFFECT (PREMIUM) */
.image-card:hover img {
  transform: scale(1.05);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

  .standards-section {
    padding: 50px 20px;
  }

  .standards-logos {
    flex-direction: column;
    text-align: center;
  }

  .standards-benefits {
    grid-template-columns: 1fr;
  }

  .standards-images {
    grid-template-columns: 1fr;
  }

  .image-card img {
    height: 200px;
  }
}

/* =========================
   PHILOSOPHY
========================= */

.philosophy {
  background: url('../images/water-bg.jpg') center/cover;
  height: 400px;
  position: relative;
}

.philosophy h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}

.philosophy p {
  color: #fff;
  font-size: 18px;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
}

.philosophy .overlay {
  background: rgba(0,0,0,0.6);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px) {

  .hero-content h1 {
    font-size: 32px;
  }

  .split-wrapper {
    padding: 40px 20px;
  }

  .split-section {
    flex-direction: column;
    gap: 30px;
  }

  .split-image {
    width: 100%;
    height: 300px;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  
}



/* =========================
   Product Page
========================= */


/* HERO */
.products-hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  background: url('../images/funnel-slide.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.products-hero h1 {
  font-size: 40px;
  color: #0350a6;
}

.products-hero p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

.products-hero h1 {
  color: #fff;
}

.products-hero p {
  color: #ddd;
}

/* DARK OVERLAY */
.products-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* adjust darkness here */
  z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.products-hero h1,
.products-hero p {
  position: relative;
  z-index: 2;
}




/* CATEGORY GRID */
.product-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 10%;
}

.category-card {
  text-align: center;
  text-decoration: none;
}

.category-card img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card h3 {
  margin-top: 15px;
  color: #0350a6;
  transition: 0.3s;
  font-size: 20px;   /* increased size */
  font-weight: 600;  /* makes it more premium */
  margin-top: 12px;
}

.category-card:hover h3 {
  color: #00aeee;
  
}

/* PRODUCT SECTION */
.product-section {
  padding: 60px 10%;
}

.product-section h2 {
  margin: 40px 0 20px;
  color: #00a99d;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  
}

/* SPECS */
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px;
}

.specs span {
  background: #f1f1f1;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* TEXT */
.product-card h3 {
  padding: 0 15px;
}

.product-card p {
  padding: 0 15px 10px;
  color: #666;
}

/* BUTTON */
.enquire-btn {
  display: inline-block;
  margin: 15px;
  padding: 10px 20px;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  border-radius: 30px;
  transition: 0.3s;
  text-decoration: none;
}

.enquire-btn:hover {
  background: #ff6a00;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .product-grid,
  .product-categories {
    grid-template-columns: 1fr;
  }

  .products-hero h1 {
    font-size: 28px;
  }

}





/* =========================
   Product Categories Page Water slide 
========================= */


/* HERO */
/* HERO SECTION FIX */
.category-hero {
  position: relative;
  height: 420px;
  background: url('../images/funnel-slide.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* LIGHT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(3, 80, 166, 0.55),   /* reduced opacity */
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.hero-content {
  position: relative;
  z-index: 2; /* 🔥 IMPORTANT */
  color: #fff;
  text-align: center;
  max-width: 700px;
}

/* HEADING */
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* SUBTEXT */
.hero-content p {
  font-size: 16px;
  color: #f1f1f1;
}

/* INTRO */
.category-intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  color: #555;
  font-size: 16px;
}

/* TABS */
.ultra-tabs {
  position: sticky;
  top: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* STICKY TABS PREMIUM */
.ultra-tabs {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  z-index: 999;
}

.ultra-tabs a {
  background: #f1f5fb;
  padding: 10px 20px;
  border-radius: 30px;
  color: #0350a6;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ultra-tabs a:hover {
  background: #0350a6;
  color: #fff;
  transform: translateY(-3px);
}

.ultra-tabs a {
  color: #0350a6;
  font-weight: 600;
  text-decoration: none;
}

/* SECTION */
.product-section {
  padding: 80px 10%;
}

.category-block {
  margin-bottom: 60px;
}

.category-block h2 {
  color: #0350a6;
  margin-bottom: 25px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.img-box img {
  width: 100%;
  transition: 0.5s;
}

.product-card:hover img {
  transform: scale(1.1);
}

.img-box {
  overflow: hidden;
  border-radius: 15px;
  background: #eee;
}

.img-box img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.08);
}


/* ================= IMAGE FINAL FIX ================= */

/* IMAGE BOX */
.img-box {
  width: 100%;
  background: #f5f7fa;
  padding: 10px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

/* IMAGE */
.img-box img {
  width: 100%;
  height: auto; /* 🔥 FULL IMAGE */
  display: block;
  border-radius: 12px; /* 🔥 CURVE IMAGE */
  object-fit: contain; /* 🔥 NO CROP */
}

/* REMOVE HOVER ZOOM (IMPORTANT) */
.product-card:hover img {
  transform: none;
}

/* HOVER */
.product-card:hover img {
  transform: scale(1.05);
}

.product-card {
  padding-top: 10px;
}

.img-box {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #eee;
}

.img-box img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.product-card:hover img {
  transform: scale(1.06);
}



/* CONTENT */
.card-content {
  padding: 20px;
}

/* SPECS */
.specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 10px;
}

/* TEXT */
.card-content h3 {
  margin-bottom: 8px;
}

.card-content p {
  color: #666;
}

/* BUTTON */
.enquire-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  border: 2px solid #ff6a00;
  color: #ff6a00;
  border-radius: 30px;
  transition: 0.3s;
  text-decoration: none;
}

.enquire-btn:hover {
  background: #ff6a00;
  color: #fff;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}








/* =========================
   Project Page
========================= */



/* PROJECT HERO */
.projects-hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/project.webp') center/cover no-repeat;
  color: #fff;
}

.projects-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.projects-hero h1 {
  color: #fff !important;
}

.projects-hero p {
  color: #fff !important;
}

.projects-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 boxes only */
  gap: 25px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* MOBILE VIEW - 1 CARD */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.project-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* INFO */
.project-info {
  padding: 18px;
  text-align: center;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 14px;
  color: #666;
}


/* PROJECT LOCATION TEXT */
.category-card p {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}






/* =========================
   CONTACT PAGE MODERN UI
========================= */

.contact-modern {
  padding: 80px 20px;
  background: #f8f9fb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
}

.info-box p {
  margin: 10px 0;
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  margin-top: 20px;
  border: 0;
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* INPUTS */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.form-group textarea {
  height: 120px;
}

/* FLOAT LABEL */
.form-group label {
  position: absolute;
  top: 14px;
  left: 12px;
  background: #fff;
  padding: 0 5px;
  font-size: 13px;
  color: #888;
  transition: 0.3s;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 11px;
  color: #007bff;
}

/* BUTTON */
.btn-submit {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* MESSAGE */
#formMessage {
  margin-top: 10px;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

#formMessage {
  margin-top: 15px;
  font-weight: 500;
}



/* =========================
   FLOATING BUTTONS
========================= */

/* =========================
   FLOATING BUTTONS STACK
========================= */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px; /* keeps space for scroll-up button */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* COMMON STYLE */
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* ICON IMAGE */
.floating-buttons img {
  width: 26px;
  height: 26px;
}

/* WHATSAPP */
.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* CALL */
.floating-call {
  background: #007bff;
}

.floating-call:hover {
  transform: scale(1.1);
  background: #0056b3;
}

/* MOBILE */
@media(max-width:768px){
  .floating-buttons {
    right: 15px;
    bottom: 80px;
  }

  .floating-buttons a {
    width: 50px;
    height: 50px;
  }

  .floating-buttons img {
    width: 22px;
    height: 22px;
  }
}

.scroll-top {
  bottom: 20px;
  right: 20px;
  z-index: 998; /* lower than floating buttons */
}