@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

html,
body {
  overflow-x: clip;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
}

/* --- Global Heading Typography --- */
h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.main-title,
.main-title span,
.about-main-heading,
.about-main-heading span,
.text-highlight,
.heading-gradient {
  font-family: 'Playfair Display', Georgia, serif !important;
}

.highlight {
  color: var(--accent-cyan) !important;
}

:root {
  --primary-blue: #0B5ED7;
  /* Siemens/Honeywell Premium Blue */
  --primary-hover: #0A58CA;
  /* Darker Blue */
  --accent-cyan: #00C2FF;
  /* Tech Cyan */
  --dark-bg: #071B2F;
  /* Deep Slate Industrial Dark Blue */
  --dark-blue: #071B2F;
  /* Deep Slate */
  --text-main: #1E293B;
  /* Slate (800) */
  --text-muted: #64748B;
  /* Slate (500) */
  --bg-color: #F5F8FC;
  /* Slate (50) */
  --card-bg: #ffffff;
  /* Card Background */
  --border-color: rgba(7, 27, 47, 0.08);
  /* Soft slate border */
  --white: #ffffff;
  --primary-gradient: linear-gradient(135deg, #0B5ED7 0%, #00C2FF 100%);
  --hover-shadow: 0 20px 40px -10px rgba(7, 27, 47, 0.12);
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 10px 30px -10px rgba(7, 27, 47, 0.04);
  --shadow-md: 0 20px 40px -15px rgba(7, 27, 47, 0.1);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* =========================================
   COMMON NAVBAR STYLES
========================================= */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: var(--transition);
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 2rem;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid rgba(7, 27, 47, 0.08);
  display: flex;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(7, 27, 47, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

/* --- Brand / Logo --- */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.nav-logo-img {
  height: 75px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.2));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-weight: 800;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 1.5px;
  margin-top: 4px;
  white-space: nowrap;
}

/* --- Menu Links --- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(4px, 0.8vw, 12px);
}

.nav-link {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  padding: 0.6rem clamp(0.4rem, 0.8vw, 1.2rem);
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.04);
}

.nav-link:hover::after {
  width: 60%;
}

/* Active State */
.nav-link.active {
  background-color: rgba(11, 94, 215, 0.08);
  color: var(--primary-blue);
}

.nav-link.active::after {
  width: 60%;
  background: var(--primary-gradient);
}

/* --- Enquiry Button --- */
.btn-enquiry {
  background: var(--primary-gradient);
  color: var(--white) !important;
  text-decoration: none;
  padding: 0.7rem clamp(1rem, 1.5vw, 1.8rem);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.25);
  white-space: nowrap;
  display: inline-block;
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.45), 0 0 15px rgba(0, 194, 255, 0.2);
  color: var(--white) !important;
}

/* --- Login Button --- */
.nav-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-login {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  transition: var(--transition);
  border: 1px solid transparent;
  background: transparent;
}

/* --- Mobile Toggle Button --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000000;
  transition: var(--transition);
}

.nav-toggle:hover {
  color: var(--primary-blue);
}

.nav-item-mobile-only {
  display: none;
}

.btn-login:hover {
  background: rgba(11, 94, 215, 0.08);
  border-color: rgba(11, 94, 215, 0.2);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .custom-navbar {
    padding: 0.5rem 1.5rem !important;
    min-height: 70px !important;
  }

  .nav-logo-img {
    height: 60px !important;
  }

  .brand-title {
    font-size: 1.4rem !important;
  }

  .brand-subtitle {
    font-size: 0.7rem !important;
    margin-top: 2px !important;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    /* Matches navbar height */
    left: -100%;
    /* Start off-screen */
    width: 100%;
    height: auto;
    max-height: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 251, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem 0;
    box-shadow: 0 15px 30px rgba(7, 27, 47, 0.08);

    border-bottom: 4px solid;
    border-image: var(--primary-gradient) 1;

    flex-direction: column;
    z-index: 1000;
    gap: 12px;
    align-items: center;
    overflow: visible;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.show {
    display: flex;
    left: 0;
    /* Slide in */
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu li {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-menu .nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    background: #ffffff;
    border: 1.5px solid rgba(7, 27, 47, 0.08);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(7, 27, 47, 0.75);
    box-shadow: 0 2px 5px rgba(7, 27, 47, 0.02);
    transition: all 0.3s ease;
  }

  .nav-menu .nav-link:hover {
    background: rgba(11, 94, 215, 0.03);
    color: var(--primary-blue);
    border-color: rgba(11, 94, 215, 0.3);
    transform: translateY(-1px);
  }

  .nav-menu .nav-link.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.2);
  }

  .nav-menu .nav-link.active::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-action {
    display: none;
  }

  .nav-item-mobile-only {
    display: none;
  }
}

/* Accordion Overrides */
@media (max-width: 1100px) {
  .custom-nav-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
    /* Ensure icon rotates smoothly */
  }

  .custom-nav-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
  }

  .custom-nav-dropdown:hover .dropdown-icon {
    transform: none;
    /* Disable hover rotation on mobile */
  }

  .custom-dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 12px !important;
    background: rgba(11, 94, 215, 0.04) !important;
    margin: 8px 0 0 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: auto !important;
    backdrop-filter: none !important;

    /* Accordion Animation */
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
  }

  .custom-nav-dropdown.open .custom-dropdown-menu {
    max-height: 1000px !important;
    overflow-y: visible !important;
    padding: 10px 12px 14px 12px !important;
  }

  .custom-dropdown-menu .dropdown-header {
    color: var(--primary-blue) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    padding: 10px 12px 4px 12px !important;
    text-align: left !important;
  }

  .custom-dropdown-menu a {
    padding: 8px 14px 8px 24px !important;
    color: rgba(7, 27, 47, 0.85) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s ease !important;
  }

  .custom-dropdown-menu a:hover {
    background: rgba(11, 94, 215, 0.08) !important;
    color: var(--primary-blue) !important;
  }
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

/* --- Hero Background Slider --- */
.header-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  transition: opacity 1.5s ease-in-out, transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Shifting animated gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 27, 47, 0.94) 0%, rgba(7, 27, 47, 0.75) 50%, rgba(11, 94, 215, 0.2) 100%);
  z-index: 2;
}

/* Floating Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 80%);
  top: -100px;
  right: -100px;
  z-index: 2;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 94, 215, 0.08) 0%, transparent 80%);
  bottom: -50px;
  left: -50px;
  z-index: 2;
  pointer-events: none;
}

/* Main Container Layout */
.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  gap: 60px;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Image Wrapper */
.hero-image-wrapper {
  flex: 0.9;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 480px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(0, 194, 255, 0.15));
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* The Bouncy Effect Animation */
.bouncy-product {
  animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {

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

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

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Text Content Wrapper */
.hero-text-wrapper {
  flex: 1;
  max-width: 800px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-text-wrapper .subtitle {
  color: var(--accent-cyan);
  margin-bottom: 15px;
}

.hero-text-wrapper h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  text-transform: capitalize;
  background: linear-gradient(135deg, #ff7b72 10%, #70d6ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.hero-text-wrapper p {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styling */
.know-more-btn {
  display: inline-block;
  padding: 14px 38px;
  color: var(--white) !important;
  text-decoration: none;
  background: var(--primary-gradient);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-radius: var(--radius-btn);
  border: none;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.35);
}

.know-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.55), 0 0 15px rgba(0, 194, 255, 0.3);
  background: linear-gradient(135deg, #0b5ed7 30%, #00c2ff 100%);
}

/* Responsive Design for Tablets and Mobile */
@media (max-width: 991px) {
  .hero-section {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    justify-content: center;
  }

  .hero-image-wrapper {
    display: none !important;
  }

  .hero-text-wrapper {
    text-align: center;
    align-items: center;
    flex: 1;
  }

  .hero-text-wrapper h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    white-space: normal;
  }

  .hero-text-wrapper p {
    text-align: center;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }
}

@media (max-width: 576px) {
  .hero-text-wrapper h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .hero-text-wrapper p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 5px;
  }

  .know-more-btn {
    padding: 10px 28px;
    font-size: 0.85rem;
  }
}

/* --- Layout --- */
.about-section {
  padding: 60px 20px 30px 20px !important;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Premium About Card Container --- */
.about-card-container {
  background-color: #9babb4;
  /* Muted slate-blue-grey from the reference image */
  border-radius: 32px;
  padding: 45px 50px;
  /* Slightly increased vertical padding for a balanced layout */
  box-shadow: 0 20px 40px rgba(7, 27, 47, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}

.about-card-container .description {
  color: #1e293b !important;
  /* Darker slate-grey text for clear readability on slate background */
  font-weight: 500;
  margin-bottom: 12px;
  /* Balanced margin */
  font-size: 0.96rem;
  /* Balanced text size */
}

.about-card-container .main-title {
  margin-bottom: 12px;
  /* Balanced margin */
  font-size: 2.45rem;
  /* Balanced title size */
}

.about-card-container .text-column .accent-line {
  margin-bottom: 20px;
  /* Balanced margin */
}

.about-card-container .feature-list {
  margin-top: 20px;
  /* Balanced margin */
  gap: 12px;
  /* Balanced gap */
}

.about-card-container .feature-list li {
  padding: 12px 16px;
  /* Balanced internal padding */
  font-size: 0.92rem;
}

.about-card-container .main-img {
  height: 440px !important;
  /* Intermediate height of the image (reverted from 400px to a balanced 440px) */
  max-height: 440px !important;
}

.eyebrow-badge {
  display: inline-block;
  background-color: var(--white);
  color: #071B2F;
  border: 1px solid rgba(7, 27, 47, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  /* Balanced margin */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

/* --- Left Column: Image & Badge --- */
.image-column {
  flex: 0.9;
  position: relative;
}

.bouncy-element {
  position: relative;
}

.main-img {
  width: 100%;
  height: 480px;
  max-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.main-img:hover {
  transform: scale(1.02);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 24px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.25);
  z-index: 10;
  max-width: 220px;
  animation: badge-pulse 3s infinite ease-in-out;
}

@keyframes badge-pulse {

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

  50% {
    transform: scale(1.03);
  }
}

.experience-badge h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.experience-badge p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

/* --- Right Column: Text Content --- */
.text-column {
  flex: 1.1;
}

.subtitle {
  color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.2;
  margin-bottom: 15px;
}

.text-highlight {
  color: var(--primary-blue);
  background: linear-gradient(120deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: #DC2626;
  /* Changed to professional red */
  margin-bottom: 25px;
  border-radius: 2px;
}

.text-column .accent-line {
  margin: 0 0 25px 0;
}

.description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* --- Checklist --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-list li:hover {
  transform: translateY(-3px);
  border-color: #DC2626;
  /* Changed to red on hover */
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
  /* Red glowing shadow */
  cursor: pointer;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--primary-gradient);
}

.check-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3px;
}

/* --- Button --- */
.btn-primary {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.25);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.45);
}

.about-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 100%;
  margin-top: 30px;
}

.about-section .service-card {
  background-color: var(--white);
  padding: 25px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 15px;
  align-items: center;
  text-align: left;
}

.about-section .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
  /* Changed to red gradient */
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.about-section .service-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.25);
  /* Red glowing shadow */
}

.about-section .service-card:hover::before {
  transform: scaleX(1);
}

.about-section .card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, color 0.3s ease;
  color: var(--primary-blue);
  background-color: rgba(11, 94, 215, 0.08);
}

.about-section .service-card h4 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--dark-bg);
  text-align: left;
}

.about-section .service-items {
  grid-column: 1 / span 2;
  grid-row: 2;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 10px;
}

.about-section .service-items li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.about-section .service-items li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  font-size: 13px;
  transition: var(--transition);
  color: var(--accent-cyan);
}

.about-section .service-card:hover .service-items li::before {
  transform: translateX(3px);
  color: var(--primary-blue);
}

/* Card 1: Flow Meter Solutions */
.about-section .services-grid .service-card:nth-child(1):hover .card-icon {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-2px) scale(1.05) rotate(10deg);
}

/* Card 2: Fuel Handling Systems */
.about-section .services-grid .service-card:nth-child(2) .card-icon {
  color: var(--accent-cyan);
  background-color: rgba(0, 194, 255, 0.08);
}

.about-section .services-grid .service-card:nth-child(2)::before {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
}

.about-section .services-grid .service-card:nth-child(2):hover .card-icon {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary-blue) 100%);
  color: white;
  transform: translateY(-2px) scale(1.05) rotate(10deg);
}

/* Card 3: Automation Systems */
.about-section .services-grid .service-card:nth-child(3) .card-icon {
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.08);
}

.about-section .services-grid .service-card:nth-child(3)::before {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.about-section .services-grid .service-card:nth-child(3):hover .card-icon {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
  color: white;
  transform: translateY(-2px) scale(1.05) rotate(10deg);
}

/* --- Responsive for About Section Cards --- */
@media (max-width: 992px) {
  .about-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .about-section .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .about-card-container {
    padding: 30px 20px;
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .hero-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .image-column {
    flex: none;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .bouncy-element {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .main-img {
    width: 100%;
    height: 380px !important;
    max-height: none !important;
    object-fit: cover;
    border-radius: var(--radius-lg);
  }

  .experience-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: auto;
    width: auto;
    max-width: 240px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--primary-gradient);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.25);
    z-index: 10;
    animation: none;
  }

  .experience-badge h3 {
    font-size: 1.8rem;
    margin-bottom: 4px;
  }

  .experience-badge p {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .experience-badge p br {
    display: block;
  }

  .text-column {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .main-title {
    font-size: 1.8rem !important;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .accent-line {
    margin-bottom: 15px;
    height: 3px;
    width: 50px;
  }

  .text-column .accent-line {
    margin: 0 0 15px 0;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
  }

  .feature-list li {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}

@media (max-width: 576px) {
  .about-card-container {
    padding: 24px 15px;
    border-radius: 16px;
    margin-bottom: 30px;
  }

  .hero-wrapper {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .image-column {
    flex: none !important;
    width: 100% !important;
  }

  .text-column {
    flex: none !important;
    width: 100% !important;
  }

  .main-img {
    height: 280px !important;
    border-radius: 12px;
  }

  .experience-badge {
    bottom: 12px !important;
    left: 12px !important;
    right: auto !important;
    width: auto !important;
    max-width: 180px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
  }

  .experience-badge h3 {
    font-size: 1.4rem !important;
  }

  .experience-badge p {
    font-size: 0.72rem !important;
  }

  .main-title {
    font-size: 1.1rem !important;
    margin-bottom: 6px !important;
  }

  .accent-line {
    margin-bottom: 10px !important;
    height: 2px !important;
    width: 35px !important;
  }

  .text-column .accent-line {
    margin: 0 0 10px 0 !important;
  }

  .description {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  .feature-list {
    margin-top: 10px !important;
    gap: 6px !important;
  }

  .feature-list li {
    font-size: 0.72rem !important;
    gap: 8px !important;
    padding: 6px 8px !important;
  }

  .check-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .check-icon svg {
    width: 8px !important;
    height: 8px !important;
    stroke-width: 4px !important;
  }

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

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   "WHO WE ARE" SECTION STYLES
========================================= */
.section-pad {
  padding: 60px 0;
}

.section-dark {
  background-color: #18181b;
  /* Deep industrial charcoal */
  color: #e2e8f0;
  font-family: 'Barlow', sans-serif;
  overflow: hidden;
}

/* --- Left Side: Image & Experience Badge --- */
.about-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  /* Allows badge to pop out */
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.02);
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
  z-index: 2;
}

.exp-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* --- Right Side: Content & Typography --- */
.section-eyebrow {
  color: #00b4d8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title .accent {
  background: linear-gradient(90deg, #00b4d8, #00ffcc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.divider-brand {
  width: 70px;
  height: 4px;
  background: #00ffcc;
  border-radius: 2px;
  margin-bottom: 25px;
}

.section-dark p {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Product Cards (Glassmorphism Effect) --- */
.product-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 20px;
  border-radius: 12px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.product-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: #00b4d8;
  box-shadow: 0 12px 25px rgba(0, 180, 216, 0.15);
}

.product-box h5 {
  color: #00ffcc;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.9;
  margin: 0;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Cleared bottom margin */
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 columns on desktop */
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-main);
  /* Corrected dark slate color for high visibility */
  font-weight: 600;
}

.fi-icon {
  color: #00ffcc;
  background: rgba(0, 255, 204, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 3px;
}

/* --- Button --- */
.btn-primary-brand {
  display: inline-block;
  background: linear-gradient(90deg, #1c5ba6, #00b4d8);
  color: #ffffff !important;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Add a slight stagger effect to the product cards */
.row.g-4.reveal.active .col-md-4:nth-child(1) {
  transition-delay: 0.1s;
}

.row.g-4.reveal.active .col-md-4:nth-child(2) {
  transition-delay: 0.3s;
}

.row.g-4.reveal.active .col-md-4:nth-child(3) {
  transition-delay: 0.5s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-exp-badge {
    bottom: 20px;
    right: 20px;
  }

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

  .about-image-wrap {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

/* =========================================
   "WHO WE ARE" SECTION (Light Theme)
========================================= */
.section-pad {
  padding: 55px 5%;
  /* Reduced vertical padding from 90px */
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-color) 100%);
  font-family: 'Barlow', sans-serif;
  overflow: hidden;
}

/* --- Left Side: Image & Experience Badge --- */
.about-image-wrap {
  position: relative;
  border-radius: 12px;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px -15px rgba(11, 25, 44, 0.15);
  /* Soft, realistic shadow */
  transition: transform 0.5s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.02);
}

/* Badge positioned at Bottom-Left matching your image */
.about-exp-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  /* Moved to the left */
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  /* Stacks text vertically */
  align-items: flex-start;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.25);
  z-index: 2;
}

.exp-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.exp-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* --- Right Side: Content & Typography --- */
.section-eyebrow {
  color: var(--primary-blue);
  /* Brand Red */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f2937;
  /* Dark Slate Gray */
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title .accent {
  color: var(--primary-blue);
  background: none;
  -webkit-text-fill-color: initial;
}

.divider-brand {
  width: 70px;
  height: 3px;
  background: var(--primary-gradient);
  margin-bottom: 25px;
}

.section-pad p {
  color: #4b5563;
  /* Professional slate grey */
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Product Cards (Updated for Light Theme) --- */
.product-box {
  background: #f8fafc;
  /* Very light grey */
  border: 1px solid #e2e8f0;
  padding: 25px 20px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.product-box:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
}

.product-box h5 {
  color: #1f2937;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.product-box p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.9;
  margin: 0;
}



.fi-icon {
  color: #ffffff;
  background: var(--primary-blue);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 4px;
}

/* --- Button --- */
.btn-primary-brand {
  display: inline-block;
  background: var(--primary-blue);
  color: #ffffff !important;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

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

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 991px) {
  .about-exp-badge {
    bottom: 15px;
    left: 15px;
    /* Keeps it inside on mobile */
  }

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

  .about-image-wrap {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 60px 5%;
  }
}

@media (max-width: 576px) {
  .section-pad {
    padding: 40px 5%;
  }
}

/* --- Section Layout --- */
.services-section {
  padding: 60px 20px 80px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #F5F8FC 0%, rgba(112, 214, 255, 0.08) 50%, #F5F8FC 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header Styles --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.subtitle {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
}

.main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-highlight {
  color: var(--primary-blue);
}

.accent-line {
  width: 60px;
  height: 4px;
  background-color: #DC2626;
  /* Changed to red */
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.header-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* =========================================
   INTERACTIVE SERVICES TAB SECTION
   ========================================= */
.interactive-services-container {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  margin-top: 30px;
  align-items: start;
}

/* Tab controls on the left */
.services-tab-controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-control-item {
  background: #ffffff;
  border: 1px solid rgba(11, 94, 215, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 5px 15px rgba(7, 27, 47, 0.01);
}

.tab-control-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-gradient);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-control-item.active::before {
  opacity: 1;
}

.tab-control-item .control-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(11, 94, 215, 0.06);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.tab-control-item .control-text {
  flex-grow: 1;
  text-align: left;
}

.tab-control-item .control-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin: 0 0 4px 0;
  transition: var(--transition);
}

.tab-control-item .control-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.tab-control-item .arrow-indicator {
  font-size: 0.9rem;
  color: rgba(7, 27, 47, 0.2);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover & Active states */
.tab-control-item:hover,
.tab-control-item.active {
  background: linear-gradient(135deg, rgba(255, 123, 114, 0.03) 0%, rgba(112, 214, 255, 0.05) 100%);
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.08), 0 0 15px rgba(0, 194, 255, 0.1);
  transform: translateX(5px);
}

.tab-control-item:hover .control-icon,
.tab-control-item.active .control-icon {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.15);
}

.tab-control-item:hover .control-text h4,
.tab-control-item.active .control-text h4 {
  color: var(--primary-blue);
}

.tab-control-item:hover .arrow-indicator,
.tab-control-item.active .arrow-indicator {
  transform: translateX(4px);
  color: var(--primary-blue);
}

/* Right Detail Display Panel */
.services-display-panel {
  background: #ffffff;
  border: 1px solid rgba(11, 94, 215, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(7, 27, 47, 0.04);
  padding: 45px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.services-display-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0B5ED7 0%, #00C2FF 50%, #FF7B72 100%);
}

.service-detail-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  text-align: left;
}

.service-detail-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.service-detail-content .detail-header {
  margin-bottom: 20px;
}

.service-detail-content .detail-badge {
  background: rgba(11, 94, 215, 0.08);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.service-detail-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin: 0;
}

.service-detail-content .detail-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 90%;
}

.service-detail-content .detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 35px;
}

.service-detail-content .detail-features h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.service-detail-content .detail-features ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.service-detail-content .detail-features li {
  font-size: 0.92rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none !important;
}

.service-detail-content .detail-features li i {
  color: var(--primary-blue);
  font-size: 1rem;
}

/* Beautiful Animated Visual Showcase in the detail card */
.service-detail-content .detail-visual {
  position: relative;
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(7, 27, 47, 0.02) 0%, rgba(11, 94, 215, 0.05) 100%);
  border: 1px dashed rgba(11, 94, 215, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-detail-content .detail-visual .visual-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-gradient);
  filter: blur(40px);
  opacity: 0.15;
  animation: pulse-visual 4s infinite alternate;
}

.service-detail-content .detail-visual .visual-icon {
  font-size: 3.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.service-detail-content:hover .detail-visual .visual-icon {
  transform: scale(1.1) rotate(3deg);
}

.service-detail-content .detail-visual .visual-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* Action Buttons */
.service-detail-content .detail-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.service-detail-content .btn-detail-action {
  background: var(--primary-gradient);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-detail-content .btn-detail-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.35);
}

.service-detail-content .btn-detail-action:hover i {
  transform: translateX(3px);
}

.service-detail-content .btn-detail-secondary {
  border: 1px solid rgba(11, 94, 215, 0.3);
  color: var(--primary-blue) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 30px;
  transition: var(--transition);
  display: inline-block;
}

.service-detail-content .btn-detail-secondary:hover {
  background: rgba(11, 94, 215, 0.05);
  border-color: var(--primary-blue);
}

@keyframes pulse-visual {
  0% {
    transform: scale(1);
    opacity: 0.12;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.22;
  }
}

/* =========================================
   RESPONSIVE LAYOUT FOR TAB SECTION
   ========================================= */
@media (max-width: 991px) {
  .interactive-services-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-tab-controls {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
    gap: 12px;
  }

  .services-tab-controls::-webkit-scrollbar {
    height: 4px;
  }

  .services-tab-controls::-webkit-scrollbar-thumb {
    background: rgba(11, 94, 215, 0.2);
    border-radius: 2px;
  }

  .tab-control-item {
    flex: 0 0 auto;
    width: 250px;
    padding: 15px 18px;
    transform: none !important;
  }

  .tab-control-item::before {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 0 0 4px 4px;
  }

  .tab-control-item .arrow-indicator {
    display: none;
  }

  .services-display-panel {
    padding: 30px;
    min-height: auto;
  }

  .service-detail-content h3 {
    font-size: 1.6rem;
  }

  .service-detail-content .detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-content .detail-visual {
    height: 140px;
  }
}

@media (max-width: 576px) {
  .tab-control-item {
    width: 220px;
  }

  .tab-control-item .control-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .tab-control-item .control-text h4 {
    font-size: 0.95rem;
  }

  .services-display-panel {
    padding: 24px 20px;
  }

  .service-detail-content h3 {
    font-size: 1.4rem;
  }

  .service-detail-content .detail-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .service-detail-content .detail-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .service-detail-content .btn-detail-action,
  .service-detail-content .btn-detail-secondary {
    text-align: center;
    justify-content: center;
  }
}

.icon-wrapper i {
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
}

/* Icon Pop & Rotate Animation on Hover */
.service-card:hover .icon-wrapper i {
  animation: icon-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes icon-pop {
  0% {
    transform: scale(1) rotate(0deg);
  }

  40% {
    transform: scale(1.3) rotate(15deg);
  }

  100% {
    transform: scale(1.1) rotate(0deg);
  }
}

/* --- Typography --- */
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Responsive --- */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .service-card {
    padding: 20px 10px;
  }

  .services-section {
    padding: 10px 20px 30px 20px !important;
  }

  .featured-products-section {
    padding: 40px 20px 0 20px !important;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section {
    padding: 10px 15px 20px 15px !important;
  }

  .featured-products-section {
    padding: 30px 15px 0 15px !important;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

/* --- Stats Section Layout --- */
.stats-section {
  background: linear-gradient(135deg, rgba(7, 27, 47, 0.78) 0%, rgba(17, 45, 78, 0.78) 100%),
    url('https://images.unsplash.com/photo-1542060748-10c28b629f6f?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat !important;
  color: var(--white);
  padding: 50px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* --- Stat Card --- */
.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2px 16px;
  align-items: center;
}

/* Icon Styling */
.icon-box {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.icon-box i {
  font-size: 20px;
  color: var(--accent-cyan);
  transition: color 0.3s ease;
}

.stat-card:hover .icon-box {
  transform: translateY(-4px) scale(1.05);
  background: var(--primary-gradient);
  border-color: var(--accent-cyan);
  box-shadow: 0 10px 22px rgba(0, 194, 255, 0.4);
}

.stat-card:hover .icon-box i {
  color: var(--white);
}

/* Number Styling */
.stat-value {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  justify-content: start;
  margin-bottom: 0;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 194, 255, 0.25);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
}

/* Label Styling */
.stat-label {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }

  .stat-card {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-card {
    justify-content: start;
    max-width: 230px;
    margin: 0 auto;
  }
}

/* ============================================================
   CLIENTS SCROLLER & DARK SECTION 2
   ============================================================ */
.section-dark-2 {
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11, 94, 215, 0.18) 0%, transparent 50%),
    #051321 !important;
  color: var(--white) !important;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.section-dark-2 .container {
  position: relative;
  z-index: 1;
}

.section-dark-2 .section-eyebrow {
  color: var(--accent-cyan) !important;
}

.section-dark-2 .section-title {
  color: var(--white) !important;
}

.section-dark-2 .section-title .accent {
  color: var(--accent-cyan) !important;
}

.client-scroller-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.client-scroller-track {
  display: flex;
  gap: 30px;
  align-items: center;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.client-scroller-track:hover {
  animation-play-state: paused;
}

.client-logo-card {
  width: 200px;
  height: 110px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  box-shadow: none !important;
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  transition: var(--transition);
  background: transparent !important;
}

.client-logo-card:hover {
  transform: translateY(-4px) scale(1.08);
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.client-logo-card:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 194, 255, 0.3));
}

/* --- Centered Header Block --- */
.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  color: var(--primary-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .accent {
  color: var(--primary-blue);
}

.divider-brand {
  width: 70px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .section-title {
    font-size: 2.2rem;
  }
}

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

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

@media (max-width: 767.98px) {
  .client-logo-card {
    width: 180px;
    height: 100px;
    padding: 0;
  }
}

/* =========================================
   COMMON FOOTER STYLES
========================================= */
.custom-footer {
  background: url('/assets/images/footer_bg.png') center/cover no-repeat;
  color: #2d3748;
  font-family: 'Inter', sans-serif;
  padding: 5rem 2rem 1.5rem;
  position: relative;
  border-top: 1px solid rgba(7, 27, 47, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Headings */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  color: #071b2f;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  text-transform: uppercase;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 25px;
  height: 2px;
  background-color: var(--primary-blue);
}

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

.text-center-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.footer-logo img {
  height: 80px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.15));
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #071b2f;
}

.brand-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(7, 27, 47, 0.05);
  border: 1px solid rgba(7, 27, 47, 0.15);
  border-radius: 8px;
  color: #4a5568;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Newsletter form */
.footer-newsletter {
  margin-top: 2rem;
}

.newsletter-heading {
  font-family: 'Poppins', sans-serif;
  color: #071b2f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
  position: relative;
}

.newsletter-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(7, 27, 47, 0.15);
  border-right: none;
  padding: 12px 18px;
  border-radius: 30px 0 0 30px;
  color: #071b2f;
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: #718096;
}

.newsletter-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--primary-blue);
}

.newsletter-btn {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  width: 55px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.4);
}

/* Link Columns */
.links-col ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.links-col ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 15px;
  list-style: none !important;
}

.links-col ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-blue);
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  top: 1px;
}

.links-col a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.links-col a:hover {
  color: var(--primary-blue);
  padding-left: 3px;
}

/* Contact Column */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4a5568;
}

.contact-list i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-list a {
  color: #4a5568;
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--primary-blue);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(7, 27, 47, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #4a5568;
}

.footer-bottom a {
  font-size: 0.85rem;
  color: #4a5568;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-blue);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-bottom a:hover {
  color: var(--primary-blue);
}

.footer-bottom a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.bottom-links {
  display: flex;
  gap: 1.5rem;
}

.bottom-links a:hover {
  color: var(--accent-cyan);
}

/* =========================================
   FLOATING BUTTONS (Scroll & WhatsApp)
========================================= */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.float-top {
  background-color: var(--primary-blue);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.float-top.show {
  opacity: 1;
  visibility: visible;
}

.float-phone {
  background: linear-gradient(135deg, #0B5ED7 0%, #00C2FF 100%);
  animation: phone-pulse 2s infinite;
}

.float-phone:hover {
  box-shadow: 0 8px 20px rgba(11, 94, 215, 0.4);
}

.float-whatsapp {
  background-color: #25D366;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(11, 94, 215, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-btns {
    bottom: 20px !important;
    right: 20px !important;
    gap: 8px !important;
  }

  .float-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.25rem !important;
  }
}

/* =========================================
   MODERN INTERACTIVE ANIMATIONS
========================================= */
@keyframes shimmer {
  0% {
    left: -150%;
  }

  50% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 10px 25px rgba(11, 94, 215, 0.25);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 15px 35px rgba(11, 94, 215, 0.45);
    transform: scale(1.02);
  }
}

.service-card,
.product-box,
.stat-card,
.industry-card,
.mv-card,
.product-card,
.bento-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.product-box::after,
.industry-card::after,
.mv-card::after,
.product-card::after,
.bento-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 1;
}

.service-card:hover::after,
.product-box:hover::after,
.industry-card:hover::after,
.mv-card:hover::after,
.product-card:hover::after,
.bento-card:hover::after {
  animation: shimmer 2s infinite;
}

/* =========================================
   FEATURED PRODUCTS SECTION
========================================= */
.featured-products-section {
  padding: 80px 20px 0 20px;
  background-color: var(--bg-color);
  position: relative;
}

.featured-products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, var(--primary-blue) 1px, transparent 1px),
    linear-gradient(to bottom, var(--primary-blue) 1px, transparent 1px);
}

.featured-products-section>* {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.25);
  /* Red glowing shadow */
  border-color: #DC2626;
  /* Changed to red hover outline */
}

.product-image-container {
  height: 240px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.2);
}

.product-info-content {
  padding: 18px 20px;
  /* Reduced padding from 24px to decrease height */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.18rem;
  /* Slightly smaller title size */
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 8px;
  /* Reduced margin from 12px */
  line-height: 1.3;
  transition: var(--transition);
}

.product-card:hover .product-info-content h3 {
  color: var(--primary-blue);
}

.product-info-content p {
  font-size: 0.9rem;
  /* Slightly smaller description text */
  color: var(--text-muted);
  line-height: 1.5;
  /* Reduced line-height from 1.65 */
  margin-bottom: 14px;
  /* Reduced margin from 20px */
  flex-grow: 1;
}

.btn-product-detail {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  margin-top: auto;
}

.btn-product-detail i {
  transition: transform 0.3s ease;
}

.btn-product-detail:hover {
  color: var(--primary-hover);
}

.btn-product-detail:hover i {
  transform: translateX(5px);
}

.btn-view-all-products {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 16px 38px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.25);
  transition: var(--transition);
  border: none;
  margin-top: 40px;
}

.btn-view-all-products i {
  transition: transform 0.3s ease;
}

.btn-view-all-products:hover {
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.45);
  transform: translateY(-3px);
}

.btn-view-all-products:hover i {
  transform: translateX(6px);
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background: url('https://images.unsplash.com/photo-1542060748-10c28b629f6f?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 27, 47, 0.92) 0%, rgba(7, 27, 47, 0.75) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-gradient);
  color: var(--white) !important;
  padding: 16px 38px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.25);
  transition: var(--transition);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover {
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.45);
  transform: translateY(-3px);
}

.btn-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

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

  .cta-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* =========================================
   NAVIGATION DROPDOWN STYLES
========================================= */
.custom-nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.custom-nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(7, 27, 47, 0.96);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  min-width: 250px;
  max-height: 480px;
  overflow-y: auto;
  padding: 10px 0;
  margin: 10px 0 0 0;
  list-style: none !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

/* Custom scrollbar for dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 12px 12px 0;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

.custom-nav-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.custom-dropdown-menu li {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.dropdown-header {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  padding: 10px 20px 4px;
  letter-spacing: 0.8px;
  opacity: 0.95;
  display: block;
}

.dropdown-header:not(:first-child) {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.custom-dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 20px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem !important;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-align: left;
}

.custom-dropdown-menu a i {
  width: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.custom-dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white) !important;
  border-left-color: var(--primary-blue);
}

.custom-dropdown-menu a:hover i {
  color: var(--accent-cyan);
  transform: translateX(3px);
}

/* Glow Highlight Animation for Product Cards */
.glow-highlight {
  animation: pulse-glow 2.5s ease-in-out;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
    border-color: rgba(11, 94, 215, 0.1);
  }

  30% {
    box-shadow: 0 0 35px rgba(11, 94, 215, 0.55);
    border-color: var(--primary-blue);
    transform: scale(1.015);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
    border-color: rgba(11, 94, 215, 0.1);
  }
}

/* Mobile Dropdown Layout */
@media (max-width: 1100px) {
  .custom-nav-dropdown {
    width: 100%;
  }

  .custom-nav-dropdown .dropdown-toggle {
    justify-content: center;
  }


  /* Make dropdown headers readable on light bg */
  .dropdown-header {
    color: var(--primary-blue) !important;
    padding: 8px 20px 4px !important;
    font-size: 0.68rem !important;
    text-align: center;
  }

  /* Make dropdown links readable on light bg */
  .custom-dropdown-menu a {
    color: #1E293B !important;
    padding: 8px 28px !important;
    font-size: 0.83rem !important;
    border-left: 3px solid transparent !important;
    justify-content: center !important;
  }

  .custom-dropdown-menu a i {
    color: #64748B !important;
  }

  .custom-dropdown-menu a:hover {
    background-color: rgba(11, 94, 215, 0.06) !important;
    color: var(--primary-blue) !important;
    border-left-color: var(--primary-blue) !important;
  }

  .custom-dropdown-menu a:hover i {
    color: var(--primary-blue) !important;
  }

  /* Dropdown-header separator on mobile */
  .dropdown-header:not(:first-child) {
    border-top: 1px solid rgba(11, 94, 215, 0.1) !important;
    margin-top: 6px !important;
    padding-top: 10px !important;
  }
}

/* Body scroll lock */
.body-scroll-lock {
  overflow: hidden;
}


/* =========================================
   5-STAR PREMIUM CLASSIC HERO OVERLAY SYSTEM
   ========================================= */
.hero-section,
.gallery-hero,
.page-header,
.page-hero {
  min-height: 480px !important;
  height: 70vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 140px 20px 80px 20px !important;
  background-color: transparent !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
  border-bottom: none !important;
}


/* Homepage Hero height is 100vh */
.hero-section {
  height: 100vh !important;
  min-height: 100vh !important;
}

/* Subpage image sliders hidden — using premium static BG */
.gallery-hero .header-bg-slider,
.page-header .header-bg-slider,
.page-hero .header-bg-slider {
  display: none !important;
}

/* About page static hero background image */
.about-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Homepage animated sliders kept but behind BG image */
.hero-section .header-bg-slider {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  opacity: 0 !important;
  /* Hide slider, let premium BG shine */
}


/* Home page video — no overlay */
.hero-section .hero-overlay {
  display: none !important;
}

/* Subpage — premium bottom vignette: image clear at top, dark fade at base */
.gallery-hero .header-overlay,
.page-header .header-overlay,
.page-hero .header-overlay {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background:
    linear-gradient(to bottom,
      rgba(5, 15, 35, 0.15) 0%,
      rgba(5, 15, 35, 0.45) 45%,
      rgba(5, 15, 35, 0.82) 100%) !important;
}

/* Clean, Spacious Center Container */
.hero-section .hero-container,
.gallery-hero .header-container,
.page-header .header-container,
.page-hero .header-container {
  grid-column: auto !important;
  height: auto !important;
  max-width: 1200px !important;
  width: 90% !important;
  padding: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  overflow: visible !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  animation: heroTextFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* Subpage container — clean, no card, no glass */
.gallery-hero .header-container,
.page-header .header-container,
.page-hero .header-container {
  padding: 0 40px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@keyframes heroTextFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* Disable decoration items */
.hero-section .hero-container::after,
.gallery-hero .header-container::after,
.page-header .header-container::after,
.page-hero .header-container::after,
.hero-section .hero-container::before,
.gallery-hero .header-container::before,
.page-header .header-container::before,
.page-hero .header-container::before {
  display: none !important;
}

/* Typography — all hero h1 base */
.hero-section h1,
.gallery-hero h1,
.page-header h1,
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.8rem, 7vw, 5rem) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  margin: 12px 0 18px 0 !important;
  color: #ffffff !important;
  text-align: center !important;
  letter-spacing: -1px !important;
  text-shadow:
    0 2px 40px rgba(0, 0, 0, 0.6),
    0 1px 6px rgba(0, 0, 0, 0.5) !important;
}

/* Subpage h1 accent span — refined electric blue-white gradient */
.gallery-hero h1 span,
.page-header h1 span,
.page-hero h1 span,
.page-header h1 .highlight {
  background: linear-gradient(135deg, #e0f4ff 0%, #38bdf8 40%, #0ea5e9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.45)) !important;
}

/* Homepage H1 — crisp white over the live video */
.hero-section h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45) !important;
  display: block !important;
  letter-spacing: -1.5px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

.hero-gradient-text {
  font-family: 'Playfair Display', Georgia, serif !important;
  /* Explicitly set same font */
  font-style: normal !important;
  /* Not italic */
  background: linear-gradient(135deg, #ffffff 20%, #00C2FF 65%, #0B5ED7 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  filter: drop-shadow(0 0 25px rgba(0, 194, 255, 0.4)) !important;
  font-weight: 900 !important;
}

/* Paragraphs — premium subpage hero */
.hero-section p,
.gallery-hero p,
.page-header p,
.page-hero p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem) !important;
  line-height: 1.8 !important;
  max-width: 640px !important;
  color: rgba(220, 240, 255, 0.85) !important;
  text-align: center !important;
  margin: 0 auto !important;
  font-weight: 300 !important;
  letter-spacing: 0.4px !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5) !important;
}

/* Subtitle — premium accent tag */
.hero-section .subtitle,
.gallery-hero .subtitle,
.page-header .subtitle,
.page-hero .subtitle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #7dd3fc !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  margin: 0 0 4px !important;
  text-shadow: 0 0 20px rgba(125, 211, 252, 0.6) !important;
}

/* Thin accent line flanking the subtitle */
.page-header .subtitle::before,
.page-header .subtitle::after,
.gallery-hero .subtitle::before,
.gallery-hero .subtitle::after,
.page-hero .subtitle::before,
.page-hero .subtitle::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, transparent, #38bdf8) !important;
  border-radius: 2px !important;
}

.page-header .subtitle::after,
.gallery-hero .subtitle::after,
.page-hero .subtitle::after {
  background: linear-gradient(90deg, #38bdf8, transparent) !important;
}

/* Text Content Wrapper */
.hero-section .hero-text-wrapper,
.gallery-hero .hero-content,
.page-header .hero-content,
.page-hero .hero-content {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

/* Breadcrumbs — premium styling */
.breadcrumbs {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: 10 !important;
  margin: 0 0 20px 0 !important;
  text-align: center !important;
  padding: 7px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border-radius: 50px !important;
  background: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  color: rgba(200, 235, 255, 0.95) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5) !important;
}

.breadcrumbs a:hover {
  color: #4dd9ff !important;
}

.breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 300 !important;
}

/* Homepage Hero CTA Button */
.hero-section .know-more-btn {
  background: linear-gradient(135deg, #0B5ED7 0%, #00C2FF 100%) !important;
  color: #ffffff !important;
  padding: 13px 38px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
  display: inline-block !important;
  box-shadow: 0 5px 20px rgba(0, 194, 255, 0.3) !important;
  margin-top: 5px !important;
  text-decoration: none !important;
}

.hero-section .know-more-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(0, 194, 255, 0.5) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .hero-section,
  .gallery-hero,
  .page-header,
  .page-hero {
    min-height: 400px !important;
    height: auto !important;
    padding: 120px 20px 60px 20px !important;
  }
}

/* =========================================
   Local Image Hero Refresh
========================================= */
.hero-section {
  min-height: 100vh;
  padding: 0 0 40px 0 !important;
  background:
    linear-gradient(160deg, rgba(4, 10, 28, 0.82) 0%, rgba(8, 16, 38, 0.80) 50%, rgba(6, 12, 30, 0.85) 100%),
    url('../images/hero_bg_premium.png') center center / cover no-repeat !important;
  isolation: isolate;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle colour glow overlays */
.hero-section::before {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 70% 50% at 15% 25%, rgba(0, 120, 255, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(0, 194, 255, 0.07) 0%, transparent 65%);
  pointer-events: none !important;
  z-index: 0 !important;
}

.hero-section .hero-container {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 100px 20px 0px !important;
  text-align: center !important;
  position: relative;
  z-index: 2;
}

/* Hide old video (in case still in DOM) */
.hero-bg-video {
  display: none !important;
}

.hero-section .hero-overlay {
  display: none !important;
}

/* Disable old ::after if any */
.hero-section::after {
  display: none !important;
}

.hero-section .hero-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  width: min(95%, 1200px) !important;
  max-width: 1200px !important;
  text-align: center !important;
}

/* ---- Hero text styles ---- */
.hero-section .hero-text-wrapper {
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding: 0 4px !important;
}

/* Hero badge */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(0, 122, 255, 0.15) !important;
  border: 1px solid rgba(0, 122, 255, 0.35) !important;
  color: #60a5fa !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
  border-radius: 100px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-top: 20px !important;
  margin-bottom: 15px !important;
  font-family: 'Barlow', sans-serif !important;
  max-width: 100% !important;
  white-space: normal !important;
  text-align: center !important;
}

.hero-section h1 {
  font-size: clamp(1.2rem, 2vw, 2.0rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin: 0 0 5px !important;
  font-family: 'Barlow', sans-serif !important;
  letter-spacing: -0.02em !important;
}

.hero-gradient-text {
  background: linear-gradient(90deg, #38bdf8, #0ea5e9, #2563eb) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-sub {
  font-size: 0.95rem !important;
  color: rgba(200, 215, 240, 0.75) !important;
  margin: 0 auto !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  max-width: 520px !important;
}

/* ---- Hero slider section ---- */
.hero-section .hero-slider-section {
  position: relative !important;
  width: 100% !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 24px 32px !important;
  margin-top: 15px !important;
  border-top: none !important;
  border-bottom: none !important;
  z-index: 10 !important;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}

.hero-section .subtitle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #9ee7ff !important;
  letter-spacing: 0 !important;
  font-size: 0.88rem !important;
  margin-bottom: 18px !important;
}

.hero-section .subtitle::before {
  content: "";
  width: 36px;
  height: 2px;
  background: #ffb74d;
}

.hero-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 600px);
  margin: 0 0 30px;
}

.hero-capability-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(158, 231, 255, 0.18);
  border-radius: 8px;
  color: rgba(238, 247, 255, 0.86);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-capability-list i {
  flex: 0 0 auto;
  width: 18px;
  color: #ffb74d;
  font-size: 0.92rem;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-section .know-more-btn,
.hero-secondary-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 48px;
  padding: 13px 22px !important;
  border-radius: 8px !important;
  font-size: 0.93rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  margin: 0 !important;
}

.hero-section .know-more-btn {
  background: linear-gradient(135deg, #0B5ED7 0%, #00A7D7 100%) !important;
  box-shadow: 0 16px 28px rgba(0, 98, 194, 0.32) !important;
}

.hero-secondary-btn {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-secondary-btn:hover {
  color: #061827 !important;
  background: #ffb74d;
  border-color: #ffb74d;
  transform: translateY(-3px);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
}

.hero-proof-grid div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
  letter-spacing: 0;
}

.hero-proof-grid strong {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-proof-grid span {
  color: rgba(238, 247, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-visual-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 14px;
  align-items: stretch;
  min-height: 420px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 18, 32, 0.44);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.hero-main-image,
.hero-image-pair {
  min-width: 0;
}

.hero-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0b2032;
}

.hero-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 18, 32, 0.88) 100%);
  pointer-events: none;
}

.hero-main-image img,
.hero-image-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-image img {
  aspect-ratio: 1 / 1.25;
}

.hero-main-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-image-pair {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.hero-image-pair img {
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-spec-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.hero-spec-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #061827;
  background: #ffb74d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-hero,
.page-header,
.page-hero {
  min-height: clamp(400px, 54vh, 500px) !important;
  height: auto !important;
  padding: 132px 24px 72px !important;
  background-color: #061827 !important;
  background-image: none !important;
  isolation: isolate;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(6, 24, 39, 0.84), rgba(6, 24, 39, 0.58)),
    url('/assets/images/headquarters.png') center/cover no-repeat !important;
}

.gallery-hero .header-bg-slider,
.page-header .header-bg-slider,
.page-hero .header-bg-slider {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.gallery-hero .header-slide,
.page-header .header-slide,
.page-hero .header-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 0 !important;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.05) brightness(0.86);
  transition: opacity 1.1s ease, transform 4s ease !important;
}

.gallery-hero .header-slide.active,
.page-header .header-slide.active,
.page-hero .header-slide.active {
  opacity: 1 !important;
  transform: scale(1.08);
}

.hero-section .hero-overlay,
.gallery-hero .header-overlay,
.page-header .header-overlay,
.page-hero .header-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 32, 0.9) 0%, rgba(4, 18, 32, 0.68) 48%, rgba(4, 18, 32, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 18, 32, 0.16) 0%, rgba(4, 18, 32, 0.88) 100%) !important;
}

.gallery-hero::before,
.page-header::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.45;
  pointer-events: none;
}

.gallery-hero::after,
.page-header::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(44%, 520px);
  height: 100%;
  z-index: 2;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(135deg, rgba(255, 183, 77, 0.2), rgba(0, 194, 255, 0.08));
  pointer-events: none;
}

.hero-section .hero-container,
.gallery-hero .header-container,
.page-header .header-container,
.page-hero .header-container {
  z-index: 3 !important;
}

.gallery-hero .header-container,
.page-header .header-container,
.page-hero .header-container {
  max-width: 980px !important;
}

.gallery-hero h1,
.page-header h1,
.page-hero h1 {
  font-size: 3.2rem !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  margin: 12px 0 16px !important;
}

.gallery-hero p,
.page-header p,
.page-hero p {
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
  max-width: 700px !important;
  margin-bottom: 0 !important;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
  letter-spacing: 0 !important;
}

@media (max-width: 1080px) {
  .hero-section .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr) !important;
    gap: 34px !important;
  }

  .hero-section h1 {
    font-size: 3rem !important;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto !important;
    padding: 100px 16px 50px !important;
  }

  .hero-section .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .hero-visual-panel {
    min-height: 360px;
    width: min(100%, 560px);
  }

  .gallery-hero,
  .page-header,
  .page-hero {
    min-height: 370px !important;
    padding: 120px 20px 60px !important;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 90px 14px 40px !important;
    min-height: auto !important;
  }

  .hero-section .hero-container {
    padding: 0 !important;
  }

  .hero-section h1 {
    font-size: 1.85rem !important;
  }

  .hero-section p {
    font-size: 0.95rem !important;
  }

  .hero-capability-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-section .know-more-btn,
  .hero-secondary-btn {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-pair {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
  }

  .hero-main-image img {
    aspect-ratio: 16 / 11;
  }

  .gallery-hero h1,
  .page-header h1,
  .page-hero h1 {
    font-size: 2.25rem !important;
  }

  .gallery-hero p,
  .page-header p,
  .page-hero p {
    font-size: 0.98rem !important;
  }
}

/* Reusable inner-page hero component */
.page-header.inner-page-hero,
.gallery-hero.inner-page-hero,
.page-hero.inner-page-hero {
  min-height: clamp(340px, 42vh, 430px) !important;
  height: auto !important;
  padding: 126px 24px 70px !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  color: #102437 !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 194, 255, 0.22) 0, transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(11, 94, 215, 0.13) 0, transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 38%, #dff5ff 100%) !important;
}

.inner-page-hero .header-bg-slider,
.inner-page-hero .header-slide,
.inner-page-hero .about-hero-bg {
  display: none !important;
}

.inner-page-hero .header-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(11, 94, 215, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 194, 255, 0.08) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  opacity: 0.45 !important;
  pointer-events: none !important;
}

.page-header.inner-page-hero::before,
.gallery-hero.inner-page-hero::before,
.page-hero.inner-page-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(11, 94, 215, 0.06) 48% 62%, transparent 62%),
    linear-gradient(135deg, transparent 0 66%, rgba(0, 194, 255, 0.13) 66% 79%, transparent 79%) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.page-header.inner-page-hero::after,
.gallery-hero.inner-page-hero::after,
.page-hero.inner-page-hero::after {
  content: "" !important;
  position: absolute !important;
  right: min(7vw, 120px) !important;
  bottom: -130px !important;
  width: min(38vw, 560px) !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  border: 1px solid rgba(11, 94, 215, 0.12) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 48%, rgba(0, 194, 255, 0.08) 49% 50%, transparent 51%) !important;
  clip-path: none !important;
  opacity: 0.8 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.inner-page-hero .header-container,
.inner-page-hero .hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 960px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.inner-page-hero .breadcrumbs {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  width: auto !important;
  margin: 0 0 20px !important;
  padding: 10px 22px !important;
  border: 1px solid rgba(11, 94, 215, 0.14) !important;
  border-radius: 8px !important;
  color: #314860 !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow: 0 12px 30px rgba(11, 94, 215, 0.08) !important;
  backdrop-filter: blur(12px);
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.inner-page-hero .breadcrumbs a,
.inner-page-hero .breadcrumbs span {
  color: #314860 !important;
}

.inner-page-hero .breadcrumbs a {
  text-decoration: none !important;
}

.inner-page-hero .breadcrumbs a:hover {
  color: var(--primary-blue) !important;
}

.inner-page-hero .breadcrumbs .separator {
  margin: 0 !important;
  color: rgba(49, 72, 96, 0.38) !important;
}

.page-header.inner-page-hero h1,
.gallery-hero.inner-page-hero h1,
.page-hero.inner-page-hero h1 {
  color: #102437 !important;
  -webkit-text-fill-color: #102437 !important;
  background: none !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: none !important;
  margin: 14px 0 16px !important;
}

.inner-page-hero h1 span {
  color: var(--primary-blue) !important;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.page-header.inner-page-hero p,
.gallery-hero.inner-page-hero p,
.page-hero.inner-page-hero p {
  max-width: 720px !important;
  color: #4e6478 !important;
  font-size: clamp(1rem, 1.25vw, 1.16rem) !important;
  line-height: 1.65 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}

@media (max-width: 640px) {

  .page-header.inner-page-hero,
  .gallery-hero.inner-page-hero,
  .page-hero.inner-page-hero {
    min-height: 330px !important;
    padding: 112px 18px 56px !important;
  }

  .inner-page-hero .breadcrumbs {
    max-width: calc(100% - 32px) !important;
    gap: 10px !important;
    margin-bottom: 18px !important;
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }
}



/* =========================================
   CONTACT FORM - PREMIUM HOVER EFFECTS
========================================= */
.contact-form-panel {
  position: relative;
  isolation: isolate;
  box-shadow: 0 15px 35px rgba(7, 27, 47, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  /* Contain the shimmer effect */
}

/* Glass reflection effect */
.contact-form-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: shimmer-reflection 10s infinite;
  z-index: 1;
  /* Positioned above background but below content */
}

.contact-form-panel:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #F8FCFF 0%, #EAF7FF 50%, #D9F2FF 100%);
  border-color: #8ED8FF;
  box-shadow: 0 20px 40px -10px rgba(142, 216, 255, 0.35), 0 0 20px rgba(255, 255, 255, 0.8);
}

/* --- Hero Bottom Gallery Slider Section --- */
.hero-slider-section {
  position: relative !important;
  width: 100% !important;
  background: transparent !important;
  padding: 0 24px 32px !important;
  margin-top: 15px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.hero-slider-container {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  user-select: none;
  padding: 0 60px !important;
  box-sizing: border-box !important;
}

.hero-slider-wrapper {
  overflow: hidden !important;
  width: 100% !important;
  flex: 1 !important;
  border-radius: 20px !important;
  padding: 8px 0 !important;
  position: relative !important;
}

.hero-slider-track {
  display: flex !important;
  gap: 20px !important;
  will-change: transform;
  width: max-content !important;
}

.hero-slider-card {
  flex: 0 0 320px !important;
  width: 320px !important;
  height: 350px !important;
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55) !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
  cursor: pointer;
}

.hero-slider-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 40px rgba(0, 194, 255, 0.35) !important;
  border-color: rgba(0, 194, 255, 0.4) !important;
}

.slider-card-img-wrap {
  width: 100% !important;
  height: calc(100% - 80px) !important;
  overflow: hidden !important;
  border-radius: 18px 18px 0 0 !important;
  background: linear-gradient(145deg, #e8ecf2 0%, #f2f5f8 60%, #dde3ec 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px !important;
}

.slider-card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transition: transform 0.5s ease !important;
  display: block !important;
}

.hero-slider-card:hover .slider-card-img-wrap img {
  transform: scale(1.06) !important;
}

/* Overlay — always visible solid dark panel at bottom */
.slider-card-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  background: linear-gradient(135deg, #0d1b3e 0%, #112244 100%) !important;
  padding: 8px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 6px !important;
  border-top: 2px solid rgba(56, 189, 248, 0.5) !important;
  z-index: 5 !important;
  border-radius: 0 0 18px 18px !important;
  transition: background 0.3s ease !important;
  box-sizing: border-box !important;
}

.hero-slider-card:hover .slider-card-overlay {
  background: linear-gradient(135deg, #0f2050 0%, #163060 100%) !important;
  border-top-color: rgba(56, 189, 248, 0.7) !important;
}

.slider-card-title {
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  width: 100% !important;
  text-align: center !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-slider-card:hover .slider-card-title {
  -webkit-line-clamp: unset !important;
}

/* View Detail Button — always visible */
.btn-quote {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: linear-gradient(90deg, #0ea5e9, #2563eb) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 4px 14px !important;
  font-size: 0.70rem !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.5) !important;
  font-family: 'Poppins', sans-serif !important;
  white-space: nowrap !important;
  letter-spacing: 0.02em !important;
}

.btn-quote::after {
  content: '→' !important;
  font-size: 0.75rem !important;
}

.hero-slider-card:hover .btn-quote,
.btn-quote:hover {
  background: linear-gradient(90deg, #38bdf8, #3b82f6) !important;
  transform: translateX(3px) !important;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.65) !important;
}

@keyframes sliderFadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/* Navigation Arrow Buttons */
.slider-arrow-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  color: #0B5ED7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  font-size: 1.1rem !important;
  z-index: 20 !important;
  pointer-events: all !important;
  flex-shrink: 0 !important;
}

.slider-arrow-btn.prev-btn {
  left: 8px !important;
}

.slider-arrow-btn.next-btn {
  right: 8px !important;
}

.slider-arrow-btn:hover {
  background: #0B5ED7 !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.slider-arrow-btn:active {
  transform: scale(0.95) !important;
}

/* Responsiveness settings */
@media (max-width: 1200px) {
  .hero-slider-card {
    flex: 0 0 300px !important;
    width: 300px !important;
    height: 330px !important;
  }
}

@media (max-width: 992px) {
  .hero-slider-card {
    flex: 0 0 260px !important;
    width: 260px !important;
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    padding: 10px 0 28px !important;
    margin-top: 10px !important;
  }

  .hero-slider-container {
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .hero-slider-wrapper {
    width: 100% !important;
    padding: 8px 0 !important;
  }

  .hero-slider-track {
    padding: 0 20px !important;
    gap: 16px !important;
  }

  .hero-slider-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    height: 280px !important;
    max-width: 280px !important;
  }

  .slider-arrow-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
    background: rgba(255, 255, 255, 0.85) !important;
  }

  .slider-arrow-btn.prev-btn {
    left: 8px !important;
  }

  .slider-arrow-btn.next-btn {
    right: 8px !important;
  }

  .hero-badge {
    font-size: 0.68rem !important;
    padding: 5px 12px !important;
  }

  .hero-sub {
    font-size: 0.88rem !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }
}

/* =============================================
   HERO — MOBILE-FIRST OVERRIDES (last in cascade)
   ============================================= */
@media (max-width: 640px) {
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    padding: 0 0 30px 0 !important;
  }

  .hero-section .hero-container {
    padding: 110px 14px 0 !important;
  }

  .hero-section h1 {
    font-size: 1.6rem !important;
    line-height: 1.22 !important;
  }

  .hero-sub {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    padding: 0 0 24px 0 !important;
  }

  .hero-section .hero-container {
    padding: 104px 12px 0 !important;
  }

  .hero-section h1 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub {
    font-size: 0.82rem !important;
    padding: 0 4px !important;
    max-width: 310px !important;
    margin: 0 auto !important;
    line-height: 1.45 !important;
  }

  .hero-badge {
    font-size: 0.58rem !important;
    padding: 4px 8px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
  }

  .hero-slider-section {
    padding: 8px 0 22px !important;
    margin-top: 8px !important;
  }

  .hero-slider-container {
    width: 100% !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .hero-slider-track {
    padding: 0 15px !important;
    gap: 12px !important;
  }

  .hero-slider-card {
    flex: 0 0 260px !important;
    width: 260px !important;
    height: 260px !important;
    max-width: 260px !important;
  }

  .slider-card-img-wrap {
    height: calc(100% - 74px) !important;
  }

  .slider-card-overlay {
    height: 74px !important;
  }

  .slider-card-title {
    font-size: 0.75rem !important;
  }

  .btn-quote {
    font-size: 0.65rem !important;
    padding: 3px 10px !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    padding: 0 0 20px 0 !important;
  }

  .hero-section .hero-container {
    padding: 98px 10px 0 !important;
  }

  .hero-section h1 {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub {
    font-size: 0.8rem !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .hero-badge {
    font-size: 0.55rem !important;
    padding: 4px 6px !important;
  }

  .hero-slider-track {
    padding: 0 15px !important;
    gap: 8px !important;
  }

  .hero-slider-card {
    flex: 0 0 240px !important;
    width: 240px !important;
    height: 245px !important;
    max-width: 240px !important;
  }

  .slider-arrow-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  .slider-arrow-btn.prev-btn {
    left: 5px !important;
  }

  .slider-arrow-btn.next-btn {
    right: 5px !important;
  }
}

@media (max-width: 380px) {
  .hero-section .hero-container {
    padding: 94px 8px 0 !important;
  }

  .hero-section h1 {
    font-size: 1.25rem !important;
  }

  .hero-sub {
    font-size: 0.76rem !important;
    max-width: 250px !important;
    margin: 0 auto !important;
  }

  .hero-badge {
    font-size: 0.52rem !important;
  }

  .hero-slider-track {
    padding: 0 15px !important;
    gap: 6px !important;
  }

  .hero-slider-card {
    flex: 0 0 220px !important;
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
  }
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS & VISIBILITY FIXES
   ========================================================= */
@media (max-width: 768px) {
  /* 1. Force reveal animations to be immediately visible on mobile */
  .reveal, 
  .reveal-up,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    transition: none !important;
  }

  /* 2. Global Container & Overflow */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* 3. Header & Navbar Mobile Adjustments */
  .nav-brand {
    max-width: 70% !important;
  }
  .nav-logo-img {
    height: 48px !important;
  }
  .brand-title {
    font-size: 1.1rem !important;
  }
  .brand-subtitle {
    font-size: 0.6rem !important;
  }

  /* 4. Hero Slider Card Fix - Keep image & details visible */
  .hero-slider-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    height: 290px !important;
    max-width: 280px !important;
  }
  .slider-card-img-wrap {
    height: calc(100% - 75px) !important;
  }
  .slider-card-overlay {
    height: 75px !important;
  }

  /* 5. Products Grid */
  .products-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* 6. Footer Grid Fix */
  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
  }
  .footer-col.links-col > div {
    column-count: 1 !important;
  }
  .text-center-heading {
    text-align: left !important;
  }
  .text-center-heading::after {
    left: 0 !important;
    transform: none !important;
  }

  /* 7. Floating Action Buttons */
  .floating-btns {
    right: 15px !important;
    bottom: 15px !important;
    z-index: 9999 !important;
  }
}

@media (max-width: 480px) {
  .hero-slider-card {
    flex: 0 0 240px !important;
    width: 240px !important;
    height: 260px !important;
    max-width: 240px !important;
  }
}