* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Hero Container */
.hero-container {
  height: 120vh;
  background: url("../images/hero-bg-glassware.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* About Us Hero Container */
.about-hero-container {
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.about-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Category Hero Container */
.category-hero-container {
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.category-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

/* Subcategory Hero Container */
.subcategory-hero-container {
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.subcategory-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

/* Product Detail Hero Container */
.product-detail-hero-container {
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.product-detail-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

@media (max-width: 768px) {
  .category-hero-container,
  .subcategory-hero-container,
  .product-detail-hero-container {
    height: 250px;
  }
}

/* Contact Hero Container */
.contact-hero-container {
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  height: 350px;
  background: url("../images/about-us-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: white;
  padding-bottom: 60px;
}

.contact-hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.contact-hero-content .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Navigation Styles */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(0, 0, 0, 0.3); */
  background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
  /* backdrop-filter: blur(15px); */
  z-index: 1000;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

/* When hero-container is not present (non-homepage pages) */
body:not(.has-hero) .navbar {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body:not(.has-hero) .navbar .nav-link {
  color: #333;
}

body:not(.has-hero) .navbar .logo-img {
  filter: none;
}

body:not(.has-hero) .navbar .contact-btn {
  background: #37afe1;
  color: white;
}

/* Mobile menu toggle color for non-hero pages */
body:not(.has-hero) .mobile-menu-toggle .hamburger-line {
  background: #333;
}

/* Dropdown styles for non-hero pages */
body:not(.has-hero) .dropdown-menu {
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body:not(.has-hero) .dropdown-item {
  color: #37afe1;
}

body:not(.has-hero) .dropdown-item:hover {
  color: #ff3821;
}

.navbar.scrolled {
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 0.8rem 0;
}

/* Scrolled navbar styles for non-hero pages */
body:not(.has-hero) .navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
  /* max-width: 1200px; */
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #37afe1;
  transform: translateY(-1px);
}

.nav-link.active {
  color: #37afe1;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #37afe1;
  border-radius: 2px;
}

.dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1001;
  border: 1px solid #e1e5e9;
}

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

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: #37afe1;
  padding-left: 2rem;
}

/* Add subtle border radius to first and last items */
.dropdown-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.dropdown-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Improve dropdown positioning for better alignment */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
}

/* Ensure dropdown menu is properly positioned */
.dropdown-menu {
  margin-top: 0.5rem;
}

/* Stats Counter Animation Styles */
.stat-number {
  transition: all 0.3s ease;
}

.stat-number.animating {
  transform: scale(1.1);
  color: #fff;
}

/* Add a subtle pulse effect during counting */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.stat-number.counting {
  animation: pulse 0.5s ease-in-out;
}

/* Quality Badge Rotation Animation */
.quality-badge {
  position: relative;
  display: inline-block;
}

.quality-badge .star-bg {
  animation: rotate 10s linear infinite;
  transform-origin: center center;
}

.quality-badge .star-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Dropdown arrow positioning and styling */
.nav-dropdown .dropdown-arrow {
  margin-left: 0.5rem;
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Enhanced dropdown container */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
}

/* Ensure dropdowns are properly positioned relative to navbar */
.navbar .nav-dropdown {
  position: relative;
}

/* Mobile Menu Styles */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transition: all 0.3s ease;
}

/* Ensure mobile menu toggle doesn't interfere with desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  transform: translateY(-20px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  position: relative;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1003;
  min-height: 44px; /* Touch-friendly minimum height */
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.close-line:first-child {
  transform: rotate(45deg) translate(1px, 1px);
}

.close-line:last-child {
  transform: rotate(-45deg) translate(1px, -1px);
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 1rem 0;
  min-height: 44px; /* Touch-friendly minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #37afe1;
}

.mobile-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #37afe1;
  border-radius: 2px;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown-toggle {
  background: transparent;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  transition: all 0.3s ease;
  min-height: 44px; /* Touch-friendly minimum height */
  -webkit-tap-highlight-color: transparent;
}

.mobile-dropdown-toggle:hover {
  color: #37afe1;
}

.mobile-dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #37afe1;
  padding-left: 1.5rem;
}

/* Enhanced hover effects for dropdown container */
.nav-dropdown:hover .nav-link {
  color: #37afe1;
}

/* Responsive dropdown adjustments */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }

  .dropdown-item {
    color: inherit;
    padding: 0.5rem 1rem;
    border-bottom: none;
  }

  .dropdown-item:hover {
    background: transparent;
    transform: none;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }
}

.contact-btn {
  background: #37afe1;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3); */
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.contact-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4); */
  background: #29b6f6;
  text-decoration: none;
}

.contact-btn:active {
  transform: translateY(0);
}

/* Hide contact button on mobile - it will be shown in mobile dropdown instead */
@media (max-width: 768px) {
  .contact-btn {
    display: none !important;
  }
}

/* Hero Content Styles */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}

.about-hero-content {
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding: 0 2rem 60px 2rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  /* max-width: 800px; */
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  text-transform: uppercase;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #4fc3f7, #29b6f6);
  margin: 1.5rem auto;
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  /* max-width: 600px; */
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: #4fc3f7;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Products Dropdown Styles */
.products-dropdown {
  position: relative;
  display: inline-block;
}

.products-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  background: #37afe1;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  min-width: 180px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.products-dropdown .dropdown-toggle:hover {
  transform: translateY(-3px);
  background: #29b6f6;
}

.products-dropdown .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.products-dropdown .dropdown-toggle.active .dropdown-arrow {
  transform: rotate(180deg);
}

.products-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
  overflow: hidden;
}

.products-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.products-dropdown .dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.products-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

.products-dropdown .dropdown-item:hover {
  background: #37afe1;
  color: white;
  text-decoration: none;
}

/* Responsive styles for products dropdown */
@media (max-width: 768px) {
  .products-dropdown .dropdown-toggle {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
    min-width: 160px;
  }

  .products-dropdown .dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 200px;
  }

  .products-dropdown .dropdown-menu.show {
    transform: translateX(-50%) translateY(0);
  }

  .products-dropdown .dropdown-item {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  min-width: 180px;
  text-transform: uppercase;
}

.btn-primary {
  background: #37afe1;
  color: white;
  /* box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3); */
}

.btn-primary:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4); */
  background: #29b6f6;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #37afe1;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #37afe1;
  color: #37afe1;
  transform: translateY(-3px);
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); */
}

/* About Us Section */
.about-section {
  margin-top: 50px;
  padding: 50px 0;
  background: white;
  position: relative;
}

.about-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5rem;
}

.about-text {
  width: 50%;
}

.section-label {
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  color: #37afe1;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  width: 90%;
}

.about-description {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary-filled {
  text-decoration: none;
  background: #37afe1;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

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

.btn-primary-filled::after {
  content: "→";
  font-size: 1.2rem;
}

.btn-secondary-outline {
  text-decoration: none;
  background: transparent;
  color: #37afe1;
  border: 2px solid #37afe1;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-secondary-outline:hover {
  background: #37afe1;
  color: white;
  transform: translateY(-2px);
}

/* Dot Patterns */
.dot-pattern {
  position: absolute;
  z-index: 1;
}

.dot-pattern img {
  width: auto;
  height: auto;
  opacity: 0.6;
}

.dot-pattern.upper {
  top: -20px;
  left: -30px;
}

.dot-pattern.about-upper {
  bottom: 0;
  left: -30px;
}

.dot-pattern.lower {
  bottom: -20px;
  right: -30px;
}

.about-visual {
  width: 50%;
}

.visual-elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-elements-upper {
  display: flex;
  gap: 1rem;
}

.visual-elements-upper-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Blue Rectangles */
.blue-rectangle-container {
  display: flex;
  gap: 1rem;
}

.blue-rectangle {
  background: #37afe1;
  border-radius: 10px;
}

.blue-rectangle.top {
  width: 100px;
  height: 65px;
}

.blue-rectangle.bottom {
  width: 100px;
  height: 65px;
}

/* Quality Badge */
.quality-badge {
  display: flex;
  align-items: center;
}

.star-icon {
  width: 200px;
  height: 200px;
}

/* Laboratory Images */
.lab-image-top {
  border-radius: 50px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}

.lab-image-top img {
  width: 100%;
  height: 100%;
}

.lab-image.bottom {
  border-radius: 50px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); */
}

.lab-image-bottom img {
  width: 100%;
  height: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

/* About Section Animation Classes */
.about-section .about-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.about-section .about-text.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-section .about-visual {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.about-section .about-visual.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.about-section .dot-pattern.upper {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease 0.2s;
}

.about-section .dot-pattern.upper.animate-in {
  opacity: 0.6;
  transform: translateY(0);
}

.about-section .dot-pattern.lower {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}

.about-section .dot-pattern.lower.animate-in {
  opacity: 0.6;
  transform: translateY(0);
}

/* Stats Section Animation Classes */
.stats-section .stats-marquee {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease;
}

.stats-section .stats-marquee.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* About Section Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .about-container {
    margin: 0 3rem;
    gap: 3rem;
  }

  .about-title {
    font-size: 2.5rem;
    width: 100%;
  }

  .about-description {
    font-size: 0.85rem;
  }

  .about-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary-filled,
  .btn-secondary-outline {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
  }

  .blue-rectangle.top,
  .blue-rectangle.bottom {
    width: 80px;
    height: 55px;
  }

  .lab-image-top img,
  .lab-image-bottom img {
    border-radius: 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .about-section {
    margin-top: 30px;
    padding: 30px 0;
  }

  .about-container {
    margin: 0 1.5rem;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .about-text {
    width: 100%;
    order: 1;
  }

  .about-visual {
    width: 100%;
    order: 2;
  }

  .section-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .about-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .about-description {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 0.875rem;
  }

  .about-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
  }

  .btn-primary-filled,
  .btn-secondary-outline {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .visual-elements {
    gap: 1rem;
    width: 100%;
    /* max-width: 400px; */
  }

  .visual-elements-upper {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: start;
  }

  .visual-elements-upper div {
    flex: 1;
  }

  .visual-elements-upper-left {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .blue-rectangle-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    display: none;
  }

  .blue-rectangle.top,
  .blue-rectangle.bottom {
    width: 50px;
    height: 35px;
  }

  .quality-badge {
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
  }

  .star-bg {
    width: 120px;
    height: 120px;
  }

  .star-arrow {
    width: 40px;
    height: 40px;
  }

  .star-icon {
    width: 20px;
    height: 20px;
  }

  .lab-image-top {
    width: 100%;
    max-width: 300px;
    border-radius: 25px;
  }

  .lab-image-bottom {
    flex: 1;
    width: 100%;
    /* max-width: 300px; */
    border-radius: 25px;
  }

  .lab-image-top img,
  .lab-image-bottom img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
  }

  /* Hide dot patterns on mobile for cleaner look */
  .dot-pattern.upper,
  .dot-pattern.lower {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .about-section {
    margin-top: 20px;
    padding: 20px 0;
  }

  .about-container {
    margin: 0 1rem;
    gap: 1.5rem;
  }

  .about-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .about-description {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .btn-primary-filled,
  .btn-secondary-outline {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
  }

  .visual-elements {
    max-width: 350px;
    gap: 0.75rem;
  }

  .blue-rectangle.top,
  .blue-rectangle.bottom {
    width: 40px;
    height: 30px;
  }

  .star-icon {
    width: 100px;
    height: 100px;
  }

  .lab-image-top,
  .lab-image-bottom {
    /* max-width: 250px; */
    border-radius: 20px;
  }

  .lab-image-top img,
  .lab-image-bottom img {
    border-radius: 20px;
  }
}

.stats-section .stats-banner {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.stats-section .stats-banner.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Product Section Animation Classes */
.product-section .product-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.product-section .product-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.product-section .product-carousel {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.product-section .product-carousel.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Clients Section Animation Classes */
.clients-section .clients-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.clients-section .clients-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.clients-section .marquee-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.clients-section .marquee-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Reliable Banner Section Animation Classes */
.reliable-banner-section .banner-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reliable-banner-section .banner-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Section Animation Classes */
.testimonials-section .testimonials-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.testimonials-section .testimonials-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonials-section .testimonials-carousel {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.3s;
}

.testimonials-section .testimonials-carousel.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* News & Events Section Animation Classes */
.news-events-section .news-events-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.news-events-section .news-events-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.news-events-section .news-events-subtitle {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease 0.2s;
}

.news-events-section .news-events-subtitle.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.news-events-section .news-events-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.news-events-section .news-events-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Certifications Section Animation Classes */
.certifications-section .certifications-title {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.certifications-section .certifications-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.certifications-section .certifications-description {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease 0.2s;
}

.certifications-section .certifications-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.certifications-section .certifications-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
}

.certifications-section .certifications-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Section Animation Classes */
.contact-section .contact-info {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.contact-section .contact-info.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.contact-section .contact-form-container {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease 0.3s;
}

.contact-section .contact-form-container.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

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

  .logo-img {
    height: 35px;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.7rem;
  }

  /* Mobile navbar adjustments */
  .navbar {
    padding: 0.8rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  /* Mobile menu toggle color adjustments for non-hero pages */
  body:not(.has-hero) .hamburger-line {
    background: #333;
  }

  /* Mobile menu toggle color adjustments for hero pages */
  .has-hero .hamburger-line {
    background: white;
  }

  /* Ensure mobile menu toggle is visible on all pages */
  .mobile-menu-toggle {
    z-index: 1002;
  }

  /* Mobile menu toggle hover effects */
  .mobile-menu-toggle:hover .hamburger-line {
    background: #37afe1;
  }

  body:not(.has-hero) .mobile-menu-toggle:hover .hamburger-line {
    background: #37afe1;
  }

  /* Mobile menu improvements */
  .mobile-menu {
    padding: 1rem;
  }

  .mobile-menu-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    white-space: normal;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .about-visual {
    /* height: 400px;
    margin-top: 2rem; */
  }

  .visual-elements {
    width: 100%;
    transform: scale(0.8);
  }

  .quality-badge {
    top: 0px;
    left: 0px;
  }

  .badge-circle {
    width: 20px;
    height: 20px;
  }

  .lab-image.top {
    width: 100%;
    height: 40px;
  }

  .lab-image.bottom {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  /* Mobile menu adjustments for very small screens */
  .mobile-menu-content {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .mobile-nav-link,
  .mobile-dropdown-toggle {
    font-size: 1.1rem;
  }

  .mobile-dropdown-item {
    font-size: 0.9rem;
  }

  .nav-content {
    padding: 0 0.5rem;
  }

  .nav-actions {
    gap: 0.25rem;
  }
}

/* Stats Section */
.stats-section {
  margin-top: 80px;
  background: white;
}

.stats-marquee {
  background: white;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-text {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #37afe1;
  margin-right: 4rem;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.stats-banner {
  position: relative;
  height: 300px;
  background: url("../images/stats-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.stats-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  /* max-width: 1000px; */
  padding: 0 5rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1rem;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); */
}

.stat-divider {
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1px;
}

/* Responsive Design for Stats */
@media (max-width: 768px) {
  .stats-marquee {
    padding: 20px 0;
  }

  .marquee-text {
    font-size: 1.8rem;
    margin-right: 3rem;
  }

  .stats-banner {
    height: 300px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-item {
    flex: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .marquee-text {
    font-size: 1.5rem;
    margin-right: 2rem;
  }

  .stats-banner {
    height: 250px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Enhanced Stats Section Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .stats-section {
    margin-top: 60px;
  }

  .stats-marquee {
    padding: 25px 0;
  }

  .marquee-text {
    font-size: 2.5rem;
    margin-right: 3.5rem;
    letter-spacing: 2.5px;
  }

  .stats-banner {
    height: 280px;
  }

  .stats-grid {
    gap: 2.5rem;
    padding: 0 3rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  .stat-divider {
    height: 100px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .stats-section {
    margin-top: 40px;
  }

  .stats-marquee {
    padding: 20px 0;
  }

  .marquee-text {
    font-size: 1.8rem;
    margin-right: 2.5rem;
    letter-spacing: 2px;
  }

  .stats-banner {
    height: 350px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .stat-item {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.8px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .stats-section {
    margin-top: 30px;
  }

  .stats-marquee {
    padding: 15px 0;
  }

  .marquee-text {
    font-size: 1.5rem;
    margin-right: 2rem;
    letter-spacing: 1.5px;
  }

  .stats-banner {
    height: 300px;
  }

  .stats-grid {
    gap: 1.5rem;
    padding: 0 1.5rem;
    max-width: 400px;
  }

  .stat-item {
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .stats-marquee {
    padding: 12px 0;
  }

  .marquee-text {
    font-size: 1.25rem;
    margin-right: 1.5rem;
    letter-spacing: 1px;
  }

  .stats-banner {
    height: 280px;
  }

  .stats-grid {
    gap: 1.25rem;
    padding: 0 1rem;
    max-width: 350px;
  }

  .stat-item {
    width: 100%;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* Product Carousel Section */
.product-section {
  padding: 80px 0;
  background: white;
}

.product-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #007d9c;
  margin-bottom: 60px;
  letter-spacing: 2px;
}
.product-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 40px;
  width: calc((280px + 4rem) * 4);
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.product-slides {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  width: calc((280px + 2rem) * 8); /* Adjust based on total cards */
}

.product-card {
  width: 280px;
  background: #f1f8ff;
  border-radius: 30px;
  padding: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 271px;
  background: #7bcdf3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 3rem;
  color: white;
  font-weight: bold;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product-description {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em; /* 2 lines * 1.4 line-height */
}

.enquire-btn {
  background: #37afe1;
  color: white;
  border: none;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 45%;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.enquire-btn:hover {
  background: #29b6f6;
  transform: translateY(-2px);
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: none;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #37afe1;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(55, 175, 225, 0.3);
}

.carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-arrow:disabled:hover {
  background: white;
  color: #333;
  transform: none;
}

/* Carousel indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #37afe1;
  transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-container {
    margin: 0 3rem;
  }

  .product-slides {
    width: calc((260px + 1.5rem) * 8);
  }

  .product-card {
    min-width: 260px;
  }
}

@media (max-width: 1024px) {
  .product-slides {
    width: calc((240px + 1rem) * 8);
    gap: 1rem;
  }

  .product-card {
    min-width: 240px;
  }
}

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

  .product-container {
    margin: 0 2rem;
  }

  .product-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .product-carousel {
    gap: 1rem;
  }

  .product-slides {
    width: calc((220px + 1rem) * 8);
  }

  .product-card {
    min-width: 220px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .product-container {
    margin: 0 1rem;
  }

  .product-title {
    font-size: 1.6rem;
  }

  .product-carousel {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-wrapper {
    order: 2;
  }

  .carousel-prev {
    order: 1;
  }

  .carousel-next {
    order: 3;
  }

  .product-slides {
    width: calc(100vw - 2rem);
    gap: 1rem;
  }

  .product-card {
    min-width: calc(100vw - 4rem);
  }
}

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

  .product-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

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

/* Enhanced Product Carousel Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .product-section {
    padding: 60px 0;
  }

  .product-container {
    margin: 0 3rem;
  }

  .product-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
  }

  .product-carousel {
    width: calc((260px + 3rem) * 3);
    gap: 1.5rem;
  }

  .product-slides {
    width: calc((260px + 1.5rem) * 6);
    gap: 1.5rem;
  }

  .product-card {
    width: 260px;
    padding: 12px;
  }

  .product-image {
    height: 250px;
    padding: 15px;
  }

  .product-name {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .product-description {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .enquire-btn {
    padding: 10px 8px;
    font-size: 0.75rem;
  }

  .carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .product-section {
    padding: 40px 0;
  }

  .product-container {
    margin: 0 1.5rem;
  }

  .product-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
  }

  .product-carousel {
    width: 100%;
    max-width: 500px;
    gap: 1rem;
    position: relative;
  }

  .carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .product-slides {
    width: calc((240px + 1rem) * 4);
    gap: 1rem;
    transform: translateX(0);
  }

  .product-card {
    width: 240px;
    padding: 10px;
    border-radius: 25px;
    flex-shrink: 0;
  }

  .product-image {
    height: 220px;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .product-name {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .product-description {
    font-size: 0.7rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .enquire-btn {
    padding: 8px 6px;
    font-size: 0.7rem;
    border-radius: 8px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-prev {
    left: -20px;
  }

  .carousel-next {
    right: -20px;
  }

  .carousel-indicators {
    margin-top: 20px;
    gap: 8px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .product-section {
    padding: 30px 0;
  }

  .product-container {
    margin: 0 1rem;
  }

  .product-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 0.8px;
  }

  .product-carousel {
    width: 100%;
    max-width: 420px;
    gap: 0.75rem;
    position: relative;
  }

  .carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .product-slides {
    width: calc((200px + 0.75rem) * 3);
    gap: 0.75rem;
    transform: translateX(0);
  }

  .product-card {
    width: 200px;
    padding: 8px;
    border-radius: 20px;
    flex-shrink: 0;
  }

  .product-image {
    height: 180px;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .product-name {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 0.65rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .enquire-btn {
    padding: 6px 4px;
    font-size: 0.65rem;
    border-radius: 6px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-prev {
    left: -17px;
  }

  .carousel-next {
    right: -17px;
  }

  .carousel-indicators {
    margin-top: 15px;
    gap: 6px;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .product-section {
    padding: 25px 0;
  }

  .product-container {
    margin: 0 0.75rem;
  }

  .product-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.6px;
  }

  .product-carousel {
    width: 100%;
    max-width: 380px;
    gap: 0.5rem;
    position: relative;
  }

  .carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .product-slides {
    width: calc((180px + 0.5rem) * 2.5);
    gap: 0.5rem;
    transform: translateX(0);
  }

  .product-card {
    width: 180px;
    padding: 6px;
    border-radius: 15px;
    flex-shrink: 0;
  }

  .product-image {
    height: 160px;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .product-name {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .product-description {
    font-size: 0.6rem;
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .enquire-btn {
    padding: 5px 3px;
    font-size: 0.6rem;
    border-radius: 5px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-prev {
    left: -15px;
  }

  .carousel-next {
    right: -15px;
  }

  .carousel-indicators {
    margin-top: 12px;
    gap: 4px;
  }

  .indicator {
    width: 5px;
    height: 5px;
  }
}

/* Valued Clients Section */
.clients-section {
  padding: 80px 0;
  background: white;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007d9c;
  margin-bottom: 60px;
  letter-spacing: 0.25px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  background: linear-gradient(
    90deg,
    white 0%,
    transparent 10%,
    transparent 90%,
    white 100%
  );
}

.marquee-clients {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 3rem;
  width: max-content;
}

.marquee-clients:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  width: 180px;
  height: 90px;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #ccc;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
  border-color: #37afe1;
  color: #37afe1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(55, 175, 225, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
  .clients-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .client-logo {
    width: 140px;
    height: 70px;
    font-size: 0.9rem;
  }

  .marquee-clients {
    gap: 2rem;
    animation-duration: 15s;
  }
}

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

  .clients-title {
    font-size: 1.8rem;
  }

  .client-logo {
    width: 120px;
    height: 60px;
    font-size: 0.8rem;
  }
}

/* Alternative gradient overlay for better edge blending */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, white 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, white 100%);
}

/* Reliable Tools Banner Section */
.reliable-banner-section {
  padding: 0;
  background: white;
}

.reliable-banner {
  position: relative;
  background: url("../images/banner2full.png") center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.banner-content {
  position: relative;
  z-index: 2;
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
}

.banner-text {
  flex: 1;
  color: white;
}

.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.banner-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.feature-icon {
  margin-right: 15px;
  font-size: 0.8rem;
  color: #333;
  /* background: white; */
  width: 20px;
  height: 20px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

/* Responsive Design for Clients and Banner */
@media (max-width: 1024px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .banner-title {
    font-size: 2.4rem;
  }
}

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

  .clients-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .reliable-banner {
    min-height: 400px;
  }

  .banner-content {
    padding: 60px 1.5rem;
    gap: 2rem;
  }

  .banner-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .feature-item {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .feature-icon {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    margin-right: 12px;
  }

  .banner-image img {
    max-height: 300px;
  }
}

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

  .banner-title {
    font-size: 1.6rem;
  }

  .feature-item {
    font-size: 0.9rem;
  }

  .banner-image img {
    max-height: 250px;
  }
}

/* Enhanced Reliable Banner Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .reliable-banner-section {
    padding: 0;
  }

  .reliable-banner {
    min-height: 450px;
    background-position: center center;
  }

  .banner-content {
    margin: 0 3rem;
    padding: 60px 0;
    gap: 3rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .banner-text {
    flex: 1;
    max-width: 600px;
  }

  .banner-title {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: 0.8px;
  }

  .banner-features {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.5;
    text-align: center;
    max-width: 500px;
  }

  .feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
  }

  .banner-image {
    flex: 1;
    max-width: 400px;
  }

  .banner-image img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .reliable-banner {
    min-height: 400px;
    background-position: center center;
  }

  .banner-content {
    margin: 0 1.5rem;
    padding: 50px 0;
    gap: 2rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .banner-text {
    flex: 1;
    max-width: 500px;
  }

  .banner-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: 0.6px;
  }

  .banner-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .feature-item {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: left;
    max-width: 450px;
  }

  .feature-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }

  .banner-image {
    flex: 1;
    max-width: 350px;
  }

  .banner-image img {
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .reliable-banner {
    min-height: 350px;
    background-position: center center;
  }

  .banner-content {
    margin: 0 1rem;
    padding: 40px 0;
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .banner-text {
    flex: 1;
    max-width: 400px;
  }

  .banner-title {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 0.4px;
  }

  .banner-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .feature-item {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: left;
    max-width: 380px;
  }

  .feature-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }

  .banner-image {
    flex: 1;
    max-width: 300px;
  }

  .banner-image img {
    max-height: 200px;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .reliable-banner {
    min-height: 300px;
    background-position: center center;
  }

  .banner-content {
    margin: 0 0.75rem;
    padding: 30px 0;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .banner-text {
    flex: 1;
    max-width: 350px;
  }

  .banner-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
  }

  .banner-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .feature-item {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: left;
    max-width: 320px;
  }

  .feature-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }

  .banner-image {
    flex: 1;
    max-width: 250px;
  }

  .banner-image img {
    max-height: 180px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonials-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #007d9c;
  margin-bottom: 60px;
  letter-spacing: 0.25px;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 40px;
}

.testimonial-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.testimonials-slides {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  /* Remove fixed width to make it flexible */
}

.testimonial-card {
  width: 380px;
  background: #f1f8ff;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-mark {
  position: absolute;
}

.quote-top {
  top: -20px;
  left: 20px;
}

.quote-bottom {
  transform: rotate(180deg);
  bottom: -20px;
  right: 20px;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.testimonial-text {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}

.customer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.customer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

.customer-designation {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.testimonial-carousel-arrow {
  width: 50px;
  height: 50px;
  border: none;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-carousel-arrow:hover {
  background: #37afe1;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(55, 175, 225, 0.3);
}

.testimonial-carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.testimonial-carousel-arrow:disabled:hover {
  background: white;
  color: #333;
  transform: none;
}

/* Testimonial Carousel indicators */
.testimonial-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-indicator.active {
  background: #37afe1;
  transform: scale(1.3);
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
  .testimonials-slides {
    gap: 1.5rem;
  }

  .testimonial-card {
    min-width: 300px;
    padding: 25px;
  }

  .quote-mark {
    font-size: 3rem;
  }
}

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

  .testimonials-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonials-carousel {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonials-slides {
    flex-direction: row;
    gap: 1rem;
  }

  .testimonial-card {
    min-width: 280px;
    padding: 20px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .customer-avatar {
    width: 50px;
    height: 50px;
  }

  .customer-name {
    font-size: 1rem;
  }

  .customer-designation {
    font-size: 0.85rem;
  }
}

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

  .testimonial-card {
    padding: 15px;
  }

  .quote-mark {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .customer-profile {
    gap: 12px;
  }

  .customer-avatar {
    width: 45px;
    height: 45px;
  }
}

/* Enhanced Testimonials Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-container {
    margin: 0 3rem;
  }

  .testimonials-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    letter-spacing: 0.2px;
  }

  .testimonials-carousel {
    width: 100%;
    max-width: 800px;
    gap: 1.5rem;
    margin: 0 auto 40px auto;
  }

  .testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-slides {
    width: calc((320px + 1.5rem) * 3);
    gap: 1.5rem;
    transform: translateX(0);
  }

  .testimonial-card {
    width: 320px;
    padding: 25px;
    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 0.85rem;
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .customer-profile {
    gap: 12px;
  }

  .customer-avatar {
    width: 35px;
    height: 35px;
  }

  .customer-name {
    font-size: 0.95rem;
  }

  .customer-designation {
    font-size: 0.75rem;
  }

  .testimonial-carousel-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .testimonial-carousel-prev {
    left: -22px;
  }

  .testimonial-carousel-next {
    right: -22px;
  }

  .quote-top {
    top: -18px;
    left: 18px;
  }

  .quote-bottom {
    bottom: -18px;
    right: 18px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-container {
    margin: 0 1.5rem;
  }

  .testimonials-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    letter-spacing: 0.15px;
  }

  .testimonials-carousel {
    width: 100%;
    max-width: 600px;
    gap: 1rem;
    margin: 0 auto 30px auto;
    position: relative;
  }

  .testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-slides {
    width: calc((280px + 1rem) * 2);
    gap: 1rem;
    transform: translateX(0);
  }

  .testimonial-card {
    width: 280px;
    padding: 20px;
    border-radius: 15px;
    flex-shrink: 0;
  }

  .testimonial-text {
    font-size: 0.8rem;
    margin-top: 30px;
    margin-bottom: 18px;
    line-height: 1.4;
  }

  .customer-profile {
    gap: 10px;
  }

  .customer-avatar {
    width: 32px;
    height: 32px;
  }

  .customer-name {
    font-size: 0.9rem;
  }

  .customer-designation {
    font-size: 0.7rem;
  }

  .testimonial-carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .testimonial-carousel-prev {
    left: -20px;
  }

  .testimonial-carousel-next {
    right: -20px;
  }

  .quote-top {
    top: -15px;
    left: 15px;
  }

  .quote-bottom {
    bottom: -15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .testimonials-section {
    padding: 30px 0;
  }

  .testimonials-container {
    margin: 0 1rem;
  }

  .testimonials-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 0.1px;
  }

  .testimonials-carousel {
    width: 100%;
    max-width: 500px;
    gap: 0.75rem;
    margin: 0 auto 25px auto;
    position: relative;
  }

  .testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-slides {
    width: calc((240px + 0.75rem) * 1.5);
    gap: 0.75rem;
    transform: translateX(0);
  }

  .testimonial-card {
    width: 240px;
    padding: 15px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .testimonial-text {
    font-size: 0.75rem;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .customer-profile {
    gap: 8px;
  }

  .customer-avatar {
    width: 28px;
    height: 28px;
  }

  .customer-name {
    font-size: 0.85rem;
  }

  .customer-designation {
    font-size: 0.65rem;
  }

  .testimonial-carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .testimonial-carousel-prev {
    left: -17px;
  }

  .testimonial-carousel-next {
    right: -17px;
  }

  .quote-top {
    top: -12px;
    left: 12px;
  }

  .quote-bottom {
    bottom: -12px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .testimonials-section {
    padding: 25px 0;
  }

  .testimonials-container {
    margin: 0 0.75rem;
  }

  .testimonials-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.05px;
  }

  .testimonials-carousel {
    width: 100%;
    max-width: 450px;
    gap: 0.5rem;
    margin: 0 auto 20px auto;
    position: relative;
  }

  .testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .testimonials-slides {
    width: calc((200px + 0.5rem) * 1.2);
    gap: 0.5rem;
    transform: translateX(0);
  }

  .testimonial-card {
    width: 200px;
    padding: 12px;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .testimonial-text {
    font-size: 0.7rem;
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .customer-profile {
    gap: 6px;
  }

  .customer-avatar {
    width: 24px;
    height: 24px;
  }

  .customer-name {
    font-size: 0.8rem;
  }

  .customer-designation {
    font-size: 0.6rem;
  }

  .testimonial-carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .testimonial-carousel-prev {
    left: -15px;
  }

  .testimonial-carousel-next {
    right: -15px;
  }

  .quote-top {
    top: -10px;
    left: 10px;
  }

  .quote-bottom {
    bottom: -10px;
    right: 10px;
  }
}

/* Latest News & Events Section */
.news-events-section {
  padding: 80px 0;
  background: white;
}

.news-events-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  text-align: center;
}

.news-events-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007d9c;
  /* margin-bottom: 10px; */
  letter-spacing: 0.25px;
}

.news-events-subtitle {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.news-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 2rem;
  margin-bottom: 50px;
}

.news-event-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.news-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-event-image {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.news-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.news-event-card.placeholder .news-event-image {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  font-size: 1rem;
  color: #999;
  font-weight: 500;
}

.view-all-container {
  text-align: center;
}

.view-all-btn {
  text-decoration: none;
  background: #37afe1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.view-all-btn:hover {
  background: #005a7a;
  transform: translateY(-2px);
  /* box-shadow: 0 5px 15px rgba(0, 125, 156, 0.3); */
}

.arrow-icon {
  font-size: 1rem;
  /* background: white;
  color: #37afe1;
  border-radius: 50%;
  padding: 3px;
  transform: rotate(315deg); */
  transition: transform 0.3s ease;
}

.view-all-btn:hover .arrow-icon {
  /* transform: translateX(3px); */
}

/* Enhanced News & Events Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .news-events-section {
    padding: 60px 0;
  }

  .news-events-container {
    margin: 0 3rem;
  }

  .news-events-title {
    font-size: 2.2rem;
    letter-spacing: 0.2px;
  }

  .news-events-subtitle {
    font-size: 0.85rem;
    margin-bottom: 50px;
    max-width: 700px;
  }

  .news-events-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 40px;
  }

  .news-event-image {
    height: 220px;
  }

  .news-event-card {
    border-radius: 12px;
  }

  .view-all-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .news-events-section {
    padding: 50px 0;
  }

  .news-events-container {
    margin: 0 2rem;
  }

  .news-events-title {
    font-size: 1.8rem;
    letter-spacing: 0.15px;
  }

  .news-events-subtitle {
    font-size: 0.8rem;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.5;
  }

  .news-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 35px;
  }

  .news-event-image {
    height: 180px;
  }

  .news-event-card {
    border-radius: 10px;
  }

  .view-all-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .arrow-icon {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .news-events-section {
    padding: 40px 0;
  }

  .news-events-container {
    margin: 0 1.5rem;
  }

  .news-events-title {
    font-size: 1.6rem;
    letter-spacing: 0.1px;
  }

  .news-events-subtitle {
    font-size: 0.75rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.4;
  }

  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 30px;
  }

  .news-event-image {
    height: 160px;
  }

  .news-event-card {
    border-radius: 8px;
  }

  .view-all-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 5px;
  }

  .arrow-icon {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .news-events-section {
    padding: 35px 0;
  }

  .news-events-container {
    margin: 0 1rem;
  }

  .news-events-title {
    font-size: 1.4rem;
    letter-spacing: 0.05px;
  }

  .news-events-subtitle {
    font-size: 0.7rem;
    margin-bottom: 25px;
    max-width: 400px;
    line-height: 1.3;
  }

  .news-events-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 25px;
  }

  .news-event-image {
    height: 140px;
  }

  .news-event-card {
    border-radius: 6px;
  }

  .view-all-btn {
    padding: 7px 16px;
    font-size: 0.75rem;
    border-radius: 4px;
  }

  .arrow-icon {
    font-size: 0.75rem;
  }
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background: #f1f8ff;
}

.certifications-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  text-align: center;
}

.certifications-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007d9c;
  letter-spacing: 0.25px;
}

.certifications-description {
  font-size: 0.8rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 50px;
}

.certificate-card {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.certificate-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: transparent;
  mix-blend-mode: multiply;
}

/* Certificate Overlay Styles */
.certificate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.certificate-card:hover .certificate-overlay {
  opacity: 1;
}

.certificate-description {
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

/* Event Overlay Styles */
.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.news-event-card:hover .event-overlay {
  opacity: 1;
}

.event-description {
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(2px);
}
/* 
.certificate-card:hover .certificate-image img {
  transform: scale(1.05);
} */

/* Enhanced Certifications Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .certifications-section {
    padding: 60px 0;
  }

  .certifications-container {
    margin: 0 3rem;
  }

  .certifications-title {
    font-size: 2.2rem;
    letter-spacing: 0.2px;
  }

  .certifications-description {
    font-size: 0.85rem;
    margin-bottom: 50px;
    max-width: 700px;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 40px;
  }

  .certificate-image {
    height: 300px;
  }

  .certificate-card {
    border-radius: 12px;
  }

  .view-all-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 6px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .certifications-section {
    padding: 50px 0;
  }

  .certifications-container {
    margin: 0 2rem;
  }

  .certifications-title {
    font-size: 1.8rem;
    letter-spacing: 0.15px;
  }

  .certifications-description {
    font-size: 0.8rem;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.5;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 35px;
  }

  .certificate-image {
    height: 280px;
  }

  .certificate-card {
    border-radius: 10px;
  }

  /* Mobile certificate overlay - hidden by default, visible on click */
  .certificate-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
  }

  .certificate-overlay.active {
    opacity: 1;
  }

  .certificate-description {
    font-size: 0.9rem;
    padding: 1rem;
    line-height: 1.4;
  }

  .view-all-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .arrow-icon {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .certifications-section {
    padding: 40px 0;
  }

  .certifications-container {
    margin: 0 1.5rem;
  }

  .certifications-title {
    font-size: 1.6rem;
    letter-spacing: 0.1px;
  }

  .certifications-description {
    font-size: 0.75rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.4;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 30px;
  }

  .certificate-image {
    height: 200px;
  }

  .certificate-card {
    border-radius: 8px;
  }

  /* Small Mobile certificate overlay - hidden by default, visible on click */
  .certificate-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.65);
    transition: opacity 0.3s ease;
  }

  .certificate-overlay.active {
    opacity: 1;
  }

  .certificate-description {
    font-size: 0.8rem;
    padding: 0.75rem;
    line-height: 1.3;
  }

  .view-all-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 5px;
  }

  .arrow-icon {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .certifications-section {
    padding: 35px 0;
  }

  .certifications-container {
    margin: 0 1rem;
  }

  .certifications-title {
    font-size: 1.4rem;
    letter-spacing: 0.05px;
  }

  .certifications-description {
    font-size: 0.7rem;
    margin-bottom: 25px;
    max-width: 400px;
    line-height: 1.3;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 25px;
  }

  .certificate-image {
    height: 180px;
  }

  .certificate-card {
    border-radius: 6px;
  }

  /* Extra Small Mobile certificate overlay - hidden by default, visible on click */
  .certificate-overlay {
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
  }

  .certificate-overlay.active {
    opacity: 1;
  }

  .certificate-description {
    font-size: 0.75rem;
    padding: 0.5rem;
    line-height: 1.2;
  }

  .view-all-btn {
    padding: 7px 16px;
    font-size: 0.75rem;
    border-radius: 4px;
  }

  .arrow-icon {
    font-size: 0.75rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  justify-items: stretch;
}

.contact-info {
  padding-right: 2rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #37afe1;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.contact-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 50px;
  height: 50px;
  /* filter: brightness(0) invert(1); */
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  font-size: 1rem;
  color: #000;
  font-weight: 500;
}

.contact-company {
  font-size: 24px;
  color: #000;
  font-weight: 500;
}

/* Contact Map Styling */
.contact-map {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.contact-map iframe {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.contact-map iframe:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-address {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.4;
}

/* Contact Form */
.contact-form-container {
  background: #f1f8ff;
  border-radius: 20px;
  border: 1px solid #ccf0ff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #aedaeb;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007d9c;
  box-shadow: 0 0 0 3px rgba(0, 125, 156, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: #37afe1;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.submit-btn:hover {
  background: #005a7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 125, 156, 0.3);
}

/* Form Message Styles */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Button Loading State */
.btn-loading {
  display: none;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Enhanced Contact Section Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .contact-section {
    padding: 70px 0;
  }

  .contact-container {
    margin: 0 3rem;
    gap: 3rem;
  }

  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
  }

  .contact-description {
    font-size: 0.95rem;
    margin-bottom: 35px;
    line-height: 1.5;
  }

  .contact-form-container {
    padding: 30px;
    border-radius: 18px;
  }

  .form-row {
    gap: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 15px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 11px 20px;
    font-size: 0.9rem;
    width: 140px;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .contact-section {
    padding: 60px 0;
  }

  .contact-container {
    margin: 0 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    padding-right: 0;
    text-align: left;
  }

  .contact-title {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: 0.15px;
  }

  .contact-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .contact-details {
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contact-item {
    justify-content: flex-start;
    gap: 12px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon img {
    width: 45px;
    height: 45px;
  }

  .contact-map {
    max-width: 350px;
    margin: 1rem auto 0 auto;
  }

  .contact-form-container {
    padding: 25px;
    border-radius: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group {
    gap: 6px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    width: 130px;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .contact-section {
    padding: 50px 0;
  }

  .contact-container {
    margin: 0 1.5rem;
    gap: 2.5rem;
  }

  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 14px;
    letter-spacing: 0.1px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
  }

  .contact-description {
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  .contact-details {
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contact-item {
    gap: 10px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon img {
    width: 40px;
    height: 40px;
  }

  .contact-label {
    font-size: 0.9rem;
  }

  .contact-company {
    font-size: 20px;
  }

  .contact-map {
    max-width: 382px;
    margin: 0.75rem 0 0 2px;
  }

  .contact-form-container {
    padding: 20px;
    border-radius: 12px;
  }

  .form-group {
    gap: 5px;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 9px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .submit-btn {
    padding: 9px 16px;
    font-size: 0.8rem;
    width: 120px;
    border-radius: 6px;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .contact-section {
    padding: 40px 0;
  }

  .contact-container {
    margin: 0 1rem;
    gap: 2rem;
  }

  .contact-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.05px;
  }

  .contact-subtitle {
    font-size: 0.8rem;
    margin-bottom: 6px;
    letter-spacing: 0.6px;
  }

  .contact-description {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .contact-details {
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .contact-item {
    gap: 8px;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
  }

  .contact-icon img {
    width: 35px;
    height: 35px;
  }

  .contact-label {
    font-size: 0.85rem;
  }

  .contact-company {
    font-size: 18px;
  }

  .contact-map {
    max-width: 280px;
    margin: 0.5rem auto 0 auto;
  }

  .contact-form-container {
    padding: 18px;
    border-radius: 10px;
  }

  .form-group {
    gap: 4px;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px 10px;
    font-size: 0.75rem;
    border-radius: 5px;
  }

  .form-group textarea {
    min-height: 70px;
  }

  .submit-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
    width: 110px;
    border-radius: 5px;
  }
}

/* Footer */
.footer {
  background: white;
}

/* Top Footer Section */
.footer-top {
  background: #37afe1;
  padding: 60px 0;
  color: white;
}

.footer-container {
  /* max-width: 1200px; */
  margin: 0 5rem;
  padding: 0;
  display: flex;
  justify-content: space-between;
  /* align-items: flex-start; */
  gap: 4rem;
  height: 100%;
}

.footer-left {
  flex: 1;
  max-width: 450px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.social-media {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icon:hover img {
  filter: brightness(0) invert(0);
}

/* Font Awesome Icons Styling */
.social-icon i {
  font-size: 18px;
  color: white !important;
  transition: color 0.3s ease;
}

.social-icon:hover i {
  color: #37afe1 !important;
}

/* Ensure icons are white by overriding any inherited colors */
.social-icon {
  color: white !important;
}

.social-icon:hover {
  color: #37afe1 !important;
}

.footer-right {
  /* flex-shrink: 0; */
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.footer-right-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-nav {
  flex: 1;
  display: flex;
  gap: 50px;
}

.footer-nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 0.8;
}

/* Bottom Footer Section */
.footer-bottom {
  background: #0091cd;
  padding: 20px 0;
  color: white;
}

.footer-bottom .footer-container {
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.9;
}

.legal-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.legal-link:hover {
  opacity: 0.8;
}

.separator {
  opacity: 0.6;
}

/* Enhanced Footer Responsive Styles */
@media (max-width: 1024px) {
  /* Tablet Styles */
  .footer-top {
    padding: 50px 0;
  }

  .footer-container {
    margin: 0 3rem;
    gap: 3rem;
  }

  .footer-left {
    max-width: 400px;
  }

  .footer-logo img {
    height: 45px;
    margin-bottom: 18px;
  }

  .footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .social-media {
    gap: 12px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
  }

  .footer-bottom {
    padding: 18px 0;
  }

  .copyright {
    font-size: 0.85rem;
  }

  .legal-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Styles */
  .footer-top {
    padding: 40px 0;
  }

  .footer-container {
    margin: 0 2rem;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
  }

  .footer-left {
    max-width: 100%;
    order: 1;
  }

  .footer-right {
    order: 2;
    align-items: center;
    gap: 25px;
  }

  .footer-logo img {
    height: 40px;
    margin-bottom: 15px;
  }

  .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .social-media {
    justify-content: center;
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .footer-nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.7px;
  }

  .footer-right-bottom {
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin: 0 2rem;
  }

  .copyright {
    font-size: 0.8rem;
  }

  .legal-link {
    font-size: 0.8rem;
  }

  .separator {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  /* Small Mobile Styles */
  .footer-top {
    padding: 35px 0;
  }

  .footer-container {
    margin: 0 1.5rem;
    gap: 2rem;
  }

  .footer-left {
    order: 1;
  }

  .footer-right {
    order: 2;
    gap: 20px;
  }

  .footer-logo img {
    height: 35px;
    margin-bottom: 12px;
  }

  .footer-tagline {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .social-media {
    gap: 12px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .social-icon img {
    width: 16px;
    height: 16px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer-nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.6px;
  }

  .footer-right-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .separator {
    display: none;
  }

  .footer-bottom {
    padding: 12px 0;
  }

  .footer-bottom .footer-container {
    margin: 0 1.5rem;
    gap: 0.8rem;
  }

  .copyright {
    font-size: 0.75rem;
  }

  .legal-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  /* Extra Small Mobile Styles */
  .footer-top {
    padding: 30px 0;
  }

  .footer-container {
    margin: 0 1rem;
    gap: 1.5rem;
  }

  .footer-left {
    order: 1;
  }

  .footer-right {
    order: 2;
    gap: 18px;
  }

  .footer-logo img {
    height: 30px;
    margin-bottom: 10px;
  }

  .footer-tagline {
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .social-media {
    gap: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon img {
    width: 14px;
    height: 14px;
  }

  .footer-nav {
    gap: 12px;
  }

  .footer-nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .footer-right-bottom {
    gap: 6px;
  }

  .footer-bottom {
    padding: 10px 0;
  }

  .footer-bottom .footer-container {
    margin: 0 1rem;
    gap: 0.6rem;
  }

  .copyright {
    font-size: 0.7rem;
  }

  .legal-link {
    font-size: 0.7rem;
  }
}

/* Our Journey of Excellence Section */
.journey-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  z-index: 10;
  clear: both;
}

.journey-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.journey-visual {
  position: relative;
  height: 400px;
}

.journey-images-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.journey-image-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 90%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.journey-image-bottom {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 60%;
  height: 75%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.journey-image-top img,
.journey-image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-overlay {
  position: absolute;
  top: 20px;
  left: 250px;
  background: url("../images/Rectangle.png") no-repeat center center;
  /* background-size: 30%; */
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  min-width: 150px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.dot-pattern-journey {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 0;
}

.dot-pattern-journey img {
  width: 120px;
  height: auto;
  opacity: 0.6;
}

.journey-content {
  padding-left: 2rem;
}

.journey-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.journey-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #37afe1;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.journey-description {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.btn-journey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #37afe1;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-journey:hover {
  background: #2a8bc7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(55, 175, 225, 0.3);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-journey:hover .btn-arrow {
  transform: translateX(5px);
}

/* Responsive Design for Journey Section */
@media (max-width: 768px) {
  .journey-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .journey-content {
    padding-left: 0;
  }

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

  .experience-overlay {
    top: 15px;
    right: 15px;
    padding: 15px;
    min-width: 100px;
  }

  .experience-number {
    font-size: 2rem;
  }
}

/* Why Choose Abbomed Section */
.why-choose-section {
  padding: 80px 0 !important;
  background: #ffffff !important;
  clear: both;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.why-choose-title {
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #37afe1 !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  display: block !important;
}

.why-choose-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
}

.why-choose-card {
  position: relative !important;
  background: #ffffff !important;
  border: 2px solid #37afe1 !important;
  border-radius: 12px !important;
  padding: 4rem 2rem !important;
  text-align: left !important;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 300px;
  display: block !important;
  box-shadow: -5px 5px 15px rgba(55, 175, 225, 0.1),
    5px -5px 15px rgba(55, 175, 225, 0.1);
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 80px;
  height: 80px;
  border-top: 8px solid #37afe1;
  border-right: 8px solid #37afe1;
  border-radius: 0 12px 0 0;
  z-index: 1;
}

.why-choose-card::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border-bottom: 8px solid #37afe1;
  border-left: 8px solid #37afe1;
  border-radius: 0 0 0 12px;
  z-index: 1;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(55, 175, 225, 0.2);
}

/* About Testimonials Section */
.about-testimonials-section {
  padding: 80px 2rem;
  background: #e3f7ff;
  clear: both;
}

.about-testimonials-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-testimonials-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #37afe1;
  text-transform: uppercase;
  line-height: 1.2;
}

.about-testimonials-grid {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-testimonial-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  max-height: 250px;
}

.about-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.about-testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-top: auto;
}

.about-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-author-info {
  flex: 1;
}

.about-author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.about-author-title {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Why Choose Cards Mobile */
  .why-choose-cards {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .why-choose-card {
    padding: 2rem !important;
    min-height: auto !important;
  }

  .why-choose-title {
    font-size: 2rem !important;
  }

  .card-title {
    font-size: 1.2rem !important;
  }

  .card-description {
    font-size: 0.9rem !important;
  }

  /* About Testimonials Mobile */
  .about-testimonials-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-testimonial-card {
    padding: 1.5rem;
    min-height: 180px;
    max-height: 220px;
    flex-direction: column;
    text-align: center;
  }

  .about-testimonials-title {
    font-size: 2rem;
  }

  .about-testimonial-text {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }

  .about-author-image {
    width: 50px;
    height: 50px;
  }

  .about-author-name {
    font-size: 1rem;
  }

  .about-author-title {
    font-size: 0.8rem;
  }

  .about-testimonial-author {
    justify-content: center;
  }
}

.card-icon {
  width: 60px;
  height: 60px;
  /* background: #37afe1; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  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 fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #37afe1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-description {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.card-number {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 10rem;
  font-weight: 700;
  color: #37afe1;
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
  .why-choose-title {
    font-size: 2.5rem;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-card {
    padding: 2rem 1.5rem;
  }

  .card-number {
    font-size: 6rem;
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-title {
    font-size: 2rem;
  }

  .why-choose-card {
    padding: 1.5rem 1rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}
