/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ffb3a0;
  --secondary-color: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-light);
  font-size: 1rem;
}

a,
button {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  animation: fadeInDown 0.6s ease-out;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.brand-logo {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: var(--transition);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

/* CHANGE: Added modern trending slider styles with animations */

/* Hero Section Slider */
.hero-section-kenburns {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenburns-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ken-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.ken-img.active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.05);
    filter: brightness(0.9);
  }
  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

.kenburns-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.5s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #ff6b35;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Slider Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 107, 53, 0.8);
  border-color: #ff6b35;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.slider-prev {
  left: 30px;
}

.slider-next {
  right: 30px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s ease-out 0.2s backwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s ease-out 0.4s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: slideInLeft 1s ease-out 0.6s backwards;
}

.hero-buttons .btn {
  padding: 12px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background: #ff6b35;
  border: none;
}

.btn-primary:hover {
  background: #e5591e;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-outline-primary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b35;
  color: #ff6b35;
  transform: translateY(-3px);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 1rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .slider-arrow {
    display: none;
  }
}


/* ===== FEATURED SECTION ===== */
.featured-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(255, 107, 53, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

/* New featured products grid layout - 2 columns with responsive design */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Featured product card styling */
.featured-product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  animation: slideInUp 0.8s ease-out;
}

.featured-product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.featured-product-card:nth-child(2) {
  animation-delay: 0.3s;
}

.featured-product-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(255, 107, 53, 0.25);
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Featured card image section */
.featured-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.featured-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-product-card:hover .featured-product-img {
  transform: scale(1.15) rotate(2deg);
}

/* Featured card badge */
.featured-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
  animation: slideInDown 0.6s ease-out;
}

/* Featured card info section */
.featured-card-info {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-product-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--text-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-product-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Featured specs section */
.featured-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0.02));
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

@media (max-width: 768px) {
  .featured-specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 1rem;
  }
}

.spec-item {
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.spec-item:nth-child(1) {
  animation-delay: 0.2s;
}

.spec-item:nth-child(2) {
  animation-delay: 0.3s;
}

.spec-item:nth-child(3) {
  animation-delay: 0.4s;
}

.spec-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.spec-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Featured benefits section */
.featured-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  animation: slideInRight 0.6s ease-out;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.3s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.4s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.5s;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Featured button */
.featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.featured-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.featured-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.featured-btn:hover::before {
  left: 100%;
}

.featured-btn i {
  transition: transform 0.3s ease;
}

.featured-btn:hover i {
  transform: translateX(5px);
}

/* Animation for featured cards on scroll */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  background-color: var(--bg-light);
}

.feature-box {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  opacity: 0;
  border-radius: 15px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-box:hover::after {
  opacity: 0.1;
}

.feature-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--bg-white);
}

.feature-box h4 {
  margin-bottom: 0.5rem;
}

.feature-box p {
  margin: 0;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
  background-color: var(--bg-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-box {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.brand-logo-box:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: var(--shadow-lg);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: var(--bg-white);
  padding: 4rem 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-light:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.footer h5 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* ===== PRODUCTS PAGE ===== */
.products-section {
  background-color: var(--bg-white);
}

.filter-section {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 25px;
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-item {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-item:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0s;
}

.product-item:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.1s;
}

.product-item:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.2s;
}

.product-item:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.3s;
}

.product-item:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.4s;
}

.product-item:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.5s;
}

.product-item:nth-child(7) {
  animation: fadeInUp 0.6s ease-out 0.6s;
}

.product-item:nth-child(8) {
  animation: fadeInUp 0.6s ease-out 0.7s;
}

.product-item:nth-child(9) {
  animation: fadeInUp 0.6s ease-out 0.8s;
}

.product-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.product-image {
  height: 250px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-img {
  transform: scale(1.1);
}

.zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 53, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-image:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.brand-name {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.spec {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Updated product item to show manufacturing process on click -->
.product-item {
  cursor: pointer;
}

.product-item.expanded .manufacturing-process {
  display: block;
}

/* ===== BRANDS PAGE ===== */
.brands-detail-section {
  background-color: var(--bg-white);
}

.brand-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  opacity: 0;
  border-radius: 15px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.brand-card:hover::before {
  opacity: 0.05;
}

.brand-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.brand-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.brand-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.brand-content p {
  margin-bottom: 1rem;
}

.brand-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.brand-features i {
  color: var(--primary-color);
  font-weight: 700;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  background-color: var(--bg-white);
}

.about-image {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-placeholder {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.product-range-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.product-range-card:hover {
  background-color: var(--primary-light);
  transform: translateY(-5px);
}

.product-range-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-range-card h4 {
  margin-bottom: 0.5rem;
}

.mission-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid var(--primary-color);
}

.mission-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission-card i {
  color: var(--primary-color);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background-color: var(--bg-white);
}

.contact-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background-color: var(--primary-light);
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.8rem;
  color: var(--bg-white);
}

.contact-card h4 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin: 0;
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
}

.form-control::placeholder {
  transition: color 0.3s ease;
}

.form-control:focus::placeholder {
  color: var(--primary-color);
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-item h5 {
  margin-bottom: 0.25rem;
}

.benefit-item p {
  margin: 0;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  animation: countUp 2s ease-out;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--bg-light);
  padding: 4rem 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  margin: 0;
  color: var(--text-dark);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  background: var(--bg-white);
  padding: 4rem 2rem;
}

.cert-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.cert-card:hover {
  background: var(--primary-light);
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.cert-card h4 {
  margin-bottom: 0.5rem;
}

/* ===== PROJECTS SHOWCASE ===== */
.projects-section {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  padding: 4rem 2rem;
}

.project-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
}

.project-image {
  height: 250px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.project-card:hover .project-image::after {
  background: rgba(0, 0, 0, 0.3);
}

.project-info {
  padding: 1.5rem;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* ===== CALCULATOR SECTION ===== */
.calculator-section {
  background: var(--bg-light);
  padding: 4rem 2rem;
}

.calculator-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto;
}

.calculator-input {
  margin-bottom: 1.5rem;
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
  animation: slideUp 0.6s ease-out;
}

.result-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--bg-white);
  padding: 4rem 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* ===== ENHANCED BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .project-image {
    height: 200px;
  }

  .hero-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-product-card {
    padding: 1rem;
  }

  .hero-product-img {
    height: 100px;
  }

  .hero-product-card h5 {
    font-size: 0.9rem;
  }

  .hero-product-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .manufacturing-process {
    padding: 0.75rem;
  }

  .manufacturing-process li {
    font-size: 0.85rem;
  }
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes neon-glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.5);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateCard {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== ANIMATION UTILITIES ===== */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ===== IMAGE MODAL / LIGHTBOX ===== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.close-modal:hover {
  color: var(--primary-color);
  transform: scale(1.2) rotate(90deg);
}

.modal-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.1rem;
  text-align: center;
  max-width: 80%;
  animation: slideUp 0.4s ease-out 0.2s both;
}

/* ===== ENHANCED GLASS EFFECT CARDS ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
  transform: translateY(-5px);
}

/* ===== MODERN PAGE HEADER WITH BACKGROUND IMAGE AND OVERLAY ===== */
.modern-header {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  animation: fadeInUp 0.8s ease-out;
}

.header-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-out;
}

.header-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.header-breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.header-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.header-breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

/* ===== MANUFACTURING PROCESS SECTIONS WITH STEP CARDS ===== */
.manufacturing-section {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
  border-radius: 20px;
  padding: 2.5rem;
  margin: 2rem 0;
  border: 2px solid var(--border-color);
  animation: fadeInUp 0.8s ease-out;
  display: none;
}

.manufacturing-section.show {
  display: block;
}

.manufacturing-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

.manufacturing-header h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.manufacturing-header h3 i {
  font-size: 1.8rem;
  animation: spin 3s linear infinite;
}

.manufacturing-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
}

.manufacturing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step-card:hover::before {
  opacity: 0.05;
}

.step-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  animation: scaleIn 0.6s ease-out;
}

.step-card h5 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== ADD SPIN ANIMATION FOR MANUFACTURING ICON ===== */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Added new animations for enhanced visual effects */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced section animations for better visual hierarchy */
.section-header {
  animation: slideInUp 0.8s ease-out;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: scaleIn 0.8s ease-out 0.3s both;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Enhanced product card animations */
.product-card {
  animation: slideInUp 0.6s ease-out;
  transition: all 0.3s ease;
}

.product-card:hover {
  animation: pulse-glow 2s infinite;
}

/* Added staggered animation for feature boxes */
.feature-box {
  animation: slideInUp 0.6s ease-out;
  transition: all 0.3s ease;
}

.feature-box:nth-child(1) {
  animation-delay: 0s;
}
.feature-box:nth-child(2) {
  animation-delay: 0.1s;
}
.feature-box:nth-child(3) {
  animation-delay: 0.2s;
}
.feature-box:nth-child(4) {
  animation-delay: 0.3s;
}

/* Enhanced stat card animations */
.stat-card {
  animation: bounce-in 0.8s ease-out;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Enhanced testimonial card animations */
.testimonial-card {
  animation: slideInUp 0.6s ease-out;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

/* Enhanced certification card animations */
.cert-card {
  animation: scaleIn 0.6s ease-out;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

/* Added smooth transitions for all interactive elements */
button,
a,
input,
textarea,
select {
  transition: all 0.3s ease;
}

/* Enhanced CTA section with gradient animation */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* Added loading animation for buttons */
.btn:active {
  animation: pulse 0.6s ease-out;
}


