/* ===== CSS RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0056a6; /* Professional Blue */
  --primary-dark: #003d7a;
  --primary-light: #e8f2fc;
  --secondary: #00a859; /* Medical Green */
  --secondary-light: #e8f8f0;
  --accent: #ff6b35; /* Alert/CTA Orange */
  --accent-light: #fff2ec;
  --dark: #1a2b3c;
  --dark-light: #2c3e50;
  --gray: #6c7a89;
  --gray-light: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 86, 166, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 86, 166, 0.12);
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --border: 1px solid rgba(0, 86, 166, 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 86, 166, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 86, 166, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #ff8b35);
  color: var(--white);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: var(--border);
  padding: 15px 0;
  transition: var(--transition);
}

.header-scrolled {
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon img{
  width: 150px;
  height: 70px;
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* ===== MODERN HERO SECTION ===== */
.hero-section {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #e8f2fc 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.floating-element {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  top: 10%;
  left: 0;
  width: 200px;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 10%;
  width: 220px;
  animation-delay: 2s;
}

.floating-element:nth-child(4) {
  bottom: 10%;
  right: 5%;
  width: 180px;
  animation-delay: 3s;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* ===== FEATURED PRODUCTS ===== */
.categories-section {
  padding: 100px 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  text-decoration: none;
  transition: var(--transition);
}

.category-card.large {
  grid-column: span 2;
  height: 360px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
  padding: 35px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  opacity: 1;
  transform: translateY(0);
}

.category-overlay h3 {
  margin-bottom: 10px;
  color: #fff;
}

.category-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.category-products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.product-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

/* ===== MOBILE REDESIGN ===== */
@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card.large {
    height: auto;
  }

  .category-card img {
    height: 300px;
  }

  .category-overlay {
    position: relative;
    background: #0a1a3d;
    opacity: 1;
    transform: none;
    padding: 25px;
  }

  .category-card:hover img {
    transform: none;
  }
}


/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  justify-content: space-around;
  box-shadow: var(--shadow);
}

.about-stat {
  text-align: center;
}

.about-stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat .label {
  font-size: 0.9rem;
  color: var(--gray);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-features {
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: 5px;
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e8f8f0 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 5px solid var(--primary);
}

.value-card:nth-child(2) {
  border-top-color: var(--secondary);
}

.value-card:nth-child(3) {
  border-top-color: var(--accent);
}

.value-card:nth-child(4) {
  border-top-color: #8e44ad;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary);
  font-size: 2rem;
  transition: var(--transition);
}

.value-card:nth-child(2) .value-icon {
  background: var(--secondary-light);
  color: var(--secondary);
}

.value-card:nth-child(3) .value-icon {
  background: var(--accent-light);
  color: var(--accent);
}

.value-card:nth-child(4) .value-icon {
  background: #f4e6fa;
  color: #8e44ad;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

/* ===== CERTIFICATION SECTION ===== */
.certification-section {
  padding: 80px 0;
  background: var(--white);
}

.certification-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.certification-item {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--gray-light);
  transition: var(--transition);
  min-width: 200px;
}

.certification-item:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
}

.certification-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--white);
  color: var(--primary);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
}

.footer-col h4 {
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-links i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 5px;
  font-size: 1.1rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 10px;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dropdown-menu {
    width: 800px;
    left: -200px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    height: 400px;
    order: -1;
    margin-bottom: 40px;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card.large {
    grid-column: span 1;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .dropdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dropdown-menu {
    width: 600px;
    left: -150px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 30px 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow-y: auto;
  }
  .main-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav-link {
    padding: 15px 0;
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 20px 0;
    display: none;
    border: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
  }
  .dropdown.active .dropdown-toggle::after {
    content: "\f077";
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero-section{
    padding-top: 100px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .btn {
    padding: 14px 24px;
  }
  .floating-element {
    width: 150px !important;
    padding: 15px;
  }
  .dropdown-menu {
    width: 100%;
    left: 0;
  }
  .highlight-products {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
}
.main-header {
  padding: 15px 0;
}
.dropdown-grid {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    width: 100%;
  }
}

/* ===============================
   HERO SECTION – MOBILE FIX
================================ */
@media (max-width: 768px) {

  /* Hide floating cards on mobile */
  .floating-element {
    display: none;
  }

}
@media (max-width: 768px) {

  .hero-visual {
    height: auto;
    display: flex;
    justify-content: center;
  }

  .hero-image-main {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

}


/* ===== TRUST MARQUEE ===== */
.trust-marquee {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a1a3d, #122b5c);
  overflow: hidden;
}

.marquee-title {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 2rem;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .marquee-track {
    animation-duration: 18s;
  }

  .marquee-track span {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* WhatsApp */
.floating-btn.whatsapp {
  background: #25d366;
}

/* Call */
.floating-btn.call {
  background: #0a1a3d;
}

/* Hover effect */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Mobile size adjustment */
@media (max-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ==============================
   HEADER
================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.header-scrolled {
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==============================
   NAVIGATION
================================ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* ==============================
   DROPDOWN (DESKTOP)
================================ */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 280px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* Hover open (desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown list */
.dropdown-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-category li a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-light);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-category li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 26px;
}

/* ==============================
   CTA BUTTON
================================ */
.nav-cta {
  margin-left: 20px;
}

/* ==============================
   MOBILE NAV
================================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 30px;
    box-shadow: var(--shadow-lg);
    transition: 0.4s ease;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 10px 0;
    display: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-category li a {
    padding: 12px 0;
  }

  .dropdown-category li a:hover {
    background: none;
    padding-left: 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 20px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
.menu-toggle {
  position: relative;
  z-index: 1100;
}
/* -================================== */
/* =========================================
   DESKTOP STYLES
========================================= */

.section2 {
  width: 100%;
  height: 70vh; /* desktop only */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pin-section {
  border-top: dashed 2px var(--color-surface50);
  border-bottom: dashed 2px var(--color-surface50);
}

.content2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  position: relative;
}

.content2 ul {
  font-size: 30px;
  color: black;
  margin: 0;
  padding: 0 10px 0 0;
  list-style: none;
}

.content2 .fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: black;
}

.content2 .right {
  flex-grow: 1;
  position: relative;
}

/* Slides (desktop animation) */
.right .slide {
  position: absolute;
  width: 50%;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}

.right img {
  width: 100%;
  max-width: 500px;
  display: block;
}

/* =========================================
   MOBILE FIX (NO OVERLAP GUARANTEED)
========================================= */

@media (max-width: 768px) {

  /* 🔥 REMOVE FIXED HEIGHT */
  .section2 {
    height: auto !important;
    padding: 30px 0;
  }

  .content2 {
    display: block;
  }

  .content2 ul {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content2 .fill {
    display: none;
  }

  .content2 .right {
    position: relative;
    width: 100%;
  }

  /* 🔥 KILL ABSOLUTE POSITIONING */
  .right .slide {
    position: relative !important;
    top: auto;
    right: auto;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    margin-bottom: 20px;
  }

  .right img {
    max-width: 100%;
  }
}


/* ==================================================================================== */

  /* ----- ROOT VARIABLES (brand theme) ----- */
  .st-product-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .st-product-page {
    --brand-dark:#1987C4;
    /* deep navy from footer */
    --brand-mid:blue;
    --brand-accent: #2569c7;
    /* brighter blue for CTAs */
    --brand-light: #eef4ff;
    --bg-light: #f9fcff;
    --text-dark: #13294b;
    --text-muted: #4f5e7a;
    --white: #ffffff;
    --grad-hero: linear-gradient(145deg, #08203e, #12315e);
    --grad-card: linear-gradient(145deg, #ffffff, #f5faff);
    --shadow-sm: 0 20px 30px -10px rgba(10, 30, 66, 0.2);
    --shadow-hover: 0 30px 45px -12px #0a1e4280;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
  }

  /* ----- CONTAINER (consistent with header/footer width) ----- */
  .st-product-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ===== HERO SECTION ===== */
  .st-product-page .hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 100px;
    /* space for fixed header */
    background: var(--grad-hero);
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
  }

  .st-product-page .hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    z-index: 0;
  }

  .st-product-page .hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 50px;
    align-items: center;
    width: 100%;
  }

  .st-product-page .hero__title {
    font-size: clamp(2.6rem, 7vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .st-product-page .hero__title span {
    color: #9fc5ff;
    /* subtle highlight */
  }

  .st-product-page .hero__subtitle {
    font-size: 1.2rem;
    color: #d0e0ff;
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .st-product-page .hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }

  .st-product-page .btn-primary {
    background: var(--brand-accent);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 25px -8px #0f2d60;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .st-product-page .btn-primary:hover {
    background: #1b7dfc;
    transform: scale(1.05);
    box-shadow: 0 22px 35px -10px #0a1e42;
  }

  .st-product-page .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
  }

  .st-product-page .btn-outline:hover {
    background: white;
    color: var(--brand-dark);
    border-color: white;
  }

  .st-product-page .hero__image {
    position: relative;
    animation: floating 5s ease-in-out infinite;
    filter: drop-shadow(0 25px 30px #00000050);
  }

  @keyframes floating {
    0% {
      transform: translateY(0px) rotate(0deg);
    }

    50% {
      transform: translateY(-12px) rotate(0.5deg);
    }

    100% {
      transform: translateY(0px) rotate(0deg);
    }
  }

  .st-product-page .hero__image img {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    box-shadow: 30px 30px 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
  }

  /* ===== INTRO ===== */
  .st-product-page .intro {
    padding: 110px 0;
    background: var(--white);
  }

  .st-product-page .intro__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: center;
  }

  .st-product-page .intro__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
  }

  .st-product-page .intro__image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s ease;
  }

  .st-product-page .intro__image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
  }

  .st-product-page .intro__image img {
    width: 100%;
    display: block;
  }

  /* ===== BENEFITS (cards) ===== */
  .st-product-page .benefits {
    padding: 110px 0;
    background: var(--brand-light);
  }

  .st-product-page .section-title {
    font-size: 2.8rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
  }

  .st-product-page .section-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 60px;
  }

  .st-product-page .benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
  }

  .st-product-page .benefit-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #ffffff;
  }

  .st-product-page .benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-accent);
  }

  .st-product-page .benefit-card__number {
    background: var(--brand-dark);
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 15px -5px var(--brand-mid);
  }

  .st-product-page .benefit-card h4 {
    font-size: 1.6rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
  }

  .st-product-page .benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ===== FEATURES ===== */
  .st-product-page .features {
    padding: 110px 0;
    background: var(--white);
  }

  .st-product-page .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }

  .st-product-page .feature-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fafcff;
    border-radius: 25px;
    transition: 0.3s;
    border-left: 6px solid transparent;
  }

  .st-product-page .feature-item:hover {
    border-left-color: var(--brand-accent);
    background: white;
    box-shadow: 0 20px 30px -10px rgba(10, 40, 80, 0.15);
    transform: translateX(8px);
  }

  .st-product-page .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, var(--brand-dark), var(--brand-mid));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 600;
  }

  .st-product-page .feature-content h4 {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 8px;
  }

  .st-product-page .feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ===== EXPERTISE (dark brand section) ===== */
  .st-product-page .expertise {
    background: var(--brand-dark);
    padding: 130px 0;
    color: white;
  }
  .expertise p{
    color: white !important;
  }

  .st-product-page .expertise__title {
    font-size: 3rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, #fff, #bdd3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .st-product-page .expertise__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 70px 0 40px;
  }

  .st-product-page .expertise__stat .stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #4d8cff;
  }

  .st-product-page .expertise__stat p {
    color: #b5ceff;
    font-size: 1.2rem;
  }

  .st-product-page .expertise__description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d6e4ff;
    border-left: 6px solid var(--brand-accent);
    padding-left: 30px;
    margin-top: 50px;
  }

  /* ===== CONTACT BANNER (extra CTA) ===== */
  .st-product-page .contact-banner {
    background: rgba(255, 255, 255, 0.737);
    padding: 70px 0;
    text-align: center;
    color: rgb(0, 0, 0);
  }

  .st-product-page .contact-banner h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .st-product-page .contact-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
    color: rgb(0, 0, 0);
  }

  .st-product-page .contact-banner .btn-white {
    background: rgb(253, 239, 239);
    color: var(--brand-dark);
    border: none;
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 25px -10px #0c294d;
    transition: 0.3s;
    text-decoration: none;
  }

  .st-product-page .contact-banner .btn-white:hover {
    background: #f0f5ff;
    transform: scale(1.05);
    box-shadow: 0 25px 35px -10px #04122b;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {

    .st-product-page .hero__container,
    .st-product-page .intro__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .st-product-page .hero {
      min-height: 70vh;
      text-align: center;
    }

    .st-product-page .hero__subtitle {
      margin-left: auto;
      margin-right: auto;
    }

    .st-product-page .hero__buttons {
      justify-content: center;
    }

    .st-product-page .expertise__stats {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }

  /* ----- PRODUCT GALLERY (add inside .st-product-page scope) ----- */
  .st-product-page .product-gallery {
    padding: 100px 0;
    background: var(--white);
    /* or var(--bg-light) if you prefer */
  }

  .st-product-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0 40px;
  }

  .st-product-page .gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .st-product-page .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
  }

  .st-product-page .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
  }

  .st-product-page .gallery-item:hover img {
    transform: scale(1.08);
  }

  .st-product-page .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 30, 66, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .st-product-page .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .st-product-page .gallery-contact {
    text-align: center;
    margin-top: 20px;
  }

  .st-product-page .gallery-contact .btn-primary {
    background: var(--brand-accent);
    color: white;
    border: none;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 25px -8px var(--brand-mid);
    transition: 0.3s;
    text-decoration: none;
  }

  .st-product-page .gallery-contact .btn-primary:hover {
    background: #1b7dfc;
    transform: scale(1.05);
    box-shadow: 0 22px 35px -10px var(--brand-dark);
  }

  /* responsive */
  @media (max-width: 800px) {
    .st-product-page .gallery-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  }

