/* ==========================================================================
   INDEX (STRUCTURE OVERVIEW)
   ==========================================================================
   1. Imports & Base Setup
   2. Typography
   3. Global Utility Classes
   4. Navigation (Top Bar + Header + Menu)
   5. Hero Section / Slider
   6. Feature Section
   7. Dropdown Menu
   8. About Page Sections
   9. Mission / Vision / Excellence
   10. Team Section
   11. Products Section
   12. Choose Us Section
   13. Process Section
   14. Blog Section
   15. Advertisement Section
   16. Product Page Layout
   17. Footer
   18. Responsive Media Queries
   ========================================================================== */

/* ==========================================================================
   1. Imports & Base Setup
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Nata+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --blue-brand: #0f1341;
  --teal-accent: #46c3e8;
  --text-dark: #333333;

  /* About Page Specific */
  --navy-blue: #003998;
  --navy-dark: #002a70;
  --cyan-teal: #00bed3;
  --cyan-light: #e0faff;
  --soft-grey: #f4f7fa;
  --dark-grey: #555555;
  --white: #ffffff;

  /* Product Page Specific */
  --primary-blue: #003b95;
  --light-bg: #f8f9fa;
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  --border-color: #e2e8f0;
  --text-muted: #718096;
}

body {
  font-family: "Poppins", sans-serif !important;
}

/* Base Animations (Consolidated) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes dotPulse {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

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

@keyframes pulsePain {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

@keyframes floatGel {
  0% {
    transform: translateY(0px);
  }

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

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

/* ==========================================================================
   2. Typography
   ========================================================================== */

.h1 {
  font-family: "Nata Sans", sans-serif;
  font-size: 48px !important;
  font-weight: 200 !important;
}

.h2 {
  font-family: "Nata Sans", sans-serif;
  font-size: 40px !important;
  /* Increased for better visibility */
  font-weight: 300;
  position: relative;
  z-index: 10;
}

.h3 {
  font-family: "Nata Sans", sans-serif;
  font-size: 22px !important;
}

/* ==========================================================================
   3. Global Utility Classes
   ========================================================================== */

.text-warning {
  color: #ede861 !important;
}

.text-muted {
  color: #bcbcbc !important;
}

.text-success {
  color: #00377c !important;
}

.text-light {
  color: #cfd6e1 !important;
}

.text-teal {
  color: var(--teal-accent) !important;
}

.dark-blue-text {
  color: var(--blue-brand) !important;
  position: relative;
  z-index: 10;
}

.bg-dark {
  background-color: #212934 !important;
}

.bg-light {
  background-color: #e9eef5 !important;
}

.bg-black {
  background-color: #1d242d !important;
}

.bg-success {
  background-color: #00377c !important;
}

.bg-teal {
  background-color: var(--teal-accent) !important;
}

.bg-purple {
  background-color: #8e24aa !important;
}

.bg-darkblue {
  background-color: #0b5394 !important;
}

.btn-success {
  background-color: #00377c !important;
  border-color: #00377c !important;
}

.pagination .page-link:hover,
.pagination .page-link.active {
  background-color: #00377c !important;
  color: #ffffff !important;
}

.heading-line {
  width: 40px;
  height: 3px;
  background-color: var(--teal-accent);
}

.form-control {
  border: 1px solid #e8e8e8;
}

/* ==========================================================================
   4. Navigation (Top Bar + Header + Menu)
   ========================================================================== */

#templatemo_nav_top {
  min-height: 40px;
}

#templatemo_nav_top * {
  font-size: 0.9em !important;
}

.top-bar-area {
  background-color: var(--blue-brand);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 0;
}

.top-bar-area p {
  margin: 0;
  line-height: normal;
}

.top-bar-area span.fa-phone {
  color: var(--teal-accent);
  margin: 0 5px 0 10px;
}

.top-bar-area .social-links a {
  color: #ffffff;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-area .social-links a:hover {
  color: var(--teal-accent);
}

.header-area {
  background: #ffffff;
  transition: all 0.3s ease;
  padding: 15px 0;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.univentis-logo {
  max-height: 40px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-area .navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--blue-brand) !important;
  font-size: 15px;
  padding: 10px 18px !important;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}

/* Big to Small Scroll Animation (Desktop Only) */
@media (min-width: 992px) {
  .header-area {
    padding: 25px 0;
  }

  .univentis-logo {
    max-height: 48px;
  }

  .header-area .navbar-nav .nav-link {
    padding: 20px 18px !important;
  }

  .header-area.nav-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
  }

  .nav-scrolled .univentis-logo {
    max-height: 38px;
  }

  .header-area.nav-scrolled .navbar-nav .nav-link {
    padding: 15px 18px !important;
  }
}

.header-area .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: var(--teal-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-area .navbar-nav .nav-link:hover::after,
.header-area .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile Toggler Custom Icon */
.navbar-toggler {
  border: none;
  padding: 10px;
  outline: none !important;
  box-shadow: none !important;
}

.toggler-icon {
  width: 26px;
  height: 2px;
  background-color: var(--blue-brand);
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.toggler-icon::before,
.toggler-icon::after {
  content: "";
  width: 26px;
  height: 2px;
  background-color: var(--blue-brand);
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.toggler-icon::before {
  top: -8px;
}

.toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 991px) {
  .header-area .navbar-collapse,
  .header-area .navbar-collapse.collapsing {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh !important;
    background: #ffffff;
    z-index: 9999; /* Extremely high to stay above everything */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    pointer-events: none; /* Block clicks when hidden */
    overflow-y: auto;
  }

  .header-area .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto; /* Enable clicks when shown */
  }

  .header-area .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .header-area .navbar-nav .nav-link {
    padding: 18px 0 !important;
    font-size: 15px;
    font-weight: 700;
    color: #0f1341 !important;
    border-bottom: 1px solid #f1f4f9;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 10000;
  }

  .header-area .navbar-nav .nav-link:hover {
    color: #46c3e8 !important;
    padding-left: 10px !important;
  }

  .header-area .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 19, 65, 0.6);
    z-index: 9998; /* Just below the navbar-collapse */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
  }

  .navbar-backdrop.show {
    opacity: 1;
    visibility: visible;
  }
}

.logo {
  font-weight: 500 !important;
}

#templatemo_main_nav a {
  color: #212934;
}

#templatemo_main_nav a:hover {
  color: #18b2ed;
}

#templatemo_main_nav .navbar .nav-icon {
  margin-right: 20px;
}

/* ==========================================================================
   5. Hero Section / Slider
   ========================================================================== */

#template-mo-zay-hero-carousel {
  background: #efefef !important;
}

#template-mo-zay-hero-carousel .carousel-indicators li {
  margin-top: -50px;
  background-color: #18b2ed;
}

#template-mo-zay-hero-carousel .carousel-control-next i,
#template-mo-zay-hero-carousel .carousel-control-prev i {
  color: #18b2ed !important;
  font-size: 2.8em !important;
}

.hero-slider .carousel-item {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 750px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: opacity 1.5s ease-in-out !important;
}

.hero-slider .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: left;
  padding: 0;
  left: 8%;
  width: 100%;
  max-width: 550px;
}

.hero-slider .caption-right {
  left: auto;
  right: 8%;
}

.hero-slider .caption-title {
  font-size: clamp(32px, 3.5vw, 64px);
  font-weight: 300;
  color: var(--blue-brand) !important;
  margin-bottom: 10px;
  line-height: 1.1;
}

.hero-slider .caption-title b {
  font-weight: 800;
  color: var(--blue-brand) !important;
  display: block;
}

.hero-slider .caption-divider {
  border-top: 1px solid #dcdcdc;
  width: 100%;
  max-width: 450px;
  margin: 25px 0;
  opacity: 1;
}

.hero-slider .caption-subtitle {
  color: #555555;
  font-size: clamp(14px, 1.15vw, 20px);
  margin-bottom: 30px;
  max-width: 500px;
  font-weight: 400;
}

.btn-teal {
  background-color: var(--teal-accent);
  color: #fff;
  font-weight: 700;
  padding: 14px 35px;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  border: none;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.btn-teal:hover {
  background-color: var(--blue-brand);
  color: #fff;
}

/* Custom Arrows */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  opacity: 1;
  width: 60px;
}

.slider-arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #777;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-slider .carousel-control-prev:hover .slider-arrow-box,
.hero-slider .carousel-control-next:hover .slider-arrow-box {
  color: var(--teal-accent);
  background-color: #ffffff;
}

/* ==========================================================================
   6. Feature Section
   ========================================================================== */

.features-section {
  position: relative;
  margin-top: -45px;
  z-index: 10;
}

.feature-card {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f4f4f4;
  border-radius: 4px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon i {
  font-size: 38px;
  color: var(--teal-accent);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--blue-brand);
}

.feature-content h4 {
  color: var(--blue-brand);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.feature-content p {
  color: var(--teal-accent);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

/* ==========================================================================
   7. Dropdown Menu
   ========================================================================== */

.header-area .dropdown-menu {
  border-radius: 8px;
  margin-top: 0;
  padding: 10px 0;
  min-width: 200px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(15, 19, 65, 0.1) !important;
  animation: fadeInDropdown 0.3s ease;
}

.header-area .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 20px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.header-area .dropdown-item:hover {
  background-color: var(--teal-accent);
  color: #ffffff !important;
  padding-left: 25px;
}

.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (min-width: 992px) {
  .header-area .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: -5px;
  }
}

/* ==========================================================================
   8. About Page Sections
   ========================================================================== */

.about-hero-section {
  padding: 120px 0 100px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 190, 211, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero-title {
  color: var(--navy-blue);
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.about-hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.about-hero-map-wrapper {
  position: relative;
  width: 130%;
  margin-left: -15%;
  margin-top: 20px;
  filter: drop-shadow(0 30px 60px rgba(0, 57, 152, 0.2));
  animation: float 6s ease-in-out infinite;
  z-index: 5;
}

.world-map-svg path {
  fill: var(--navy-blue);
  stroke: #ffffff;
  stroke-width: 0.5px;
  transition: fill 0.3s ease;
}

.world-map-svg path:hover {
  fill: var(--cyan-teal);
}

.location-indicator {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 55%;
  left: 71%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--cyan-teal);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 15px var(--cyan-teal);
  animation: blink 0.8s infinite;
}

.pulse {
  position: absolute;
  width: 300%;
  height: 300%;
  border: 3px solid var(--cyan-teal);
  border-radius: 50%;
  top: -100%;
  left: -100%;
  animation: dotPulse 2s infinite ease-out;
  opacity: 0;
}

.india-tooltip {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 57, 152, 0.95);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.india-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: rgba(0, 57, 152, 0.95) transparent transparent transparent;
}

.location-indicator:hover .india-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.india-tooltip h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--cyan-teal);
}

.india-tooltip p {
  margin-bottom: 0;
  opacity: 0.9;
  font-size: 0.75rem;
}

/* ==========================================================================
   9. Mission / Vision / Excellence
   ========================================================================== */

.mission-vision-section {
  padding: 120px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.focus-graphic-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.focus-image-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid var(--cyan-teal);
  padding: 10px;
  position: relative;
}

.focus-image-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1.1);
}

.focus-image-circle::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 1px dashed rgba(0, 190, 211, 0.4);
  border-radius: 50%;
}

.focus-text {
  font-size: 5rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 15px;
  margin-top: 30px;
  text-transform: uppercase;
  position: relative;
}

.vm-content-box {
  padding-left: 50px;
}

.vm-item {
  margin-bottom: 50px;
}

.vm-item h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.vm-item h2 i {
  color: var(--cyan-teal);
  font-size: 2rem;
  opacity: 0.8;
}

.vm-item h2 i.fa-eye {
  animation: blink 1.2s infinite;
}

.mv-card {
  background: #fff;
  padding: 60px 45px;
  height: 100%;
  border: none;
  border-bottom: 6px solid var(--navy-blue);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.mv-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(0, 57, 152, 0.1);
}

.mv-card.vision {
  margin-top: 30px;
  border-bottom-color: var(--cyan-teal);
}

.mv-card.mission {
  margin-top: -30px;
}

.mv-icon {
  font-size: 3rem;
  color: var(--navy-blue);
  margin-bottom: 25px;
}

.vision .mv-icon {
  color: var(--cyan-teal);
}

.mv-title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--navy-blue);
}

.excellence-section {
  padding: 100px 0;
}

.section-subtitle {
  color: var(--cyan-teal);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 15px;
}

.section-main-title {
  color: var(--navy-blue);
  font-weight: 800;
  font-size: 2.8rem;
}

.excellence-list-item {
  display: flex;
  margin-bottom: 35px;
}

.excel-icon-box {
  width: 60px;
  height: 60px;
  background: #eef4ff;
  color: var(--navy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.excel-text h4 {
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 8px;
}

.excel-text p {
  font-size: 1.1rem;
  color: var(--dark-grey);
  line-height: 1.7;
}

.overlap-box.flush {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  background: #ffffff;
  padding: 35px !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
}

.overlap-box.flush p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.compliance-badges {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.badge-item {
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: var(--cyan-teal);
  color: var(--cyan-teal);
}

.facility-img-full {
  width: 80%;
  border-radius: 0;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: #0f1341;
  padding: 8px 10px;
}

.stat-number {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
  color: #0f1341 !important;
}

.stat-label {
  color: #555555 !important;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 1;
  font-weight: 600;
}

.about-stats-area {
  background: #e9eef5;
  padding: 20px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(15, 19, 65, 0.04);
}

/* ==========================================================================
   10. Team Section
   ========================================================================== */

.team-section {
  padding: 100px 0;
  background-color: var(--soft-grey);
}

.team-card {
  background: #fff;
  padding: 0;
  overflow: hidden;
  margin-bottom: 40px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 57, 152, 0.1);
}

.team-img-box {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f0f0f0;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-box img {
  transform: scale(1.1);
}

.team-info {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  position: relative;
  background: #fff;
}

.team-info::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--navy-blue);
  transition: width 0.3s ease;
}

.team-card:hover .team-info::before {
  width: 100%;
}

.team-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-blue);
  margin-bottom: 5px;
}

.team-designation {
  font-size: 0.85rem;
  color: var(--cyan-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   11. Products Section
   ========================================================================== */

.products-section {
  background-color: #f4f6f9;
  padding-top: 100px !important;
  /* Increased top spacing */
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 6px 20px;
  background-color: #fff;
  border-radius: 20px;
  font-size: 18px;
  /* Increased from 14px */
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  color: #555;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--blue-brand);
  color: #fff;
}

.product-card-ui {
  background: #fff;
  padding: 0;
  text-align: center;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eef1f6;
  overflow: hidden;
  position: relative;
}

.product-card-ui::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-accent), var(--primary-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-ui:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 59, 149, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

.product-card-ui:hover::after {
  transform: scaleX(1);
}

/* Card Header */
.product-card-header {
  padding: 22px 20px 0;
}

.product-title-top {
  font-weight: 500;
  color: var(--blue-brand);
  margin-top: 28px;
  /* Increased top margin */
  margin-bottom: 14px;
  font-size: 22px;
  /* Increased from 16px */
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.product-title-divider {
  width: 50px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--teal-accent), rgba(70, 195, 232, 0.3));
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
  z-index: 10;
}

.product-card-ui:hover .product-title-divider {
  width: 80px;
}

/* Image Box */
.product-img-box {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 250px;
  padding: 25px 20px;
  background: #ffffff;
  position: relative;
}

.product-img-box::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 195, 232, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.product-img-box img {
  max-height: 220px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: none;
  transform: scale(1.3);
}

.product-card-ui:hover .product-img-box img {
  transform: scale(1.4);
}

/* Card Footer */
.product-footer {
  border-top: 1px solid #eef1f6;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  background: #ffffff;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.product-footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.product-footer-label {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  width: 100%;
  text-align: center;
  border-bottom: 1.5px solid #333;
  padding-bottom: 2px;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.product-footer-value {
  font-size: 14px;
  font-weight: 500;
  color: #292929;
  line-height: 1.2;
}

.product-footer-value.product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-brand);
}

.product-footer-divider {
  display: none;
}

/* Remove old footer classes */
.product-footer .price {
  font-weight: 800;
  color: #111;
  font-size: 18px;
}

.product-footer .view-details {
  color: #03818a;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.product-footer .view-details:hover {
  color: var(--teal-accent);
}

.btn-blue-pill {
  background-color: #0b5394;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-blue-pill:hover {
  background-color: var(--blue-brand);
  color: #fff;
}

.product-wap {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.product-wap .product-color-dot.color-dot-red {
  background: #f71515;
}

.product-wap .product-color-dot.color-dot-blue {
  background: #6db4fe;
}

.product-wap .product-color-dot.color-dot-black {
  background: #000000;
}

.product-wap .product-color-dot.color-dot-light {
  background: #e0e0e0;
}

.product-wap .product-color-dot.color-dot-green {
  background: #18b2ed;
}

.card.product-wap .card .product-overlay {
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.card.product-wap:hover .card .product-overlay {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   12. Choose Us Section
   ========================================================================== */

.choose-us-section {
  background-color: #fcfdfe;
  position: relative;
  overflow: hidden;
}

.choose-card.modern {
  background: #ffffff;
  padding: 35px 25px;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.choose-card.modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(70, 195, 232, 0.05) 0%, rgba(15, 19, 65, 0.02) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.choose-card.modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(15, 19, 65, 0.07);
  border-color: transparent;
}

.choose-card.modern:hover::before {
  opacity: 1;
}

.icon-wrapper-modern {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.choose-card.modern:hover .icon-wrapper-modern {
  transform: scale(1.1) rotate(5deg);
}

.bg-teal-light {
  background-color: rgba(70, 195, 232, 0.12);
}

.bg-purple-light {
  background-color: rgba(142, 36, 170, 0.12);
}

.bg-blue-light {
  background-color: rgba(15, 19, 65, 0.08);
}

.bg-orange-light {
  background-color: rgba(243, 156, 18, 0.12);
}

.text-purple {
  color: #8e24aa !important;
}

.text-orange {
  color: #f39c12 !important;
}

.choose-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1341;
  margin-bottom: 12px;
  line-height: 1.3;
}

.choose-text {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   13. Process Section
   ========================================================================== */

.process-section {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  padding: 130px 0 100px 0;
  position: relative;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  margin-top: 70px;
  padding-bottom: 40px;
  height: calc(100% - 70px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.process-img-wrapper {
  width: 140px;
  height: 140px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  padding: 6px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.process-card:hover .process-img-wrapper {
  transform: translateX(-50%) scale(1.05);
}

.process-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.process-header {
  width: 85%;
  margin: 95px auto 25px auto;
  padding: 18px 15px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  position: relative;
}

.process-header h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-family: "Poppins", sans-serif;
}

.process-body {
  padding: 0 35px;
}

.process-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

.brand-img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: 0.5s;
}

.brand-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   14. Blog Section
   ========================================================================== */

.blog-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6fc 80%);
}

.blog-card-custom {
  background-color: #f7f9fd;
  border-radius: 0px;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
}

.blog-card-custom img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.blog-card-body {
  padding: 35px 30px;
}

.blog-date {
  color: #3ebff2;
  font-size: 13.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 21px;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.35;
  font-family: "Poppins", sans-serif;
}

.blog-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.btn-read {
  background-color: #3ebff2;
  color: #fff;
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
  transition: background-color 0.3s;
}

.blog-btn:hover .btn-read {
  background-color: #0f1341;
}

.btn-more {
  color: #3ebff2;
  margin-left: 6px;
  transition: color 0.3s;
}

.blog-btn:hover .btn-more {
  color: #0f1341;
}

/* ==========================================================================
   15. Advertisement Section
   ========================================================================== */

.ventoran-ad-section {
  background-color: #f7fcff;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(224, 242, 254, 0.75) 100%),
    url("../img/UML_lab_image02.jpg");
  background-position: center, right center;
  background-size: cover, 40% auto;
  background-repeat: no-repeat, no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.ventoran-content {
  padding-right: 30px;
}

.ventoran-headline {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-brand, #0f1341);
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.ventoran-headline .text-red {
  color: #e53935;
  font-style: italic;
  font-weight: 900;
}

.ventoran-subhead {
  font-size: 22px;
  font-weight: 600;
  color: #3ebff2;
  margin-bottom: 20px;
}

.ventoran-ingredients {
  font-size: 14px;
  color: #555;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  font-weight: 500;
  border-left: 4px solid #e53935;
}

.ventoran-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-bottom: 35px;
}

.ventoran-bullets li {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  font-size: 16px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ventoran-bullets li i {
  color: #e53935;
  margin-right: 10px;
  font-size: 18px;
}

.ventoran-cta {
  background: linear-gradient(to right, #0a4275, #0052d4);
  color: white !important;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(10, 66, 117, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}

.ventoran-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(10, 66, 117, 0.4);
  background: linear-gradient(to right, #0052d4, #0a4275);
}

.ventoran-image-container {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.ventoran-image-container::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.18) 0%, rgba(229, 57, 53, 0) 70%);
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  animation: pulsePain 3s infinite alternate;
}

.ventoran-mockup {
  max-width: 100%;
  height: auto;
  max-height: 550px;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
  animation: floatGel 5s ease-in-out infinite;
}

/* ==========================================================================
   16. Product Page Layout
   ========================================================================== */

.product-page-container {
  background-color: #f4f6f9;
  padding: 100px 0 80px 0;
  /* Increased top spacing */
}

/* Product Control Bar */
.product-control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #eef1f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.control-bar-brands {
  display: flex;
  gap: 10px;
}

.brand-filter-btn {
  appearance: none;
  border: 1.5px solid var(--blue-brand);
  background: #ffffff;
  color: var(--blue-brand);
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.5px;
  border-radius: 7px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.brand-filter-btn:hover {
  background: rgba(15, 19, 65, 0.06);
  transform: translateY(-2px);
}

.brand-filter-btn.active {
  background: var(--blue-brand);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 19, 65, 0.2);
}

.control-bar-search {
  position: relative;
  min-width: 312px;
  max-width: 408px;
  flex-shrink: 0;
}

.control-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0a6b5;
  font-size: 14px;
  pointer-events: none;
}

.control-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #f8f9fb;
  outline: none;
  transition: all 0.3s ease;
}

.control-search-input:focus {
  border-color: var(--teal-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(70, 195, 232, 0.1);
}

.control-search-input::placeholder {
  color: #a0a6b5;
}

.product-results-summary {
  margin-bottom: 24px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}

.product-card-col.is-hidden {
  display: none !important;
}

.product-empty-state {
  padding-top: 10px;
}

.product-empty-state__inner {
  padding: 36px 28px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #d5dce5;
  border-radius: 10px;
}

.product-empty-state__inner h3 {
  margin-bottom: 10px;
  color: var(--blue-brand);
  font-size: 1.25rem;
}

.product-empty-state__inner p {
  margin-bottom: 0;
  color: #667085;
}

/* Hide old grid header (replaced by control bar) */
.product-grid-header {
  display: none !important;
}

@media (max-width: 768px) {
  .product-control-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .control-bar-brands {
    justify-content: center;
  }

  .control-bar-search {
    min-width: unset;
    max-width: none;
  }

  .brand-filter-btn {
    padding: 9px 18px;
    font-size: 13px;
  }
}

.product-search-container {
  max-width: 600px;
  margin: 0 0 50px auto;
}

.search-input-group {
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.search-input-group input {
  flex-grow: 1;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  outline: none;
  color: #333;
}

.search-btn {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 18px;
}

.search-btn:hover {
  background-color: #002d72;
}

.product-sidebar {
  padding-right: 20px;
}

/* Premium Category Header Bar */
.category-header-bar {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.all-products-title {
  margin-bottom: 0;
}

.all-products-title h2 {
  font-size: 14px;
  font-weight: 800;
  color: #0f1341;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.title-divider {
  width: 30px;
  height: 3px;
  background: #46c3e8;
  border-radius: 2px;
}

.category-selection-grid {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 15px;
}

.category-row-premium {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  align-items: center;
}

.category-item-premium {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 6px 0;
  transition: all 0.2s ease;
}

.category-checkbox-custom {
  position: relative;
  width: 17px;
  height: 17px;
  background: #fff;
  border: 1.5px solid #cbd5e0;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-checkbox-custom:checked {
  background: #46c3e8;
  border-color: #46c3e8;
}

.category-checkbox-custom:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 10px;
}

.category-content-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-icon-premium {
  font-size: 14px;
  color: #4a5568;
  width: 18px;
  display: flex;
  justify-content: center;
}

.category-label-premium {
  font-size: 11px;
  font-weight: 700;
  color: #4a5568;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .category-row-premium {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .category-header-bar {
    padding: 20px;
  }
  .all-products-title {
    margin-bottom: 20px;
    text-align: center;
  }
  .title-divider {
    margin: 0 auto;
  }
  .category-row-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .category-row-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .category-row-premium {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.sidebar-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-brand);
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(70, 195, 232, 0.2);
  width: 100%;
  letter-spacing: 0.5px;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  margin-bottom: 5px;
}

.category-item:hover {
  background: rgba(70, 195, 232, 0.08);
  padding-left: 20px;
}

.category-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  accent-color: var(--teal-accent);
  cursor: pointer;
}

.category-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--blue-brand);
  font-size: 18px;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon {
  color: var(--teal-accent);
  transform: scale(1.1);
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.category-item:hover .category-name {
  color: var(--blue-brand);
}

.product-grid-header {
  display: flex;
  flex-wrap: wrap;
  /* Allows wrapping on small screens */
  gap: 15px;
  margin-bottom: 30px;
  justify-content: flex-end;
  /* Standard right alignment for desktop */
  width: 100%;
}

@media (max-width: 991px) {
  .product-grid-header {
    justify-content: center;
    /* Center them on mobile/tablets */
    gap: 10px;
  }

  .grid-header-item {
    max-width: none;
    /* Let them take available space */
    min-width: 100px;
    font-size: 13px;
    padding: 10px;
  }
}

.grid-header-item {
  max-width: 180px;
  /* Consistent width for all buttons */
  flex: 1;
  background: #ffffff;
  color: var(--blue-brand);
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: 1.5px solid var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
}

.grid-header-item:hover,
.grid-header-item.active {
  background: var(--blue-brand);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(15, 19, 65, 0.2);
}

.product-row {
  background-color: #f4f7f9;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.product-card-premium {
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.premium-product-title {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.premium-product-img {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 20px;
}

.premium-product-img img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.premium-product-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #666;
}

.premium-product-footer .mrp {
  font-weight: 800;
}

#carousel-related-product .slick-slide:focus {
  outline: none !important;
}

#carousel-related-product .slick-dots li button:before {
  font-size: 15px;
  margin-top: 20px;
}

/* ==========================================================================
   17. Footer
   ========================================================================== */

#tempaltemo_footer a {
  color: #dcdde1;
}

#tempaltemo_footer a:hover {
  color: #18b2ed;
}

#tempaltemo_footer ul.footer-link-list li {
  padding-top: 10px;
}

#tempaltemo_footer ul.footer-icons li {
  width: 2.6em;
  height: 2.6em;
  line-height: 2.6em;
}

#tempaltemo_footer ul.footer-icons li:hover {
  background-color: #cfd6e1;
  transition: 0.5s;
}

#tempaltemo_footer ul.footer-icons li:hover i {
  color: #212934;
  transition: 0.5s;
}

#tempaltemo_footer .border-light {
  border-color: #2d343f !important;
}

.footer-area {
  background-color: var(--blue-brand);
}

.footer-logo {
  max-height: 45px;
  filter: brightness(0) invert(1);
}

.text-light-grey {
  color: #aeb5c5;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aeb5c5;
  font-size: 1.2em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal-accent);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* VM Section GIFs & Boxes */
.vm-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.vm-icon-box {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  /* Matches .mission-vision-section background */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    -5px -5px 10px rgba(255, 255, 255, 0.8),
    5px 5px 15px rgba(0, 0, 0, 0.05);
  /* Subtle neumorphic effect for contrast */
  border: 1px solid rgba(0, 189, 211, 0.1);
  transition: all 0.3s ease;
}

.vm-item:hover .vm-icon-box {
  transform: translateY(-5px);
  border-color: var(--cyan-teal);
  box-shadow: 0 10px 25px rgba(0, 189, 211, 0.1);
}

.vm-gif-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* ==========================================================================
   18. Responsive Media Queries
   ========================================================================== */

/* Large screens and Desktops */
@media (min-width: 1200px) {}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .tempaltemo-carousel .h1 {
    font-size: 1em !important;
  }
}

@media (max-width: 991px) {
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-header-item {
    display: none;
  }

  .ventoran-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .ventoran-bullets {
    justify-content: center;
  }

  .ventoran-image-container::after {
    left: 50%;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }

  .about-hero-image-wrapper {
    margin-top: 50px;
  }

  .overlap-box.flush {
    width: 95%;
    margin-top: -40px;
  }

  .vm-content-box {
    padding-left: 0;
    margin-top: 60px;
    text-align: center;
  }

  .vm-header {
    justify-content: center;
  }

  .vm-item p {
    margin: 0 auto;
  }

  .focus-image-circle {
    width: 250px;
    height: 250px;
  }

  .focus-text {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  #templatemo_main_nav .navbar-nav {
    max-width: 550px;
  }

  #template-mo-zay-hero-carousel .carousel-item {
    min-height: 30rem !important;
  }

  .product-wap .h3,
  .product-wap li,
  .product-wap i,
  .product-wap p {
    font-size: 18px !important;
  }

  .product-wap .product-color-dot {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 768px) {
  #templatemo_main_nav .navbar-nav {
    max-width: 450px;
  }
}

@media (max-width: 767px) {
  .product-row {
    grid-template-columns: 1fr;
  }

  .top-bar-area {
    display: none;
  }
}

.product-wap .h3,
.product-wap li,
.product-wap i,
.product-wap p {
  font-size: 12px !important;
}

.product-wap .product-color-dot {
  width: 6px;
  height: 6px;
}

/* ==========================================================================
   19. Page Specific Styles (Subsidiaries)
   ========================================================================== */

.subsidiary-hero {
  background: linear-gradient(rgba(15, 19, 65, 0.85), rgba(15, 19, 65, 0.6)), url('../img/hero_slider 2.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.subsidiary-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.subsidiary-logo {
  max-width: 250px;
  margin-bottom: 25px;
  display: block;
}

.tag-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid var(--blue-brand);
}

.info-item {
  margin-bottom: 20px;
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--teal-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.info-value {
  font-size: 15px;
  color: var(--blue-brand);
  font-weight: 500;
  line-height: 1.4;
}

.service-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(15, 19, 65, 0.1);
  border-color: var(--teal-accent);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.highlight-block {
  background: var(--blue-brand);
  color: white;
  padding: 80px 0;
  margin: 80px 0;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border-top: 3px solid var(--teal-accent);
  height: 100%;
  transition: 0.3s;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-premium-cta {
  background: linear-gradient(135deg, var(--teal-accent), #2daccf);
  color: white;
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 10px 25px rgba(70, 195, 232, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  text-decoration: none;
}

.btn-premium-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(70, 195, 232, 0.5);
  color: white;
}

/* ==========================================================================
   20. Page Specific Styles (Investor Relations)
   ========================================================================== */

.investor-hero {
  background: linear-gradient(rgba(15, 19, 65, 0.85), rgba(15, 19, 65, 0.7)), url('../img/breadcrumb-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
  color: white;
  text-align: center;
}

.doc-section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

.doc-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--teal-accent);
}

.doc-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #eef2f6;
  padding: 25px 20px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 19, 65, 0.08);
  border-color: var(--teal-accent);
}

.doc-icon {
  font-size: 38px;
  color: #e74c3c;
  /* PDF Red */
  margin-bottom: 15px;
}

.doc-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-brand);
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  color: var(--blue-brand);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #edeff2;
}

.doc-card:hover .btn-download {
  background: var(--teal-accent);
  color: #fff;
  border-color: var(--teal-accent);
}

.btn-download i {
  margin-right: 8px;
}

/* ==========================================================================
   21. Careers & Contact Page Styles
   ========================================================================== */

/* Hero Overlays for Contact/Careers */
.careers-hero {
  background: linear-gradient(rgba(15, 19, 65, 0.85), rgba(15, 19, 65, 0.6)), url('../img/hero_slider 3.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0 70px;
  color: white;
  text-align: center;
}

.contact-hero {
  background: linear-gradient(rgba(15, 19, 65, 0.85), rgba(15, 19, 65, 0.6)), url('../img/contact_hero_banner.webp');
  background-size: cover;
  background-position: center;
  padding: 110px 0 70px;
  color: white;
  text-align: center;
}

/* Feature Cards (Why Join Us) */
.career-feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.career-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-accent);
  box-shadow: 0 15px 35px rgba(15, 19, 65, 0.1);
}

.career-feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Job Listings */
.job-listing-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  border-left: 5px solid var(--blue-brand);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.job-listing-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(15, 19, 65, 0.08);
  border-left-color: var(--teal-accent);
}

.job-meta {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.job-meta span {
  margin-right: 20px;
}

.job-meta i {
  color: var(--teal-accent);
  margin-right: 5px;
}

/* Forms (Shared) */
.premium-form-container {
  background: #ffffff;
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-label-custom {
  font-weight: 600;
  color: var(--blue-brand);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control-premium {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #e1e5eb;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-size: 15px;
}

.form-control-premium:focus {
  border-color: var(--teal-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(70, 195, 232, 0.1);
  outline: none;
}

/* Contact Info Cards */
.contact-info-box {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(15, 19, 65, 0.1);
}

.contact-icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
}

.map-container-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

/* ==========================================================================
   19. Careers Page - Introduction Section
   ========================================================================== */

.careers-intro-section {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.intro-content-wrapper {
  position: relative;
  z-index: 2;
}

.intro-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(70, 195, 232, 0.2);
}

.intro-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-brand);
  margin-bottom: 30px;
  line-height: 1.1;
}

.intro-lead {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.8;
}

.intro-description {
  color: var(--dark-grey) !important;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.intro-highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.intro-highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-accent);
  font-size: 24px;
  transition: all 0.3s ease;
}

.intro-highlight-item:hover .intro-highlight-icon {
  background: var(--teal-accent);
  color: var(--white);
  transform: translateY(-5px);
}

.intro-highlight-text {
  font-weight: 700;
  color: var(--blue-brand);
  font-size: 1.1rem;
  line-height: 1.2;
}

.intro-highlight-text-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  margin-top: 5px;
}

.intro-image-container {
  position: relative;
  padding: 0;
}


.intro-image-main {
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(15, 19, 65, 0.2);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.intro-image-container:hover .intro-image-main {
  transform: translateY(-10px) rotate(-2deg);
}

.intro-experience-badge {
  position: absolute;
  bottom: 60px;
  left: -40px;
  background: var(--blue-brand);
  color: var(--white);
  padding: 30px 45px;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: float 5s ease-in-out infinite;
  z-index: 10;
}

.intro-experience-badge h3 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  color: var(--teal-accent);
  line-height: 0.9;
}

.intro-experience-badge span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .careers-intro-section {
    padding: 80px 0;
  }

  .intro-title {
    font-size: 2.8rem;
  }

  .intro-image-container {
    margin-top: 70px;
  }

  .intro-experience-badge {
    left: 0;
    bottom: 10px;
    padding: 20px 35px;
  }

  .intro-experience-badge h3 {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   20. Premium Footer Redesign
   ========================================================================== */

.footer-area {
  background-color: #0d112b;
  /* Slightly darker than blue-brand for premium feel */
  position: relative;
  padding: 100px 7% 0;
  /* Updated to 7% as per feedback */
  color: #fff;
  overflow: hidden;
}

@media (max-width: 991px) {
  .footer-area {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
  }
}

.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-accent), var(--blue-brand), var(--teal-accent));
}

.footer-top-cta {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 35px 50px;
  margin: 0 auto 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  width: 80%;
  /* Increased width for a better presence */
}

.footer-top-cta .btn:hover {
  background-color: #f8f9fa !important;
  color: var(--blue-brand) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo-main {
  max-height: 50px;
  filter: brightness(1.2);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--teal-accent);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 15px;
}

.footer-links-list a {
  color: #a0a6b5;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links-list a i {
  font-size: 10px;
  margin-right: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--teal-accent);
  padding-left: 5px;
}

.footer-links-list a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: rgba(70, 195, 232, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-accent);
  flex-shrink: 0;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--teal-accent);
  color: var(--white);
  transform: rotate(10deg);
}

.contact-info-text {
  font-size: 0.95rem;
  color: #a0a6b5;
  line-height: 1.6;
}

.contact-info-text b {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.social-circle-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle-btn:hover {
  background: var(--teal-accent);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(70, 195, 232, 0.3);
}

.footer-bottom-premium {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
}

.footer-copyright {
  color: #7a8190;
  font-size: 0.9rem;
}

.footer-bottom-links a {
  color: #7a8190;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 20px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991px) {
  .footer-top-cta {
    padding: 30px 20px;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-premium {
    text-align: center;
  }

  .footer-bottom-links {
    margin-top: 15px;
  }

  .footer-bottom-links a {
    margin: 0 10px;
  }
}

/* ==========================================================================
   21. Careers Page - Premium Redesign
   ========================================================================== */

/* Hero Section - uses existing page styles */

/* Why Join - Feature Cards */
.career-feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid #eef1f6;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.career-feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-accent), var(--blue-brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.career-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 19, 65, 0.08);
  border-color: transparent;
}

.career-feature-card:hover::after {
  transform: scaleX(1);
}

.career-feature-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(70, 195, 232, 0.1), rgba(70, 195, 232, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 24px;
  color: var(--teal-accent);
  transition: all 0.3s ease;
}

.career-feature-card:hover .career-feature-icon {
  background: var(--teal-accent);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(70, 195, 232, 0.25);
}

.career-feature-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.career-feature-card p {
  line-height: 1.7;
  margin-bottom: 0;
}

/* Application Form - Premium */
#application-form {
  background: linear-gradient(rgba(15, 19, 65, 0.85), rgba(15, 19, 65, 0.85)),
    url('../img/bg image ICL.jpg') center/cover no-repeat fixed;
  border-top: 1px solid #dce1e8;
}

#application-form .premium-form-container {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 50px 45px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#application-form .premium-form-container h3 {
  position: relative;
  padding-bottom: 18px;
  color: var(--blue-brand);
}

#application-form .form-label-custom {
  color: #1a1a2e;
  font-weight: 600;
}

#application-form .premium-form-container h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-accent), var(--blue-brand));
  border-radius: 2px;
}

#application-form .form-control-premium {
  border-radius: 8px;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

#application-form .form-control-premium::placeholder {
  color: #999;
}

#application-form .form-control-premium:focus {
  border-color: var(--teal-accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(70, 195, 232, 0.15);
}

#application-form .btn-teal {
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#application-form .btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70, 195, 232, 0.3);
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed #c5cdd8;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
}

.upload-zone:hover,
.upload-zone.upload-zone-drag {
  border-color: var(--teal-accent);
  background: rgba(70, 195, 232, 0.05);
}

.upload-zone-icon {
  font-size: 36px;
  color: var(--teal-accent);
  margin-bottom: 10px;
  display: block;
}

.upload-zone-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.upload-browse {
  color: var(--teal-accent);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.upload-helper {
  font-size: 12px;
  color: #999;
}

.upload-file-info {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.upload-file-icon {
  font-size: 28px;
  color: var(--teal-accent);
}

.upload-file-details {
  flex: 1;
}

.upload-file-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  word-break: break-all;
}

.upload-file-size {
  font-size: 12px;
  color: #888;
}

.upload-remove {
  appearance: none;
  border: none;
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-remove:hover {
  background: #dc3545;
  color: #fff;
}

.upload-error {
  margin-top: 10px;
  font-size: 13px;
  color: #dc3545;
  font-weight: 600;
}

.upload-zone-error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.04);
}

.upload-zone-success {
  border-color: #28a745;
  border-style: solid;
  background: rgba(40, 167, 69, 0.04);
}

.form-note {
  font-size: 13px;
  color: #667085;
  line-height: 1.6;
}

.form-feedback {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-feedback-success {
  background: rgba(40, 167, 69, 0.1);
  color: #1f6f3f;
  border: 1px solid rgba(40, 167, 69, 0.25);
}

.form-feedback-error {
  background: rgba(220, 53, 69, 0.08);
  color: #9f1239;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.product-spotlight-section {
  background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 100%);
  padding: 50px 0 80px;
}

.product-spotlight-hero {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(15, 19, 65, 0.06);
}

.product-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(70, 195, 232, 0.12);
  color: var(--blue-brand);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-detail-main-image {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  padding: 22px;
  margin: 0 auto;
  display: block;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.product-gallery-thumb {
  width: 100%;
  border: 1.5px solid #dce3ed;
  border-radius: 12px;
  background: #ffffff;
  padding: 10px;
  transition: all 0.25s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: var(--teal-accent);
  box-shadow: 0 10px 24px rgba(70, 195, 232, 0.15);
  transform: translateY(-2px);
}

.product-gallery-thumb img {
  width: 100%;
  display: block;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.product-detail-meta-card {
  background: #f8fafc;
  border: 1px solid #e6ebf2;
  border-radius: 12px;
  padding: 16px 18px;
}

.product-detail-meta-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #667085;
  margin-bottom: 6px;
}

.product-detail-meta-card strong {
  color: var(--blue-brand);
  font-size: 1rem;
}

.product-highlight-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.product-highlight-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #555;
}

.product-highlight-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--teal-accent);
  position: absolute;
  left: 0;
  top: 1px;
}

.product-prescription-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--teal-accent);
  background: rgba(70, 195, 232, 0.08);
  color: #475467;
  border-radius: 8px;
}

.brand-portfolio-card {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 12px 28px rgba(15, 19, 65, 0.04);
}

.brand-portfolio-card h3 {
  color: var(--blue-brand);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.brand-portfolio-card p {
  color: #667085;
  margin-bottom: 16px;
}

.brand-portfolio-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: #475467;
}

/* Responsive */
@media (max-width: 991px) {
  .careers-hero {
    padding: 80px 0 60px;
  }

  .careers-hero h1 {
    font-size: 2.5rem;
  }

  #application-form .premium-form-container {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .careers-hero h1 {
    font-size: 2rem;
  }

  .career-feature-card {
    padding: 28px 20px;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-meta {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   22. Blog Detail Page & Redesigned Blog Cards
   ========================================================================== */

/* Blog Detail Hero */
.blog-detail-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 19, 65, 0.92) 0%, rgba(15, 19, 65, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}

.blog-detail-category {
  display: inline-block;
  background: var(--teal-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.blog-detail-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 16px;
}

.blog-detail-meta {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.blog-detail-meta i {
  margin-right: 6px;
  color: var(--teal-accent);
}

/* Blog Body */
.blog-detail-body {
  padding: 60px 0 40px;
  position: relative;
}

.blog-detail-lead {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  border-left: 4px solid var(--teal-accent);
  padding-left: 20px;
  margin-bottom: 30px;
}

.blog-detail-body h2 {
  color: var(--blue-brand);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 35px 0 15px;
}

.blog-detail-body p {
  color: #555;
  line-height: 1.85;
  font-size: 15px;
}

.blog-detail-body ul,
.blog-detail-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-detail-body li {
  color: #555;
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 6px;
}

/* Social Share */
.blog-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eef1f6;
}

.blog-share-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  margin-right: 6px;
}

.blog-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f2f5;
  color: var(--blue-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-share-btn:hover {
  background: var(--teal-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Tags */
.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #eef1f6;
}

.blog-tag {
  background: #f0f2f5;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: var(--teal-accent);
  color: #fff;
}

/* Related Posts */
.blog-related-section {
  background: #f4f6f9;
  padding: 60px 0;
}

.blog-related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-brand);
  margin-bottom: 30px;
  text-align: center;
}

/* Blog Card V2 (Homepage + Related) */
.blog-card-v2 {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  border: 1px solid #eef1f6;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 19, 65, 0.08);
  border-color: transparent;
}

.blog-card-v2-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-card-v2-body {
  padding: 24px;
}

.blog-card-v2-cat {
  display: inline-block;
  background: rgba(70, 195, 232, 0.1);
  color: var(--teal-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.blog-card-v2-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-brand);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-v2-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-v2-date {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
}

.blog-card-v2-date i {
  margin-right: 5px;
  color: var(--teal-accent);
}

/* CTA Card */
.blog-card-v2-cta {
  background: linear-gradient(135deg, var(--blue-brand), #1a2565);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-v2-cta-inner {
  text-align: center;
  color: #fff;
}

.blog-card-v2-cta-inner i {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.8;
}

.blog-card-v2-cta-inner h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.blog-card-v2-cta:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 19, 65, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-detail-title {
    font-size: 1.8rem;
  }

  .blog-detail-hero {
    height: 340px;
  }

  .blog-detail-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .blog-detail-body {
    padding: 40px 0 30px;
  }
}

/* ==========================================================================
   23. General Responsive Refinements (All Screens)
   ========================================================================== */

/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1260px;
  }
}

/* Large Screens (up to 1199px) - Laptop/Large Tablet */
@media (max-width: 1199px) {
  .hero-slider .caption-title {
    font-size: 3.5rem;
  }

  .header-area .navbar-nav .nav-link {
    font-size: 14px;
  }

  .about-hero-title {
    font-size: 3rem;
  }
}

/* Medium Screens (up to 991px) - Tablets */
@media (max-width: 991px) {
  .header-area .navbar-nav .nav-link {
    border-bottom: 1px solid #f0f2f5;
  }

  .header-area .navbar-collapse {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }

  .hero-slider .carousel-item {
    aspect-ratio: 4 / 3;
    min-height: 500px;
  }

  .hero-slider .caption-title {
    font-size: 2.8rem;
  }

  .product-control-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .control-bar-brands {
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
  }

  .control-bar-search {
    width: 100% !important;
    max-width: none;
  }

  /* About Page Refinements */
  .about-hero-section {
    padding: 60px 0;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .mission-vision-section {
    padding: 60px 0;
  }

  .focus-graphic-container {
    margin-bottom: 50px;
    transform: scale(0.9);
  }

  .excellence-section {
    padding: 60px 0;
  }

  .excellence-section .sticky-top {
    position: static !important;
    margin-top: 40px;
  }

  /* Subsidiaries Page */
  .subsidiary-hero {
    padding: 80px 0;
  }

  .subsidiary-hero h1 {
    font-size: 3rem;
  }

  /* Investor Relations */
  .investor-hero {
    padding: 80px 0;
  }

  .doc-card {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer-area {
    padding: 60px 0 0;
  }

  .footer-top-cta {
    padding: 30px;
    text-align: center;
  }

  .footer-top-cta .btn {
    width: 100%;
    margin-top: 20px;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }
}

/* Small Screens (up to 767px) - Large Mobile */
@media (max-width: 767px) {
  .hero-slider .caption-title {
    font-size: 2.2rem;
  }

  .hero-slider .caption-subtitle {
    font-size: 15px;
  }

  .hero-slider .carousel-caption {
    left: 5%;
    right: 5%;
    width: 90%;
    max-width: none;
  }

  .features-section {
    margin-top: -30px;
  }

  .feature-card {
    padding: 20px;
  }

  .stats-section h2.stat-number {
    font-size: 1.8rem;
  }

  .products-section {
    padding-top: 60px !important;
  }

  .products-section h2.h2 {
    font-size: 28px !important;
  }

  /* Product Card 2-per-row Refinements */
  .product-card-col {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .product-card-ui {
    margin-bottom: 12px;
    padding: 12px !important;
  }

  .product-title-top {
    font-size: 14px !important;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .product-img-box {
    min-height: 160px !important;
    margin: 10px 0 !important;
  }

  .product-footer-label {
    font-size: 11px !important;
  }

  .product-footer-value {
    font-size: 12px !important;
  }

  .product-footer-col {
    padding: 0 4px !important;
  }

  .ventoran-ad-section {
    padding: 50px 0;
    text-align: center;
  }

  .ventoran-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .ventoran-bullets li {
    margin-right: 0;
  }

  .blog-section h2.h2 {
    font-size: 26px !important;
  }

  .product-links-wap .col-2 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  /* About Page Mobile */
  .about-hero-title {
    font-size: 2rem;
  }

  .section-main-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  .focus-text {
    font-size: 3.5rem;
  }

  .about-stats-area .stat-item {
    margin-bottom: 30px;
  }

  .vm-item {
    padding: 25px;
  }
}

/* Extra Small Screens (up to 575px) - Mobile */
@media (max-width: 575px) {
  .top-bar-area {
    display: none;
  }

  .hero-slider .caption-title {
    font-size: 1.8rem;
  }

  .hero-slider .caption-divider {
    margin: 15px 0;
  }

  .btn-teal,
  .btn-blue-pill {
    padding: 12px 25px;
    font-size: 12px;
  }

  .product-filters .filter-btn {
    padding: 5px 15px;
    font-size: 14px;
  }

  .footer-bottom-links {
    text-align: center;
    margin-top: 10px;
  }

  .footer-copyright {
    text-align: center;
  }

  .univentis-logo {
    max-height: 35px;
  }

  .choose-card.modern {
    padding: 30px 20px;
  }
}

/* Fix for horizontal scroll and general overflows */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.container,
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}

/* ==========================================================================
   24. Back to Top Button
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--teal-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  outline: none;
  transform: translateY(20px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--blue-brand);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(15, 19, 65, 0.3);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}