/* Custom CSS Variables - Medical Green Theme */
:root {
  /* Primary Medical Green Colors */
  --primary-color: #2c5530;
  --secondary-color: #4a7c59;
  --accent-color: #6ab04c;

  /* Text Colors */
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;

  /* Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #2c5530, #4a7c59);
  --gradient-secondary: linear-gradient(135deg, #4a7c59, #6ab04c);
  --gradient-accent: linear-gradient(135deg, #6ab04c, #5a9e3a);

  /* Box Shadow */
  --shadow-soft: 0 5px 25px rgba(44, 85, 48, 0.1);
  --shadow-medium: 0 10px 30px rgba(44, 85, 48, 0.15);
  --shadow-strong: 0 15px 40px rgba(44, 85, 48, 0.2);
}

body {
  overflow-x: hidden;
}

/* Bootstrap Override - Primary Color */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(106, 176, 76, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5a9e3a;
  border-color: #5a9e3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 176, 76, 0.4);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus   {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Navigation Styling */
#mainNavbar {
  background: var(--primary-color) !important;
  box-shadow: 0 2px 20px rgba(44, 85, 48, 0.15);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

/* Logo Styling */
.navbar-logo {
  transition: all 0.3s ease;
  height: 50px;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.footer-logo {
  transition: all 0.3s ease;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 0;
  margin-top: 10px;
  box-shadow: 0 15px 35px rgba(44, 85, 48, 0.15);
}

.dropdown-item {
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 10px;
  font-weight: 500;
  z-index: 1000 !important;
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  transform: translateX(5px);
}

.dropdown-item i {
  transition: all 0.3s ease;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover i {
  transform: scale(1.1);
}

.dropdown-divider {
  margin: 10px 0;
  border-color: var(--accent-color);
  opacity: 0.3;
}

#mainNavbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 30px rgba(44, 85, 48, 0.2);
}

.navbar-brand {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.brand-text {
  background: linear-gradient(45deg, #ffffff, #e8f5e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#mainNavbar {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* Nested dropdown positioning */
.dropdown-submenu .dropdown-menu {
  top: 60%;
  /* right: 100%; */
  /* margin-top: -1px; */
  min-width: 250px;
}

/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Responsive positioning - go left when no space on right */
@media (min-width: 992px) {
  .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
    left: auto;
    right: 100%;
  }
}

/* Mobile responsive */
@media (max-width: 991.98px) {
  .dropdown-submenu .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-left: 20px;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    min-width: auto;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .min-vh-100 {
  min-height: 90vh !important;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: 
        radial-gradient(circle at 20% 80%, rgba(106, 176, 76, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.3) 0%, transparent 50%); */
  z-index: 1;
}

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

.hero-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.text-accent {
  color: var(--accent-color) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.hero-stats .stat-item {
  transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

/* Hero Visual Elements */
.hero-image {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.medical-illustration {
  position: relative;
  width: 450px;
  height: 450px;
}

/* Enhanced Central Icon - Simplified */
.central-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 5;
}

.central-icon:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(106, 176, 76, 0.3);
}

.central-icon i {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.central-icon:hover i {
  transform: scale(1.05);
}

.central-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.central-title {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.central-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Pulse Ring - Single */
.pulse-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(106, 176, 76, 0.4);
  border-radius: 50%;
  animation: pulse 3s ease-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* Enhanced Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(15px);
  animation: float 4s ease-in-out infinite;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 180px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(106, 176, 76, 0.2);
}

.floating-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border-color: var(--accent-color);
}

.floating-card i {
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.floating-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--primary-color);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Card Positioning - Clean Layout */
.floating-card.card-1 {
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 10%;
  right: -15%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Quality Indicators */
.quality-indicator {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(106, 176, 76, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quality-indicator:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.indicator-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.indicator-icon i {
  color: white;
  font-size: 1rem;
}

.quality-indicator:hover .indicator-icon {
  transform: scale(1.1);
}

.indicator-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.indicator-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.indicator-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.indicator-1 {
  top: 60%;
  right: -10%;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

.indicator-2 {
  bottom: 25%;
  right: -10%;
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 2s;
  opacity: 0;
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Subtle Background Elements */
.bg-element {
  position: absolute;
  background: rgba(106, 176, 76, 0.05);
  border-radius: 50%;
  animation: gentleFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 60%;
  animation-delay: 0s;
}

.element-2 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 70%;
  animation-delay: 2s;
}

.element-3 {
  width: 100px;
  height: 100px;
  top: 70%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

/* Pulse Icon Animation */
.pulse-icon {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Tilt Effect (CSS-only fallback) */
.no-js [data-tilt] {
  transition: transform 0.3s ease;
}

.no-js [data-tilt]:hover {
  transform: perspective(1000px) rotateX(10deg) rotateY(10deg)
    scale3d(1.05, 1.05, 1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Trust Section */
.trust-section {
  border-bottom: 1px solid #e9ecef;
}

.trust-item {
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.trust-item:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Category Cards */
.categories-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.category-card {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.category-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: var(--shadow-strong);
}

.category-card .card-header {
  border: none;
  position: relative;
  overflow: hidden;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.category-cards {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.category-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.card-body ul li {
  font-size: 0.95rem;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
  background: var(--gradient-secondary) !important;
}

.bg-gradient-accent {
  background: var(--gradient-accent) !important;
}

/* .category-icon {
    transition: all 0.3s ease;
} */

/* .category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card .card-body ul li {
    transition: all 0.3s ease;
    padding: 2px 0;
}

.category-card:hover .card-body ul li {
    transform: translateX(5px);
} */

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

.feature-item {
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 15px;
}

.feature-item:hover {
  background: white;
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.quality-card {
  background: white;
  padding: 25px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.quality-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.quality-card:hover i {
  transform: scale(1.1);
  color: var(--primary-color);
}

.quality-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.quality-card p {
  font-size: 0.8rem;
  color: var(--text-dark);
  margin: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

.contact-card {
  transition: all 0.3s ease;
  border-radius: 15px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  border-radius: 50px;
  border: 2px solid #e9ecef;
  padding: 12px 20px;
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(106, 176, 76, 0.15);
  background: white;
}

.inquiry-form textarea.form-control {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    var(--text-dark) 100%
  ) !important;
}

.footer .social-links a {
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
}

.footer .social-links a:hover {
  color: var(--accent-color) !important;
  background: rgba(106, 176, 76, 0.1);
  transform: translateY(-2px);
}

.footer a:hover {
  color: var(--accent-color) !important;
}

.footer .badges .badge {
  transition: all 0.3s ease;
}

.footer .badges .badge:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* .hero-section {
        padding-bottom: 40px;
    } */

  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-image {
    height: auto;
    padding: 20px 10px;
  }

  .medical-illustration {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  /* Stack floating cards vertically on mobile */
  .floating-card {
    position: relative !important;
    transform: none !important;
    margin: 15px auto;
    display: block;
    max-width: 280px;
    min-width: 250px;
    padding: 15px 20px;
  }

  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-subtitle {
    font-size: 0.75rem;
  }

  /* Center the central icon */
  .central-icon {
    position: relative !important;
    transform: none !important;
    margin: 20px auto;
    display: block;
    width: 140px;
    height: 140px;
  }

  .central-icon i {
    font-size: 2.5rem;
  }

  .central-title {
    font-size: 0.8rem;
  }

  .central-subtitle {
    font-size: 0.6rem;
  }

  /* Stack quality indicators vertically */
  .quality-indicator {
    position: relative !important;
    transform: none !important;
    margin: 15px auto;
    display: flex;
    max-width: 280px;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  /* Hide decorative elements on mobile */
  .bg-element {
    display: none;
  }

  .pulse-ring {
    width: 120px;
    height: 120px;
  }

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

  .hero-stats {
    margin-top: 2rem !important;
  }
}

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

  .category-card .card-header {
    padding: 2rem 1rem;
  }

  .category-icon {
    margin-bottom: 1rem !important;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}

/* Additional Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
/* .loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
} */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* About Us Page Styles */
.min-vh-75 {
  min-height: 75vh;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.about-main-image {
  position: relative;
  z-index: 2;
  max-width: 250px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.feature-badge {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(106, 176, 76, 0.1);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(106, 176, 76, 0.2);
  transform: translateX(5px);
}

.excellence-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.excellence-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.excellence-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.excellence-icon i {
  font-size: 1.8rem;
  color: white;
}

.excellence-card:hover .excellence-icon {
  transform: scale(1.1) rotate(5deg);
}

.excellence-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.certification-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
  height: 100%;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.cert-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.cert-icon i {
  font-size: 1.2rem;
  color: white;
}

.certification-card:hover .cert-icon {
  transform: scale(1.1);
}

.certification-card h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.policy-section,
.vision-section {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(106, 176, 76, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.policy-item:hover {
  background: rgba(106, 176, 76, 0.1);
  transform: translateX(5px);
}

.policy-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.policy-icon i {
  color: white;
  font-size: 0.9rem;
}

.policy-content h6 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.vision-card {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  padding: 2rem;
  border-radius: 15px;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.vision-icon i {
  font-size: 1.5rem;
  color: white;
}

.vision-card h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.commitment-card {
  background: rgba(106, 176, 76, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--accent-color);
}

.commitment-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.commitment-icon i {
  color: white;
  font-size: 1.1rem;
}

.commitment-content h6 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
  .about-image-wrapper {
    padding: 1rem;
  }

  .about-main-image {
    max-width: 180px;
  }

  .hero-stats .col-6 {
    margin-bottom: 0.75rem;
  }

  .excellence-card,
  .policy-section,
  .vision-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .policy-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
  }

  .policy-icon {
    margin: 0 auto 0.75rem;
  }

  .commitment-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .commitment-icon {
    margin: 0 auto 0.75rem;
  }
}

/* Services Page Styles */
.service-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 300px;
}

.service-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  z-index: 1;
  animation: gentleFloat 8s ease-in-out infinite;
}

.maintenance-decoration {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  animation-delay: 2s;
}

.service-icon-large {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(106, 176, 76, 0.3);
  transition: all 0.3s ease;
}

.service-icon-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(106, 176, 76, 0.4);
}

.service-icon-large i {
  font-size: 3rem;
  color: white;
}

.maintenance-icon {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(106, 176, 76, 0.1);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 2px solid rgba(106, 176, 76, 0.2);
}

.service-feature {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(106, 176, 76, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 1.2rem;
}

.feature-content h6 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.service-item span {
  font-weight: 500;
  color: var(--text-dark);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.maintenance-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.maintenance-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.maintenance-icon-sm {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.maintenance-icon-sm i {
  color: white;
  font-size: 1.1rem;
}

.maintenance-content h6 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contract-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contract-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--text-dark);
}

.advantage-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.advantage-icon i {
  font-size: 1.5rem;
  color: white;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Services Page Mobile Responsiveness */
@media (max-width: 768px) {
  .service-image-wrapper {
    padding: 1rem;
    min-height: 200px;
  }

  .service-icon-large {
    width: 80px;
    height: 80px;
  }

  .service-icon-large i {
    font-size: 2rem;
  }

  .service-decoration {
    width: 120px;
    height: 120px;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .service-item i {
    margin-bottom: 0.5rem;
  }

  .maintenance-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .maintenance-icon-sm {
    margin: 0 auto 0.75rem;
  }

  .contract-features {
    align-items: center;
    text-align: center;
  }

  .advantage-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}

/* Contact Page Styles */
.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-details p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(106, 176, 76, 0.25);
}

/* .contact-form .form-control:valid {
    border-color: var(--accent-color);
} */

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.office-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(106, 176, 76, 0.1);
  height: fit-content;
}

.office-info h3 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-card {
  background: rgba(106, 176, 76, 0.05);
  border: 1px solid rgba(106, 176, 76, 0.1);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(106, 176, 76, 0.1);
  border-color: var(--accent-color);
}

.info-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.info-header i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
  width: 20px;
}

.info-header h6 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
}

.info-content p {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.info-content h6 {
  color: var(--text-dark);
  font-weight: 600;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.hours-item span:first-child {
  color: var(--text-dark);
  font-weight: 500;
}

.hours-item span:last-child {
  color: var(--text-dark);
}

.hours-item.emergency {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(106, 176, 76, 0.2);
}

.hours-item.emergency span {
  color: var(--accent-color);
  font-weight: 600;
}

.quick-actions h6 {
  color: var(--text-dark);
  font-weight: 600;
}

.quick-actions .btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(106, 176, 76, 0.1);
}

.map-placeholder {
  position: relative;
  height: 550px;
  background: #f8f9fa;
}

.map-overlay {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(106, 176, 76, 0.2);
  backdrop-filter: blur(10px);
}

.map-info h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.map-info h5 i {
  color: var(--accent-color);
}

.map-info p {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

/* Contact Page Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .contact-icon i {
    font-size: 1.2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .office-info {
    padding: 1.5rem;
  }

  .info-card {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .map-overlay {
    position: static;
    margin-bottom: 1rem;
    background: white;
  }

  .map-placeholder {
    height: 300px;
  }

  .quick-actions .btn {
    padding: 0.5rem 1rem;
  }

  .hero-stats .col-6 {
    margin-bottom: 1rem;
  }
}

/* Careers Page Styles */
.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.job-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid rgba(106, 176, 76, 0.1);
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.job-header {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  padding: 2rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.job-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-badges .badge {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.job-apply-btn .btn {
  background: white;
  color: var(--accent-color);
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.job-apply-btn .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.job-content {
  padding: 2rem;
}

.job-section {
  margin-bottom: 2rem;
}

.job-section-title {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.job-section-title i {
  color: var(--accent-color);
  width: 20px;
}

.location-list {
  display: grid;
  gap: 0.75rem;
}

.location-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: rgba(106, 176, 76, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(106, 176, 76, 0.1);
  transform: translateX(5px);
}

.location-item i {
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.responsibility-list {
  list-style: none;
  padding: 0;
}

.responsibility-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.responsibility-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.job-requirements {
  background: rgba(106, 176, 76, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.requirement-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.requirement-item i {
  margin-right: 0.5rem;
  width: 20px;
}

.application-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(106, 176, 76, 0.1);
}

.application-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.application-form .form-control,
.application-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.application-form .form-control:focus,
.application-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(106, 176, 76, 0.25);
  transform: translateY(-2px);
}

/* .application-form .form-control:valid {
    border-color: var(--accent-color);
} */

.application-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.application-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.application-form .btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.application-form .btn-primary:hover,
.application-form .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(106, 176, 76, 0.4);
}

.application-form .btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.application-form .btn-outline-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Careers Page Mobile Responsiveness */
@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .benefit-icon i {
    font-size: 1.2rem;
  }

  .job-header {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .job-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .job-badges {
    justify-content: center;
  }

  .job-content {
    padding: 1.5rem;
  }

  .location-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .location-item i {
    margin: 0 0 0.5rem 0;
  }

  .responsibility-list li {
    padding-left: 1rem;
    font-size: 0.9rem;
  }

  .job-requirements {
    margin-top: 2rem;
    padding: 1rem;
  }

  .requirement-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem;
  }

  .requirement-item i {
    margin: 0 0 0.25rem 0;
  }

  .application-form-wrapper {
    padding: 1.5rem;
    margin: 1rem;
  }

  .application-form .btn-primary,
  .application-form .btn-outline-secondary {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Product Pages Styles */
.breadcrumb-section {
  background: #f8f9fa;
  padding: 2rem 0 1rem;
  margin-top: 80px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--text-dark);
}

.product-hero {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.product-category-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.product-hero-icon {
  text-align: center;
  position: relative;
}

.product-hero-icon i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  animation: gentleFloat 6s ease-in-out infinite;
}

.product-stats .stat-item {
  text-align: center;
  padding: 1rem;
}

.category-quick-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
  height: 100%;
}

.category-quick-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.category-quick-card .category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.category-quick-card .category-icon i {
  font-size: 1.5rem;
  color: white;
}

.category-quick-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-quick-card h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(106, 176, 76, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.product-title {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 120px;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.certification-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(106, 176, 76, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(106, 176, 76, 0.1);
  transition: all 0.3s ease;
}

.cert-item:hover {
  background: rgba(106, 176, 76, 0.1);
  border-color: var(--accent-color);
}

.cert-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cert-icon i {
  color: white;
  font-size: 1.2rem;
}

.cert-content h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.quality-features {
  background: rgba(106, 176, 76, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(106, 176, 76, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quality-item {
  text-align: center;
  padding: 1rem;
}

.quality-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.quality-item h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Product Pages Mobile Responsiveness */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 1.5rem 0 0.5rem;
  }

  .product-hero {
    padding: 3rem 0;
  }

  .product-hero-icon i {
    font-size: 4rem;
  }

  .product-stats .stat-item {
    padding: 0.5rem;
  }

  .category-quick-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .category-quick-card .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .category-quick-card .category-icon i {
    font-size: 1.2rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .product-image {
    height: 150px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cert-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .cert-icon {
    margin: 0 auto 0.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quality-features {
    padding: 1.5rem;
  }
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--accent-color),
    var(--secondary-color)
  );
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.timeline-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  width: 45%;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) .timeline-content {
  padding-right: 2rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 2rem;
  text-align: left;
}

.timeline-card {
  transition: all 0.3s ease;
}

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

/* Stats Grid Styles */
.stats-grid .stat-box {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.stats-grid .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.stats-grid .stat-icon {
  transition: all 0.3s ease;
}

.stats-grid .stat-box:hover .stat-icon i {
  transform: scale(1.1);
}

/* Values Section Styles */
.values-section .value-card {
  transition: all 0.3s ease;
  border-radius: 15px;
  border: 1px solid #e9ecef;
}

.values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.values-section .value-icon i {
  transition: all 0.3s ease;
}

.values-section .value-card:hover .value-icon i {
  transform: scale(1.2) rotate(5deg);
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mission-card::before,
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
  opacity: 1;
}

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

/* Enhanced Call to Action */
.cta-content .cta-stats .stat-item {
  transition: all 0.3s ease;
}

.cta-content .cta-stats .stat-item:hover {
  transform: translateY(-3px);
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 80px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateY(-50%);
  }

  .timeline-content {
    width: 100%;
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .timeline-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .stats-grid .stat-box {
    margin-bottom: 1rem;
  }

  .values-section .value-card {
    margin-bottom: 1rem;
  }

  .mission-card,
  .vision-card {
    margin-bottom: 2rem;
  }
}

.quote-btn {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--primary-color)
  );
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
  color: white;
}

/* Floating Icons */
.floating-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-icon:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-icon.quote {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
}

.floating-icon.contact {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-icon.email {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}
.floating-icon {
  position: relative;
}

.contact-info {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid var(--accent-color, #28a745);
  font-size: 0.9rem;
  z-index: 1;
}

.floating-icon:hover .contact-info {
  opacity: 1;
  visibility: visible;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: var(--primary-color, #28a745);
}

/* Contact Info Tooltip */
.contact-info {
  position: absolute;
  right: 70px;
  top: 50%;
  color: white !important;
  font-size: 0.9rem;
  transform: translateY(-50%);
  background: var(--accent-color);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid var(--primary-color);
}

.floating-icon.contact:hover .contact-info {
  opacity: 1;
  visibility: visible;
}

.contact-info::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left-color: var(--primary-color);
}

/* Modal Styling */
.modal-header {
  background: var(--accent-color) !important;
  color: white;
  border-radius: 10px 10px 0 0;
}

.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.btn-success {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: bold;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-icons {
    right: 10px;
    gap: 10px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-info {
    right: 60px;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  /* .hero-section {
        padding: 40px 0;
    } */

  .product-card {
    padding: 20px;
    margin: 15px 0;
  }

  .product-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .floating-icons {
    right: 5px;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .contact-info {
    position: fixed;
    right: 10px;
    top: 10px;
    transform: none;
    font-size: 0.8rem;
  }

  .contact-info::after {
    display: none;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}
.main-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 30px;
  align-items: start;
}

.sidebar {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 25px;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 80px;
}

.sidebar h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.4rem;
  text-align: center;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 10px;
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.category-list li a {
  text-decoration: none;
  color: #34495e;
  padding: 12px 15px;
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-list li a:hover {
  color: var(--accent-color);
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.content h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2rem;
  position: relative;
}

.content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color) var(--primary-color));
  border-radius: 2px;
}

.feature-section {
  margin-bottom: 35px;
  padding: 25px;
  border-left: 5px solid var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.05),
    rgba(41, 128, 185, 0.05)
  );
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.feature-section h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.feature-section h3::before {
  content: "★";
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-section p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* .cta-button {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
            background: linear-gradient(135deg, #c0392b, #a93226);
        } */

/* Responsive Design */
@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 3fr 9fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    position: static;
    order: 2;
  }

  .content {
    order: 1;
    padding: 25px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 20px 15px;
  }

  .header h1 {
    font-size: 1.7rem;
  }

  .content {
    padding: 20px;
  }

  .content h2 {
    font-size: 1.6rem;
  }

  .feature-section {
    padding: 20px;
  }

  .category-list li a {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header,
.sidebar,
.content {
  animation: fadeInUp 0.8s ease-out;
}

.content {
  animation-delay: 0.2s;
}

.sidebar {
  animation-delay: 0.4s;
}
