/* ===== CSS VARIABLES ===== */
:root {
  --primary: #111111;
  --accent: #e30613;
  --accent-light: #ff3b30;
  --accent-dark: #c10511;
  --accent-gradient: linear-gradient(135deg, #c10511, #e30613, #ff3b30);
  --base: #ffffff;
  --gray-light: #f8f9fa;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --success: #28a745;
  --warning: #ffc107;
  --info: #17a2b8;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-accent: 0 10px 25px rgba(227, 6, 19, 0.2);
  --border-radius: 12px;
  --medical-blue: #1e73be;
  --medical-light: #eaf4ff;
}
html,
body {
  overflow-x: hidden;
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  background-color: var(--base);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--base);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid var(--accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--base);
}

.btn-nav {
  padding: 10px 24px;
  margin-left: 10px;
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.1rem;
}

/* ===== PRELOADER (optional styles) ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-container {
  text-align: center;
  color: var(--base);
}

.logo-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.logo-circle {
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent);
  border-radius: 50%;
  position: relative;
  animation: rotate 2s linear infinite;
}

.logo-circle::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: var(--accent);
}

.logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-out infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }

  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--base);
  padding: 12px 0;
  font-size: 0.9rem;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info span:hover {
  color: var(--accent-light);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left 0.3s;
  z-index: -1;
}

.social-icons a:hover::before {
  left: 0;
}

.social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ===== MARQUEE CONTAINER ===== */
.marquee-container {
  background: var(--accent-gradient);
  color: var(--base);
  padding: 15px 0;
  overflow: hidden;
  z-index: 1000;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  padding: 0 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.marquee-item i {
  margin-right: 10px;
  font-size: 1.1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== MARQUEE WRAPPER (TEXT RUNNER) ===== */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--primary), #222, var(--primary));
  padding: 20px 0;
  margin: 40px 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
}

.marquee-wrapper::before {
  top: 0;
}

.marquee-wrapper::after {
  bottom: 0;
}

.marquee {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marquee span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--base);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.marquee .star {
  color: var(--accent);
  font-size: 28px;
  animation: star-spin 3s linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes star-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--base);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 13px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--base);
  min-width: 240px;
  padding: 15px 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--gray-dark);
}

.dropdown-menu li a:hover {
  background: rgba(227, 6, 19, 0.05);
  color: var(--accent);
  padding-left: 25px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gray-light);
  align-items: center;
  justify-content: center;
}

.mobile-toggle:hover {
  background: var(--accent);
  color: var(--base);
}

/* ===== HERO SLIDER ===== */
.hero-banner {
  height: 110vh;
  /* min-height: 664px; */
  /* max-height: 954px; */
  position: relative;
  overflow: hidden;
  margin-top: -90px;
  margin-bottom: -140px;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%); */
  /* optional */
}

.slide-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--accent);
  transform: scale(1.2);
}

.slide-nav {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.slide-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--base);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slide-nav button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(227, 6, 19, 0.1);
  color: var(--accent);
  padding: 8px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s;
  margin-top: -359px;
}

.about-image:hover .image-frame {
  transform: perspective(1000px) rotateY(0deg);
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent-gradient);
  color: var(--base);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.experience-badge span {
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.9rem;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 30px;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 40px 0;
}

.feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  background: var(--accent);
  color: var(--base);
  transform: rotateY(180deg);
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  margin: 0;
}

.about-contact {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 200px;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.contact-item h5 {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  margin: 0;
  font-weight: 600;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 20px 0;
  background: var(--primary);
  color: var(--base);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.stat-item h3 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-item p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== WHY SECTION (DOCTOR IMAGE) ===== */
.why-section {
  padding: 10px 5%;
  /* background: var(--gray-light); */
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.why-header p {
  max-width: 700px;
  margin: auto;
  color: var(--gray);
  font-size: 15px;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  align-items: center;
  gap: 40px;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.why-box p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.why-image {
  text-align: center;
}

.why-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ===== TECHNO SECTION ===== */
.techno-section {
  background: #fff;
  padding: 0;
}

.techno-wrapper {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: center;
  gap: 60px;
}

.techno-left img {
  width: 100%;
  border-radius: 20px;
}

.techno-tag {
  color: #c10511;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: -50px;
}

.techno-right h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.techno-desc {
  color: var(--gray);
  font-size: 15px;
  /* margin-bottom: 40px; */
  /* max-width: 520px; */
}

.techno-features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.techno-box {
  max-width: 180px;
}

.techno-icon {
  width: 55px;
  height: 55px;
  background: var(--medical-light);
  color: #c10511;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.techno-box h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.techno-box p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== EXR (REIMBURSEMENT) SECTION ===== */
.exr-section {
  padding: 0px 5%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.exr-container {
  max-width: 1200px;
  margin: auto;
}

.exr-header {
  text-align: center;
  margin-bottom: 60px;
}

.exr-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

.exr-header p {
  font-size: 15px;
  color: #666;
  margin-top: 10px;
}

.exr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 25px;
}

.exr-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: 0.4s ease;
}

.exr-large {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.exr-wide {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

/* Background Images (add your own paths) */
.bg-family {
  background-image: url("assets/banner/1.png");
}

.bg-individual {
  background-image: url("assets/banner/ban12.png");
}

.bg-advisor {
  background-image: url("assets/banner/ban12.png");
}

.bg-employer {
  background-image: url("assets/12.png");
}

.bg-client {
  background-image: url("assets/remove.png");
}

.exr-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(221, 122, 129, 0.349)
  );
  transition: 0.4s ease;
}

.exr-content {
  position: relative;
  color: white;
  z-index: 2;
  max-width: 90%;
}

.exr-content h3 {
  font-size: 22px;
  font-weight: 600;
}

.exr-content p {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
  color: #f1f1f1;
}

.exr-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s ease;
}

.exr-card:hover {
  transform: translateY(-8px);
}

.exr-card:hover .exr-overlay {
  background: linear-gradient(
    to top,
    rgba(193, 5, 17, 0.9),
    rgba(0, 0, 0, 0.6)
  );
}

.exr-card:hover .exr-btn {
  background: #c10511;
  color: #fff;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  position: relative;
  overflow: hidden;
}

.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.category-btn {
  padding: 12px 28px;
  background: var(--base);
  color: var(--gray-dark);
  border: 2px solid var(--gray-light);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.category-btn:hover,
.category-btn.active {
  background: var(--accent);
  color: var(--base);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 59px;
  margin-bottom: 50px;
}

.product-card {
  background: var(--base);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.product-card.hidden {
  display: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.badge.new {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.badge.featured {
  background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.badge.bestseller {
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.badge.export {
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(227, 6, 19, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--base);
  color: var(--accent);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.quick-view:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-content {
  padding: 25px;
}

.product-category {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(227, 6, 19, 0.1);
  border-radius: 4px;
}

.product-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.product-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-dark);
  font-size: 0.9rem;
  background: var(--gray-light);
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 500;
}

.product-specs i {
  color: var(--accent);
  font-size: 0.8rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.btn-inquiry {
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-inquiry:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-details {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.btn-details:hover {
  color: var(--accent-dark);
  gap: 10px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  background: var(--primary);
  color: var(--base);
  position: relative;
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  height: 100%;
}

.mission-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--accent);
}

.mission-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 25px;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--base);
}

.mission-card p,
.mission-card li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.8;
}

.mission-card ul {
  padding-left: 0;
}

.mission-card li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mission-card li i {
  color: var(--accent);
  margin-top: 5px;
}

/* ===== FACILITY SECTION ===== */
.facility-section {
  background: var(--gray-light);
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.facility-item {
  text-align: center;
  padding: 40px 25px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.facility-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.facility-item:hover .facility-icon {
  background: var(--accent-gradient);
  color: var(--base);
  transform: rotateY(180deg);
}

.facility-item h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.facility-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.certifications h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cert-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  min-width: 200px;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.cert-item i {
  font-size: 3rem;
  color: var(--accent);
  transition: var(--transition);
}

.cert-item:hover i {
  transform: scale(1.1);
}

.cert-item span {
  font-weight: 600;
  color: var(--gray-dark);
  font-size: 1rem;
}

/* ===== WHY CHOOSE US (NUMBERED) ===== */
.why-choose-section {
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-card {
  padding: 40px 30px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(227, 6, 19, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.why-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(227, 6, 19, 0.1);
  margin-bottom: 20px;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===== CTA SECTION ===== */
.cta-wrapper {
  padding: 35px 2%;
}

.cta-card {
  background: var(--accent);
  border-radius: 40px;
  padding: 80px 70px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-left {
  max-width: 520px;
  color: #fff;
  z-index: 5;
}

.cta-left h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 400;
}

.cta-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #eee;
}

.cta-btn {
  background: #111;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 0px 0px 20px 0px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.cta-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.cta-right img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

.cta-watermark {
  position: absolute;
  right: -5px;
  bottom: -30px;
  font-size: 220px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.15);
  user-select: none;
  pointer-events: none;
}

.cta-dot {
  position: absolute;
  right: 120px;
  top: 120px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--gray-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--base);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial-content {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: rgba(227, 6, 19, 0.1);
  font-family: serif;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  padding: 30px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card h3 i {
  color: var(--accent);
}

.contact-card p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 10px;
}

.social-contact {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  flex: 1;
  min-width: 150px;
  padding: 15px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.social-btn.whatsapp {
  background: #25d366;
  color: white;
}

.social-btn.email {
  background: var(--accent);
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.contact-form {
  padding: 40px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-group:last-child {
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
  background: var(--base);
  color: var(--primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group:has(input[type="text"], input[type="email"], input[type="tel"]) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== MAP ===== */
.map-section {
  width: 100%;
  height: 400px;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--base);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gradient);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.footer-logo h2 {
  font-size: 1.6rem;
  color: var(--base);
  line-height: 1.2;
}

.footer-logo h2 span {
  color: var(--accent);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 5px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--base);
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom a {
  color: var(--accent);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--base);
  text-decoration: underline;
}

.footer-bottom i.fa-heart {
  color: var(--accent);
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  color: var(--base);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: var(--shadow-accent);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--base);
  border-radius: var(--border-radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--accent-dark);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

/* ===== NOTIFICATION (dynamic) ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--base);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  z-index: 10000;
  transform: translateX(150%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 400px;
  border-left: 4px solid var(--accent);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: var(--success);
}

.notification.error {
  border-left-color: #ff4757;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.notification-content i {
  font-size: 1.5rem;
}

.notification.success .notification-content i {
  color: var(--success);
}

.notification.error .notification-content i {
  color: #ff4757;
}

.notification-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
}

.notification-close:hover {
  color: var(--accent);
  background: rgba(227, 6, 19, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.8rem;
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-frame {
    transform: none !important;
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .why-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-col {
    align-items: center;
  }

  .why-box {
    justify-content: center;
    text-align: left;
  }

  .techno-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .techno-desc {
    margin: 0 auto 40px;
  }

  .techno-features {
    justify-content: center;
  }

  .exr-grid {
    grid-template-columns: 1fr;
  }

  .exr-card:nth-child(4),
  .exr-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    background: var(--base);
    flex-direction: column;
    align-items: stretch;
    padding: 30px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 20px;
  }

  .nav-links a {
    padding: 15px 0;
    justify-content: space-between;
  }

  .nav-links a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    background: var(--gray-light);
    padding-left: 20px;
    margin: 10px 0;
    border-radius: 8px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-group:has(input[type="text"], input[type="email"], input[type="tel"]) {
    grid-template-columns: 1fr;
  }


  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    width: fit-content;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item h3 {
    font-size: 3rem;
  }

  .cta-card {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }

  .cta-left h1 {
    font-size: 36px;
  }

  .cta-watermark {
    font-size: 140px;
    right: -40px;
  }

  .cta-right {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 70px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .products-grid,
  .mission-grid,
  .why-grid,
  .testimonials-grid,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .marquee span {
    font-size: 18px;
  }

  .marquee .star {
    font-size: 20px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .preloader,
  .top-bar,
  .marquee-container,
  .marquee-wrapper,
  .navbar,
  .hero-banner,
  .slide-nav,
  .slide-indicators,
  .scroll-down,
  .social-icons,
  .back-to-top,
  .footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
  }

  section {
    padding: 40px 0;
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .btn {
    border: 1px solid #000;
    color: #000;
    background: none;
  }
}


@media (max-width: 768px) {

      .hero-banner {
    height: 60vh !important;
  }

  .slide{
    height: 30vh;
  }
}