:root {
  --primary-color: #0066cc;
  --secondary-color: #00a859;
  --accent-color: #ff6b35;
  --dark-color: #1a1a2e;
  --dark-blue: #2f86dc;
  --light-bg: #f8f9fa;
  --gray-light: #e9ecef;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 600;
  /* font-size: 1rem; */
  font-style: italic;
  width: 100%;
}
body h2 {
  font-weight: 800;
  margin-top: 70px;
  margin-bottom:50px;
  text-align: center;
  color: #0066cc;
}

body.content-hidden {
  overflow: hidden;
}

body.content-hidden > *:not(.preloader) {
  opacity: 0;
  visibility: hidden;
}
.container-fluid {
  width: 90%;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  animation: fadeIn 0.8s ease-out both;
}

.preloader-capsule {
  
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}

.preloader-capsule::before,
.preloader-capsule::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 2px solid transparent;
  animation: capsuleGlow 2s infinite;
}


.preloader-capsule::after {
  animation-delay: 0.4s;
}

.preloader-icon {

  animation: rotate 2.4s linear infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
 
}

.preloader-brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--primary-color);
}

.preloader-tagline {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

@keyframes capsuleGlow {
  0%,
  100% {
    transform: rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: rotate(180deg);
    opacity: 1;
  }
}



/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 1rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-color) 50%,
    #004499 100%
  );
  color: white;
  padding: 240px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 168, 89, 0.15) 0%,
      transparent 50%
    ),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
  z-index: 0;
}

/* Animated Shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 15s infinite ease-in-out, rotate 20s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-text i {
  color: #ffd700;
  animation: pulse 2s infinite, rotateStar 3s linear infinite;
}

@keyframes rotateStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}


.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.3s both, slideInLeft 1s ease-out 0.5s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.title-line-1 {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-2 {
  display: block;
  background: linear-gradient(135deg, #00a859 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.5s both, fadeIn 1s ease-out 0.7s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.9;
  }
}

.hero-certifications {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  animation: slideInRight 0.8s ease-out 0.7s both,
    pulseGlow 2s ease-in-out 1.5s infinite;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  }
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cert-badge i {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn-hero-primary {
  background: white;
  color: var(--primary-color);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: slideInUp 0.8s ease-out 0.9s both,
    buttonPulse 2s ease-in-out 1.5s infinite;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
  width: 300px;
  height: 300px;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
  }
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  color: var(--dark-blue);
}

.btn-hero-primary i:last-child {
  transition: transform 0.3s;
}

.btn-hero-primary:hover i:last-child {
  transform: translateX(5px);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s;
  text-decoration: none;
  backdrop-filter: blur(10px);
  animation: slideInUp 0.8s ease-out 1s both;
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::after {
  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.5s;
}

.btn-hero-secondary:hover::after {
  left: 100%;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  color: white;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 0.8s ease-out 1s both, scaleIn 0.6s ease-out 1.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #00a859 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: countUp 1s ease-out 1.3s both, bounce 0.6s ease-out 1.5s both;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Hero Image Section */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.8s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-container {
  position: relative;
  padding: 2rem;
  min-height: 400px;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(0, 168, 89, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  animation: glow 3s ease-in-out infinite, rotateGlow 8s linear infinite;
  opacity: 0.5;
}

@keyframes rotateGlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-main-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
  animation: imageZoomIn 1s ease-out 0.8s both,
    imageFloat 4s ease-in-out 2s infinite;
}

@keyframes imageZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-main-image:hover {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 102, 204, 0.1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite,
    cardSlideIn 0.8s ease-out 1.2s both;
  border: 1px solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.floating-card i {
  font-size: 1.6rem;
  color: var(--secondary-color);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.card-1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 25%;
  left: 5%;
  animation-delay: 1s;
}

.card-3 {
  top: 55%;
  right: 8%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: #ffffffb3;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.arrow span {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: arrowDown 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrowDown {
  0%,
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
}

/* --- Tablets (769px to 1024px) --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-section {
    padding: 120px 0 80px; /* Tablet par padding kam ki */
  }
  .floating-card {
    scale: 0.8; /* Tablet par card hide karne ki bajaye chota kar dein */
    display: block; 
  }
}

/* --- Mobile (Max 768px) --- */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh; /* Screen ki poori height cover karega */
    padding: 150px 15px 40px; /* Top padding kam ki taaki content upar aaye */
    display: flex;
    align-items: center;
  }

  .hero-title {
    font-size: 2.2rem; /* Thoda mazeed chota for readability */
    line-height: 1.2;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1rem;
    justify-content: center; /* Stats ko center mein rakhega */
    flex-wrap: wrap; /* Agar stats zyada hon toh next line mein aa jayen */
  }

  .stat-item {
    text-align: center;
    flex: 1 1 40%; /* Mobile par 2 stats ek line mein dikhane ke liye */
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%; /* Mobile par buttons full width honge */
    max-width: 300px; /* Lekin had se zyada lambe nahi */
    padding: 12px 20px;
    justify-content: center;
  }

  .floating-card {
    display: none; /* Mobile par overlap se bachne ke liye hide */
  }
}
/* Section Styling */
.section {
  padding: 30px 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.15rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  overflow: hidden;
  background: white;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  border-radius: 12px 12px 0 0;
  height: 70%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-img-top {
  transform: scale(1.1);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Product Cards */
.product-card {
  border: 2px solid var(--gray-light);
  border-radius: 15px;
  padding: 0;
  /* margin-bottom: 2.5rem; */
  transition: all 0.4s;
  background: white;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
  transform: translateY(-8px);
  text-decoration: none;
  color: inherit;
}

.product-image {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 15px 15px 0 0;
  margin-bottom: 0;
  transition: transform 0.4s;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-card-body {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.product-category {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.product-benefits {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.badge-custom {
  background: linear-gradient(135deg, var(--secondary-color), #00c968);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.3rem;
  display: inline-block;
}

/* Partner Section */
.partner-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s;
  border-left: 4px solid var(--primary-color);
}

.partner-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateX(5px);
}

.certification-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), #00c968);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 0.4rem;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 168, 89, 0.3);
}

/* .fix-container{
    padding-left: 10%;
    padding-right: 10%;
} */

/* Category Tabs */
.category-tabs {
  border-bottom: 3px solid var(--gray-light);
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.category-tab {
  padding: 1rem 2.5rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  font-size: 1.1rem;
  position: relative;
}

.category-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.category-tab:hover {
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Contact Section */
.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
}

.contact-info h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: white;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}


/* Product Detail Page */
.product-detail-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  color: white;
  padding: 120px 0 60px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.product-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* Background image will be added via inline styles */

.product-detail-image {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.detail-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.detail-sections {
  padding: 2.5rem;
  margin-bottom: 2rem;
}

/* .product-detail-images {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
} */
.product-image {
  background: white;
  border-radius: 15px;
  /* max-width: 500px; */
  /* height: 45%;
    padding: 2.5rem; */
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.product-image h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 1rem;
}
.product-detail-images {
  /* margin: 20px; */
  height: 350px;
}
.product-image-medicine {
  margin: 10px;
  margin-bottom: 40px;
}

.product-detail-imagess {
  /* margin: 20px; */
  width: 200px;
  height: 100px;
}

.detail-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 1rem;
}

.detail-section ul {
  list-style: none;
  padding-left: 0;
}

.detail-section ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}

.detail-section ul li:last-child {
  border-bottom: none;
}

.detail-section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* detail-sections  */

.detail-sections h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gray-light);
  padding-bottom: 1rem;
}

.detail-sections ul {
  list-style: none;
  padding-left: 0;
}

.detail-sections ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--gray-light);
}

.detail-sections ul li:last-child {
  border-bottom: none;
}

.detail-sections ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Breadcrumb */
.breadcrumb-custom {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-custom a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-custom .active {
  color: var(--text-light);
}

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 150px 0 60px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* Background image will be added via inline styles on each page */

.page-header-content {
  position: relative;
  z-index: 2;
}

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-box-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  /* .section {
    padding: 60px 0;
  } */

  .product-image {
    height: 200px;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Industrial Accents */
.industrial-accent {
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 102, 204, 0.05) 10px,
    rgba(0, 102, 204, 0.05) 20px
  );
}

/* Grid Pattern Overlay */
.grid-overlay {
  background-image: linear-gradient(
      rgba(0, 102, 204, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ------------Apna Extra Edit Css -------------- */
.partner-image1 img {
  padding: 30px;
}

.product-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;  /* <span style="color:#32CD32">Show only 3 lines</spa> */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.api-stats {
  display: flex;
  justify-content: space-around;
}

.career-contents {
  margin: 5%;
  margin-top: 1%;
}

.partner-section .btn {
  align-items: center;
  text-align: center;
}

/* Tablets */
/*@media (max-width: 992px) {*/
/*  .page-header {*/
/*    padding-top: 330px;*/
/*  }*/
/*  .page-header::after {*/
/*    width: 50%;*/
/*  }*/
/*}*/

/* -----------------------
   RESPONSIVE
------------------------ */

/* Tablets */
@media (max-width: 992px) {
  .partner-image1 {
    flex-direction: column;
  }
  .partner-image1 img {
    width: 100%;
  }

  .api-stats {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  .logo-container-img img{
    width: 30%;
    height: 60%;
    /* grid-template-columns: repeat(2, 1fr); */
  }

  .intro-text {
    font-size: 0.95rem;
  }

  .partner-features li {
    font-size: 0.95rem;
  }

  .category-tabs {
    justify-content: center;
  }

  .category-tab {
    flex: 1;
    text-align: center;
  }

  .api-stats ul {
    width: 100%;
  }
}

/* Extra Small */
@media (max-width: 480px) {
  .logo-container-img {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-image1 img {
    height: auto;
  }
}

/*line-clamp*/

.line-clamp h5{
  display: -webkit-box;
  -webkit-line-clamp: 1;  /* <span style="color:#32CD32">Show only 3 lines</span> */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------- Extra Edit Css ----------------------------  */
/* --- Final Mobile Overhaul (Max 991px) --- */
@media (max-width: 991px) {
  .hero-section {
    padding: 150px 0 60px !important; /* Top padding navbar ke liye */
    text-align: center;
    min-height: 55vh; /* Mobile screen bhari hui lagegi */
    display: flex;
    align-items: center;
    /* margin-bottom: -30px !important; */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  /* Title ko bada aur bold kiya */
  .hero-title {
    font-size: 1.8rem !important; 
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important; /* Paragraph readable hoga */
    line-height: 1.6;
    margin-bottom: 2rem !important;
    max-width: 100%;
  }

  /* Buttons Full Width */
  .hero-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .hero-buttons span{
    font-size: 1.5rem !important;
    /* color: #fff; */
    font-weight: 600;
  }

  .btn-hero-primary, 
  .btn-hero-secondary {
    width: 100% !important;
    max-width: 350px;
    padding: 14px 20px !important;
    font-size: 1.1rem !important;
    justify-content: center;
    border-radius: 12px;
  }

  /* Stats Layout Fix */
  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem !important;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 30%; /* Mobile par 3 stats ek line mein */
    min-width: 90px;
  }

  .stat-number {
    font-size: 1.2rem !important;
    font-weight: 800;
    color: #fff;
  }

  .stat-label {
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  /* Image wrapper mobile par space na le */
  .hero-image-wrapper {
    display: none; 
  }

  .scroll-indicator {
    display: none; /* Mobile par clean look ke liye */
  }
  .hero-badge span{
    font-size: 1.5rem !important;
    padding: 0.5rem 1rem !important;
  }
}



/* ------------------------- Navbar k liye ----------------- */
@media (max-width: 991px) {
  .navbar {
    /* Padding kam kari hai taaki logo aur toggle button sides se chipke na */
    padding: 0px 0px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
  }

  .navbar-brand img {
    /* Logo ka size mobile ke liye 60px-80px perfect rehta hai */
    height: 100px !important; 
    width: auto !important;
  }

  .navbar-toggler {
    border: none !important;
    padding: 5px !important;
    outline: none !important;
  }
  
  .navbar-toggler-icon {
    /* 4em bohot bada tha, ise standard size pe rakha hai */
    width: 2em !important;
    height: 2em !important;
  }

  .navbar-collapse {
    background: #ffffff !important;
    margin-top: 10px;
    border-radius: 12px;
    padding: 10px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-item {
    padding: 10px 0;
  }

  .nav-link {
    /* 2rem mobile screen ke liye bohot bada hai, 1.2rem standard hai */
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 10px !important;
  }

  .nav-link.active {
    background-color: rgba(0, 102, 204, 0.05);
    color: #0066cc !important;
  }
}

/* Chote phones ke liye extra adjustment */
@media (max-width: 375px) {
  .navbar-brand img {
    height: 50px !important;
  }
  
  .navbar {
    padding: 10px 15px !important;
  }
}

/* ------------------------- */
/* --- Why Choose Us Mobile Fix (Max 991px) --- */
@media (max-width: 991px) {
  /* Flexbox ko band karke Block layout force karein */
  .mobile-stack-features {
    display: block !important;
    width: 100% !important;
  }

  /* Har column ko 100% width aur vertical spacing dein */
  .mobile-stack-features > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    display: block !important;
    margin-bottom: 30px !important; /* Cards ke beech gap */
    padding: 0 !important;
  }

  /* Section Title bada aur bold */
  .section-titl {
    font-size: 2rem !important;
    font-weight: 800 !important;
    line-height: 1.1;
    margin-bottom: 40px !important;
  }

  /* Feature Box Styling */
  .feature-box {
    padding: 3.5rem 1.5rem !important; /* Zyada space taaki premium lage */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-radius: 20px;
  }

  /* Icons highlight karein */
  .feature-box-icon {
    font-size: 4.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Box Heading bada karein */
  .feature-box h4 {
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1.2rem;
  }

  /* Description text readable banayein */
  .feature-box p {
    font-size: 1rem !important;
    line-height: 1.7;
    color: #444;
  }
}
/* ---------------- About ka sahi kero --------------- */


@media (max-width: 991px) {
  /* .section {
    padding: 60px 20px !important; 
  } */

  /* Section Main Title */
  .section-title {
    font-size: 2.5rem !important; 
    text-align: center;
    font-weight: 800 !important;
    margin-bottom: 30px !important;
  }

  /* Image Spacing */
  .img-fluid {
    margin-bottom: 30px !important;
    width: 100%;
  }


  .lead {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px !important;
  }

  /* Main Paragraph Text */
  .section p:not(.lead) {
    /* font-size: 1.3rem !important;  */
    line-height: 1.7 !important;
    text-align: center;
    color: #444;
  }

  .list-unstyled li {
    font-size: 1.1rem !important; /* List ka font bada kiya */
    font-weight: 500;
    margin-bottom: 12px !important;
    display: flex;
    align-items: flex-start;
  }

  .list-unstyled i {
    font-size: 1.2rem !important; /* Check icon bada kiya */
    margin-top: 3px;
  }

  /* Button alignment for mobile */
  .btn-primary {
    display: flex !important;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0 !important; /* Center button */
    padding: 15px !important;
    font-size: 1.1rem !important;
    justify-content: center;
    border-radius: 50px;
  }
}

/* ----------- Our Partnerv----------------------- */

/* --- ONLY Mobile & Tablet Fix (Max 991px) --- */
@media (max-width: 991px) {
  /* Flexbox ko band karke Block kar diya, isse columns stack ho jayenge */
  .mobile-stack {
    display: block !important; 
    width: 100% !important;
  }

  /* Har column ko 100% width force karein */
  .mobile-stack > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    display: block !important;
    margin-bottom: 25px !important; /* Do cards ke beech gap */
    padding: 0 10px !important;
  }

  /* Text ka size bada karein (Impactful Look) */
  .section-title-main {
    font-size: 1.8rem !important; 
    line-height: 1.1 !important;
    font-weight: 800 !important;
  }

  .info-box {
    padding: 40px 20px !important;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-radius: 20px;
  }

  .info-box h3 {
    font-size: 1.8rem !important; /* Card heading badi ki */
    font-weight: 700 !important;
  }

  .info-box p {
    font-size: 1.25rem !important; /* Paragraph readable banaya */
    line-height: 1.6;
    color: #444;
  }

  .icon-box {
    font-size: 4.5rem !important; /* Icons bade kiye */
    margin-bottom: 1.5rem !important;
  }
}
/* ------------------------------footer ---------- */

/* --- STRICT FOOTER MOBILE OVERRIDE (Max 991px) --- */
@media (max-width: 991px) {
  /* 1. Flexbox ko band karke sections ko stack karein */
  .footer-main-row {
    display: block !important; /* Flex ko Block mein badal diya */
    width: 100% !important;
    text-align: center !important; /* Mobile par center alignment */
  }

  /* 2. Har column ko 100% width force karein */
  .footer-main-row .col-md-4, 
  .footer-main-row .col-12,
  .footer-main-row div[class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
    margin-bottom: 40px !important; /* Sections ke beech gap */
    padding: 0 10px !important;
  }

  /* 3. Text Sizes ko bada karein (Impactful Look) */
  .footer-h5 {
    font-size: 1.6rem !important; /* Headings badi ki */
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    text-transform: uppercase;
  }

  .footer-text-p, 
  .footer-ul a, 
  .footer-contact-info p {
    font-size: 1.25rem !important; /* Main text ab readable hai */
    line-height: 1.7 !important;
    color: #cccccc !important;
  }

  .footer-ul li {
    margin-bottom: 12px !important;
    justify-content:center
  }

  /* Logo adjustment */
  .footer-logo-img {
    margin: 0 auto 15px !important;
  }
}
/* ------------ Product -------------- */

/* --- Product Range Mobile Fix (Max 991px) --- */
@media (max-width: 991px) {
    /* 1. Flexbox ko band karke cards ko stack karein */
    .product-stack-mobile {
        display: block !important;
        width: 100% !important;
    }

    /* 2. Har column ko 100% width force karein */
    .product-stack-mobile > div {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        display: block !important;
        margin-bottom: 35px !important; /* Cards ke beech gap */
        padding: 0 !important;
    }

    /* 3. Section Title & Subtitle bada karein */
    /* .section-titl {
        font-size: 2.8rem !important;
        line-height: 1.1;
    } */

    /* .section-subtitle {
        font-size: 2rem !important;
        line-height: 1.6;
        
    } */

    /* 4. Card Styling Improvements */
    .product-card-custom {
        border-radius: 20px !important;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        border: none !important;
    }

    .product-card-custom .card-body {
        padding: 2.5rem 1.5rem !important;
        text-align: center;
    }

    .product-card-custom .card-title {
        font-size: 1.9rem !important;
        font-weight: 800 !important;
        margin-bottom: 1.2rem;
    }

    .product-card-custom .card-text {
        font-size: 1.2rem !important;
        line-height: 1.7;
        color: #444;
        margin-bottom: 2rem;
    }

    /* Buttons mobile par bade aur centered */
    .btn-product {
        width: 100% !important;
        padding: 12px !important;
        font-size: 1.1rem !important;
        border-radius: 50px !important;
    }

    .w-mobile-100 {
        width: 100% !important;
        padding: 15px !important;
    }
}