/* Custom Variables */
:root {
  /* Primary Colors */
  --primary: #1A63A2;
  --primary-dark: #0d3a63;
  --primary-light: #5AB6F2;
  --primary-bg: #1A63A2;
  --primary-color: #1A63A2;
  
  /* Accent Colors */
  --accent: #FF9100;
  --accent-light: #FFB74D;
  --accent-lighter: #FFE0B2;
  
  /* Neutral Colors */
  --dark: #212529;
  --gray-dark: #495057;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  --light: #f8f9fa;
  --white: #ffffff;
  
  /* Text Colors */
  --heading-color: #1A63A2;
  --heading-color2: #0d3a63;
  --body-color: #4a5568;
  --title-color: #1a202c;
  
  /* UI Colors */
  --border-color: #e2e8f0;
  --link-hover: #5AB6F2;
  --success: #38a169;
  --warning: #d69e2e;
  --danger: #e53e3e;
  --info: #3182ce;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
}

/* Base Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--body-color);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
p {
  color: var(--dark);
}
/* Header Top */
.header-top {
  background-color: var(--primary-bg);
  padding: 7px 0;
  color: var(--white);
}

.header-contact {
  display: flex;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  font-size: 14px;
}

.contact-item a {
  color: var(--white);
}

.contact-item a:hover {
  color: var(--light);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  font-size: 14px;
}

.social-links a:hover {
  color: var(--light);
}

/* Main Header */
.main-header {
  background-color: var(--white);
  box-shadow: 0px 10px 20px rgba(2, 29, 53, 0.06);
  position: relative;
  z-index: 41;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  animation: stickySlideDown 0.4s ease-out;
}

@keyframes stickySlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Hero Image Styling */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image--contain {
  object-fit: contain;
  background-color: #021526;
}

/* Hero Slider Height */
.hero-slider {
  height: 640px;
}

.hero-slider .swiper-slide {
  height: 640px;
  position: relative;
  overflow: hidden;
}

/* Content spacing inside hero slide */

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-video {
    height: 100%;
  }
  
  .hero-slider {
    height: 520px;
  }
  
  .hero-slider .swiper-slide {
    height: 520px;
  }

  .hero-content {
    margin-top: 70px;
    padding: 0 32px;
  }
}

@media (max-width: 480px) {
  .hero-video {
    height: 100%;
  }
  
  .hero-slider {
    height: 440px;
  }
  
  .hero-slider .swiper-slide {
    height: 440px;
  }

  .hero-content {
    margin-top: 60px;
    padding: 0 24px;
  }
}

.custum-btn{
  background-color: floralwhite !important;
  color: var(--heading-color2) !important;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
  font-weight: 600;
  box-shadow: 0px 2px 10px rgba(255, 145, 0, 0.4);
}

.cta-section .custum-btn {
  background-color: floralwhite !important;
  color: var(--heading-color2) !important;
  border: none !important;
}

.expert-banner .custum-btn {
  background-color: floralwhite !important;
  color: var(--heading-color2) !important;
  border: none !important;
}

.expert-banner .custum-btn span,
.expert-banner .custum-btn i {
  color: var(--heading-color2) !important;
}

.custum-btn:hover {
  background-color: #Ff9100 !important;
  color: floralwhite !important;
  transform: translateY(-3px);
  box-shadow: 0px 12px 24px rgba(255, 145, 0, 0.35);
}

/* Logo */
.header-logo {
  position: relative;
  padding: 0px 0px 0px 40px;
}

.logo img {
  max-height: 60px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  color: var(--title-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 37px 0;
  display: block;
}

.nav-link:hover {
  color: var(--heading-color);
}

.nav-item.has-children > .nav-link::after {
  content: "+";
  display: inline-block;
  margin-left: 5px;
  font-weight: 600;
}

.nav-item.has-children:hover > .nav-link::after {
  content: "−";
}

/* Mega Menu Dropdown */
/* Dropdown Menu */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 230px;
  padding: 15px 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu .nav-item {
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.sub-menu .nav-link {
  padding: 8px 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.sub-menu .nav-link:hover {
  padding-left: 25px;
  color: var(--heading-color);
}

.products-submenu {
  padding: 0;
  min-width: 560px;
}

.products-dropdown {
  list-style: none;
}

.products-mega-menu {
  display: flex;
  gap: 32px;
  padding: 28px 32px;
  background: #fff;
  box-shadow: 0 24px 40px rgba(17, 30, 74, 0.14);
  border-radius: 18px;
  min-width: 560px;
}

.products-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.products-category-column {
  width: 220px;
  border-right: 1px solid #e6ebf5;
  padding-right: 24px;
}

.products-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-category-link {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading-color2);
  transition: all 0.2s ease;
}

.products-category-link:hover,
.products-category-link:focus {
  background: rgba(31, 95, 255, 0.12);
  color: var(--heading-color2);
}

.products-category-link.is-active {
  background: var(--primary-bg);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 95, 255, 0.25);
}

.products-category-link.view-all {
  background: rgba(31, 95, 255, 0.08);
}

.products-subcategory-column {
  flex: 1;
  min-width: 280px;
}

.products-subcategory-panel {
  display: none;
}

.products-subcategory-panel.is-active {
  display: block;
}

.products-subcategory-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color2);
  margin: 0 0 16px;
}

.products-subcategory-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px 20px;
}

.products-subcategory-grid a {
  display: block;
  font-weight: 500;
  color: var(--body-color);
  transition: color 0.2s ease;
}

.products-subcategory-grid a:hover,
.products-subcategory-grid a:focus {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .products-mega-menu {
    flex-direction: column;
    gap: 24px;
    min-width: 100%;
  }

  .products-category-column {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6ebf5;
    padding-right: 0;
    padding-bottom: 16px;
  }

  .products-subcategory-grid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--title-color);
  background-color: var(--light);
  transition: all 0.3s ease;
}

.action-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.action-btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  transition: all 0.3s ease;
}

.enquiry-btn {
  background-color: var(--heading-color2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background-color: var(--dark);
  color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--title-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle.active {
  color: var(--primary);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 20px 20px;
  }
  
  .main-nav.mobile-open {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .nav-item {
    width: 100%;
    margin: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }
  
  .nav-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .nav-link {
    display: block;
    padding: 10px 0;
    color: var(--title-color);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0 20px;
    margin-top: 10px;
  }
  
  .products-mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0 20px;
    margin-top: 10px;
    display: block !important;
  }
  
  .products-dropdown {
    display: block;
  }
  
  .products-column {
    width: 100%;
    margin-bottom: 20px;
  }
  
  /* Products Page Mobile Styles */
  .product-categories-section {
    padding: 20px 0;
  }
  
  .category-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .category-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
    min-width: auto;
  }
  
  .subcategory-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .subcategory-card {
    margin-bottom: 0;
  }
  
  .category-header {
    text-align: center;
    padding: 20px;
  }
  
  .category-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .category-header p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Blog Page Mobile Styles */
  .blog-card {
    margin-bottom: 30px;
  }
  
  .blog-img {
    height: 200px;
    object-fit: cover;
  }
  
  .blog-body {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 20px;
    line-height: 1.4;
  }
  
  /* Counter Section Mobile */
  .counter-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .counter-card {
    width: 100%;
    max-width: 300px;
  }
  
  /* Client Slider Mobile */
  .clients-section {
    padding: 40px 0;
  }
  
  .slider-container {
    padding: 0 30px;
  }
  
  .slide {
    min-width: 150px;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  /* About Page Mobile */
  .about-img-box {
    margin-bottom: 30px;
  }
  
  .company-highlights {
    position: static;
    transform: none;
    margin-top: 20px;
  }
  
  .highlight-item {
    margin-bottom: 15px;
  }
  
  .feature-list.two-column {
    columns: 1;
  }
  
  .presence-map {
    margin-bottom: 30px;
  }
  
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .values-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  /* Home Page Mobile */
  .product-card {
    margin-bottom: 30px;
  }
  
  .feature-container {
    text-align: left;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  }
  
  .feature-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .feature-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.25rem;
  }
  
  .feature-container p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content {
    margin-bottom: 30px;
  }
  
  .expert-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.swiper-slide1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  color: #fff;
  padding: 0 clamp(24px, 5vw, 48px);
  margin-top: 120px;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s ease;
}

.hero-title {
  color: #0d3a63;
}

.swiper-slide-active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

/* Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
}

/* Keep your existing hero content styles */
.hero-subtitle {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle img {
  margin-right: 10px;
  height: 20px;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn,
.hero-btn-secondary {
  font-size: 18px;
  text-decoration: none;
  padding: 12px 25px;
  background: var(--heading-color2);
  color: #ffffff;
  box-shadow: 0px 2px 10px rgba(31, 95, 255, 0.4);
  transition: all 0.4s ease-in-out;
}

.hero-btn-secondary {
  background: linear-gradient(135deg, #dce4ff 0%, #f0f4ff 100%);
  color: var(--heading-color2);
}

.hero-btn:hover,
.hero-btn-secondary:hover {
  box-shadow: 0px 12px 24px rgba(31, 95, 255, 0.35);
}

.btn-primary {
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 25px;
  background: var(--heading-color2);
  color: #ffffff;
  box-shadow: 0px 2px 10px rgba(31, 95, 255, 0.4);
  transition: all 0.4s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-buttons {
    align-items: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

/* Dark Section Styles */
.section.bg-dark {
  background-color: var(--heading-color2);
  color: #ffffff;
}

.section.bg-dark .section-title,
.section.bg-dark h2,
.section.bg-dark h3,
.section.bg-dark h4,
.section.bg-dark .section-subtitle {
  color: #ffffff !important;
}

.section.bg-dark .section-title:after {
  background: #ffffff;
}

/* Vision & Mission Section */
.vm-section {
  background-color: var(--heading-color2);
  color: #ffffff;
  padding: 80px 0;
}

.vm-section h3 {
  color: #ffffff !important;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.vm-section h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #ffffff;
  bottom: -8px;
  left: 0;
}

.vm-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.vm-icon {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
}

.vision-box,
.mission-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: var(--heading-color2);
}

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

.section-title.center:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--heading-color);
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

/* About Section */
.section.about-section {
  background-color: var(--heading-color2);
  color: #ffffff;
}

.section.about-section .section-subtitle, 
.section.about-section .section-title,
.section.about-section p,
.section.about-section h4,
.section.about-section .feature-list li {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section.about-section .section-title:after {
  background: #ffffff;
}

.about-section .section-subtitle {
  color: #ffffff !important;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-section .feature-list li {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-img-box {
  position: relative;
  padding-right: 30px;
}

.about-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.company-highlights {
  position: absolute;
  bottom: -6px;
  right: 40px;
  max-width: 200px;
  width: 100%;
  background: transparent;
  padding: 15px 8px;
  border-radius: 50px 20px 20px 20px;
  box-shadow: none;
  text-align: left;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.highlight-item i {
  font-size: 24px;
  color: white;
  margin-right: 15px;
}

.highlight-item h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #Ff9100;
  font-weight: bold;
   
}

.highlight-item p {
  font-size: 13px;
  color: white;
  margin: 0;
}

.feature-box {
  background: #f9f9f9;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.feature-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: var(--dark);
}

.feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--heading-color);
}

/* =====================================================
   Product Page Styles
   ===================================================== */
.product-page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://wordpress.themeholy.com/mediax/wp-content/uploads/2023/12/breadcumb-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
  margin-bottom: 60px;
}

.product-page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 600;
}

.product-page-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.product-categories-section {
  padding: 30px 0 0;
}

.category-navigation {
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.category-tab {
  padding: 12px 25px;
  background: #f5f5f5;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-tab:hover,
.category-tab:focus {
  background: var(--heading-color);
  color: white;
  outline: none;
}

.category-tab.active {
  background: var(--heading-color);
  color: white;
}

.subcategory-menu {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: #f9fafc;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  gap: 10px;
  flex-wrap: wrap;
}

.subcategory-menu.visible {
  display: flex;
}

.subcategory-tab {
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #dce3ef;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subcategory-tab:hover,
.subcategory-tab:focus {
  background: var(--heading-color);
  color: white;
  border-color: transparent;
  outline: none;
}

.subcategory-tab.active {
  background: var(--heading-color);
  color: white;
  border-color: transparent;
}

.product-sections-wrapper {
  position: relative;
}

.product-category-section {
  display: none;
  padding: 60px 0;
}

.product-category-section.active {
  display: block;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.category-header h2 i {
  color: var(--heading-color);
}

.category-header p {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.category-subcategory-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.subcategory-section {
  display: none;
}

.subcategory-section.active {
  display: block;
}

.subcategory-header {
  margin-bottom: 25px;
  text-align: center;
}

.subcategory-header h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subcategory-header p {
  color: #6a7485;
  max-width: 720px;
  margin: 0 auto;
}

.subcategory-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.subcategory-actions .btn-link {
  color: var(--heading-color);
  font-weight: 600;
}

.subcategory-actions .btn-link:hover,
.subcategory-actions .btn-link:focus {
  color: var(--heading-color2);
  text-decoration: none;
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-grid .product1-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-grid .product1-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 250px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product1-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-actions {
  margin-top: auto;
  display: flex;
}

.product-link {
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.product-link i {
  font-size: 14px;
}

.product-link:hover,
.product-link:focus {
  color: var(--heading-color2);
  outline: none;
}

.product-title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color2);
}

.product-description {
  color: #6a7485;
  margin-bottom: 0;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #4d5766;
  font-size: 14px;
}

.product-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-features i {
  color: var(--heading-color);
}

.product-image.placeholder {
  background: repeating-linear-gradient(
      45deg,
      rgba(109, 114, 120, 0.08),
      rgba(109, 114, 120, 0.08) 10px,
      rgba(109, 114, 120, 0.16) 10px,
      rgba(109, 114, 120, 0.16) 20px
    );
  color: #4d5766;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .product-page-header h1 {
    font-size: 36px;
  }

  .category-header h2 {
    font-size: 30px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 767px) {
  .product-page-header {
    padding: 80px 0;
  }

  .product-page-header h1 {
    font-size: 30px;
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .subcategory-menu {
    overflow-x: auto;
    padding: 12px;
  }

  .subcategory-tab {
    flex: 0 0 auto;
  }

  .category-tab {
    padding: 10px 20px;
    font-size: 14px;
  }

  .category-header h2 {
    font-size: 26px;
  }

  .product-image {
    height: 200px;
  }

  .product-features {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .product-page-header {
    padding: 60px 0;
  }

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

  .product-image {
    height: 180px;
  }
}

/* Products Section */
.products-section {
  background-color: #f5f7fa;
  background-image: url("https://wordpress.themeholy.com/mediax/wp-content/uploads/2023/12/service_bg_1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.product-card {
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  height: 280px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.product-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.default-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out;
}

.hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.product-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.product-flap::before,
.product-flap::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  background: white;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.product-flap::before {
  left: 0;
  background-image: var(--default-bg);
  transform-origin: left;
}

.product-flap::after {
  right: 0;
  background-image: var(--default-bg);
  transform-origin: right;
}

.product-content {
  position: relative;
  padding: 30px 20px;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.product-icon {
  width: 100px;
  height: 100px;
  background: #e6e9ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.product-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  transition: transform 0.4s ease-in-out;
}

.product-icon i {
  font-size: 42px;
  color: var(--heading-color2);
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color2);
  transition: all 0.4s ease-in-out;
}

.product-title a {
  color: inherit;
  text-decoration: none;
}

.product-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(180deg, #c2d4ff 37.5%, #f0f4ff 100%);
  color: var(--heading-color2);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 2px 10px rgba(184, 191, 208, 0.5);
  transition: all 0.4s ease-in-out;
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-icon {
  background: #fff;
  box-shadow: 0px 10px 30px rgba(255, 145, 0, 0.25);
}

.product-card:hover .product-icon img {
  transform: rotateY(180deg);
}

.product-card:hover .product-icon i {
  color: #fff;
  transform: rotateY(180deg);
}

.product-card:hover .product-title {
  color: white;
}

.product-card:hover .product-btn {
  background: linear-gradient(135deg, #1f5fff 0%, #4a7dff 100%);
  box-shadow: 0px 5px 16px rgba(31, 95, 255, 0.35);
  color: #ffffff !important;
}

.product-card:hover .product-flap::before {
  transform: translateX(-100%);
  background-image: var(--hover-bg);
}

.product-card:hover .product-flap::after {
  transform: translateX(100%);
  background-image: var(--hover-bg);
}

.product-card:hover .hover-bg {
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .product-card {
    height: 260px;
  }
}

@media (max-width: 991px) {
  .product-card {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 60px 0;
  }

  .product-card {
    max-width: 350px;
    margin: 0 auto 30px;
    height: 260px;
  }
}
/* CTA Section Styles */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--heading-color2) 30%,
    var(--primary) 100%
  );
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section * {
  color: #ffffff;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content {
  flex: 1;
  z-index: 2;
}

.cta-image {
  flex: 1;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.cta-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.cta-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.cta-image:hover img {
  transform: scale(1.05);
}

.cta-title {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    max-width: 600px;
    width: 100%;
    margin-top: 40px;
    transform: none;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-row.stacked {
    flex-direction: column;
    gap: 24px;
  }

  .product-row.stacked .product-image {
    flex: 0 0 320px;
    max-width: 100%;
    min-height: 320px;
  }

  .product-row.stacked .product-details {
    flex: 1;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .product-row.stacked .product-image {
    flex: 0 0 280px;
    min-height: 280px;
  }

  .cta-title {
    font-size: 2rem;
  }

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

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

.subcategory-description {
  margin-bottom: 40px;
  color: var(--body-color);
}

.subcategory-products {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stacked-product-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-row.stacked {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid #e3e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(15, 35, 95, 0.08);
}

.product-row.stacked .product-image {
  flex: 0 0 420px;
  max-width: 440px;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: zoom-in;
}

.product-row.stacked .product-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.product-row.stacked .product-image:hover img {
  transform: scale(1.15);
  filter: brightness(1.05);
}

/* Zoom Modal Styles */
.image-zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  cursor: zoom-out;
}

.image-zoom-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-zoom-modal img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  filter: brightness(1.1) contrast(1.05);
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoom-close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.zoom-close-btn:hover {
  opacity: 0.7;
}

.zoom-lens {
  position: absolute;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.product-image:hover .zoom-lens {
  opacity: 1;
}

.product-row.stacked .product-image.placeholder {
  color: var(--body-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-row.stacked .product-image.placeholder span {
  padding: 60px 18px;
}

.product-row.stacked .product-details {
  flex: 1 1 0;
}

.product-row.stacked .product-title {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color2);
}

.product-row.stacked .product-tagline {
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

.product-row.stacked .product-description {
  margin-bottom: 18px;
  line-height: 1.65;
}

.product-feature-list {
  margin: 0 0 18px 0;
  padding-left: 22px;
  color: var(--body-color);
}

.product-feature-list li {
  margin-bottom: 6px;
}

.product-row.stacked .product-meta {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(47, 108, 229, 0.1);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 14px;
}

.subcategory-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.subcategory-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e3e8f0;
  background: #fff;
  box-shadow: 0 18px 28px rgba(17, 30, 74, 0.08);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.subcategory-card:hover,
.subcategory-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 30, 74, 0.12);
  text-decoration: none;
}

.subcategory-card .card-image {
  position: relative;
  padding-top: 75%;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcategory-card .card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.subcategory-card:hover .card-image img {
  transform: scale(1.05);
}

.subcategory-card .card-image.placeholder span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--body-color);
}

.subcategory-card .card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subcategory-card .card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color2);
  margin: 0;
}

.subcategory-card .card-body p {
  margin: 0;
  color: var(--body-color);
  line-height: 1.55;
  min-height: 48px;
}

.subcategory-card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--heading-color);
}

.subcategory-card .card-link i {
  transition: transform 0.3s ease;
}

.subcategory-card:hover .card-link i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .product-row.stacked {
    flex-direction: column;
    padding: 28px;
  }

  .product-row.stacked .product-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .stacked-product-list {
    gap: 24px;
  }

  .product-row.stacked {
    padding: 22px;
  }

  .product-row.stacked .product-title {
    font-size: 24px;
  }
}

/* Why Choose Us */

.feature-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 247, 255, 0.9));
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(9, 32, 63, 0.12);
  border: 1px solid rgba(13, 58, 99, 0.08);
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.feature-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 60px rgba(9, 32, 63, 0.18);
}

.feature-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color2);
  margin-bottom: 15px;
}

/* client */

.clients-section {
  padding: 50px 0;
  background: #f9f9f9;
  text-align: center;
  position: relative;
}

.clients-section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.clients-slider {
  width: 80%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 200px;
  height: 100px;
  margin: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease;
}

.slide:hover img {
  transform: scale(1.08);
}

.slider-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.slider-btn i {
  font-size: 1.2rem;
  color: #333;
}

.prev-btn {
  margin-right: 20px;
}

.next-btn {
  margin-left: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clients-slider {
    width: 90%;
  }

  .slide {
    min-width: 150px;
    margin: 0 15px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
  }

  .prev-btn {
    margin-right: 10px;
  }

  .next-btn {
    margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    width: 95%;
  }

  .clients-slider {
    width: 100%;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .prev-btn {
    left: 0;
    margin-right: 0;
  }

  .next-btn {
    right: 0;
    margin-left: 0;
  }
}

/* Blog Section */
.blog-section {
  background-image: url("https://wordpress.themeholy.com/mediax/wp-content/uploads/2023/12/blog_bg_1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
}

.blog-meta {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.social-links a {
  color: var(--white);
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--link-hover);
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Utility Classes */

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.text-center {
  text-align: center !important;
}

.text-md-end {
  text-align: right !important;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .nav-item {
    margin: 0 10px;
  }

  .nav-link {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-logo {
    padding: 15px 50px 15px 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-image {
    height: 60%;
    opacity: 0.5;
  }
}

@media (max-width: 575px) {
  .header-logo {
    padding-right: 0;
  }

  .header-contact {
    display: none;
  }
  .header-actions {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-image {
    display: none;
  }
}

/* counter */

/* Counter Section Styles */
.counter-section {
  padding: 80px 0;
  text-align: center;
}

.counter-container {
  background: var(--heading-color2);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-card {
  padding: 30px;
  margin: 15px;
  border-right: 1px solid #e0e0e041;
  flex: 1;
  min-width: 200px;
}
.counter-card:last-child {
  border-right: none;
}
.counter-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.counter-text {
  font-size: 18px;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .counter-container {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    width: 80%;
    height: 1px;
    margin: 20px 0;
  }
}

/* Quality Assurance Section Styles */
.quality-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.promo-video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: translateY(-5px);
}

#qualityVideo {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  background: #1a5db6;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button.playing {
  opacity: 0;
  visibility: hidden;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--heading-color2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.video-badge i {
  margin-right: 5px;
  color: var(--heading-color);
}

.quality-content .lead {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

.quality-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  margin-bottom: 20px;
}

.feature-icon {
  flex: 0 0 50px;
  height: 50px;
  background: #e8f1fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary);
  font-size: 20px;
}
.feature-icon i {
  color: var(--heading-color);
}

.feature-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--heading-color2);
}

.feature-text p {
  color: var(--dark);
  margin: 0;
  font-size: 15px;
}

@media (max-width: 767px) {
  .quality-section {
    padding: 50px 0;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Expert Banner Styles */
/* Enhanced Expert Banner Styles */
.expert-banner {
  background: linear-gradient(
    135deg,
    var(--heading-color2) 30%,
    var(--primary) 100%
  );
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.expert-banner * {
  color: #ffffff !important;
}

.expert-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.expert-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.expert-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.expert-text {
  flex: 1;
  max-width: 700px;
}

.expert-banner h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.expert-banner p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .expert-banner h2 {
    font-size: 2.2rem;
  }

  .expert-icon {
    right: 50px;
  }
}

@media (max-width: 992px) {
  .expert-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .expert-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .expert-banner p {
    max-width: 100%;
  }

  .expert-cta {
    margin-left: 0;
  }

  .expert-icon {
    display: none;
  }

  .expert-banner::before,
  .expert-banner::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .expert-banner {
    padding: 60px 0;
  }

  .expert-banner h2 {
    font-size: 1.8rem;
  }

  .expert-banner p {
    font-size: 1.1rem;
  }

  .btn-expert {
    padding: 14px 28px;
  }
}

@media (max-width: 576px) {
  .expert-banner h2 {
    font-size: 1.6rem;
  }

  .btn-expert {
    width: 100%;
  }
}

/* Breadcrumb Section */
.breadcrumb-wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("media/new page banner/About Us Banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 300px; /* Ensure minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific page banners */
/* About Page */
#breadcrumb-wrap[data-page="about"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/About Us Banner.jpg") !important;
}

/* Products Page */
#breadcrumb-wrap[data-page="products"],
#breadcrumb-wrap[data-page="product"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/Products Banner.jpg") !important;
}

/* Contact Page */
#breadcrumb-wrap[data-page="contact"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/Contact Us Banner.jpg") !important;
}

/* Blog Page */
#breadcrumb-wrap[data-page="blog"],
#breadcrumb-wrap[data-page="blogs"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/Blogs Banner.jpg") !important;
}

/* Career Page */
#breadcrumb-wrap[data-page="career"],
#breadcrumb-wrap[data-page="careers"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/Career Banner.jpg") !important;
}

/* Fallback banner for other pages */
#breadcrumb-wrap:not([data-page]) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url("media/new page banner/Products Banner.jpg") !important;
}

/* Debug styles - can be removed after testing */
#breadcrumb-wrap::after {
  content: "Current Page: " attr(data-page);
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 2px 5px;
  border-radius: 3px;
  display: none; /* Set to 'block' to debug */
}

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

.breadcrumb-title {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  font-size: 48px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.breadcrumb-menu {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--title-font, sans-serif);
  font-weight: 500;
  font-size: 16px;

  position: relative;
  margin-right: 6px;
}

/* .breadcrumb-item:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -4px;
  font-family: var(--icon-font, "Font Awesome 6 Free");
  font-weight: 500;
  font-size: 15px;
  color: inherit;
} */

.breadcrumb-item.active {
  color: var(--heading-color, #3f78e0);
  padding-right: 0;
  margin-right: 0;
}

.breadcrumb-item.active::after {
  display: none;
}

.breadcrumb-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: normal;
  word-break: break-word;
}

.breadcrumb-link:hover {
  color: var(--heading-color, #3f78e0);
}

/* Responsive Styles */
@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    padding: 120px 0;
  }
}

@media (max-width: 1199px) {
  .breadcrumb-menu {
    margin-top: 25px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper {
    padding: 110px 0;
  }
}

@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-title {
    font-size: 34px;
  }

  .breadcrumb-menu {
    margin-top: 20px;
  }

  .breadcrumb-item {
    font-size: 15px;
  }
}
