/* ==========================================================================
   Ashok Home Care - Custom Design System & Overrides
   ========================================================================== */

:root {
  --theme-color: #0077C8 !important;       /* Brand Primary Blue */
  --theme-color2: #7CB342 !important;      /* Brand Accent Green */
  --title-color: #0A1931 !important;       /* Professional Deep Blue/Navy for Headings */
  --body-color: #4A5568 !important;        /* Clean charcoal gray for body reading */
  --smoke-color: #F7FAFC !important;       /* Clean clinical white-gray */
  --smoke-color2: #EDF2F7 !important;
}

/* --------------------------------------------------------------------------
   Logo Formatting
   -------------------------------------------------------------------------- */
.header-logo img, 
.about-logo img, 
.mobile-logo img {
  max-height: 60px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Hide background logo shapes to keep the logo layout clean and crisp */
.logo-bg {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Button Customization
   -------------------------------------------------------------------------- */

/* Red Conversion CTA Buttons (Used strictly for high-priority actions) */
.th-btn.th-btn-cta {
  background: linear-gradient(180deg, #E53935 37.5%, #C62828 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(229, 57, 53, 0.4) !important;
  border: none !important;
}

.th-btn.th-btn-cta:before {
  background: linear-gradient(180deg, #FF6F60 0%, rgba(255, 111, 96, 0) 78.65%) !important;
  filter: blur(2px) !important;
}

.th-btn.th-btn-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0px 6px 20px rgba(229, 57, 53, 0.6) !important;
  background: linear-gradient(180deg, #C62828 37.5%, #B71C1C 100%) !important;
  color: #FFFFFF !important;
}

/* Green Action Button (Typically for WhatsApp and Trust elements) */
.th-btn.th-btn-whatsapp {
  background: linear-gradient(180deg, #25D366 37.5%, #128C7E 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4) !important;
  border: none !important;
}

.th-btn.th-btn-whatsapp:before {
  background: linear-gradient(180deg, #64FFAA 0%, rgba(100, 255, 170, 0) 78.65%) !important;
}

.th-btn.th-btn-whatsapp:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6) !important;
  background: linear-gradient(180deg, #128C7E 37.5%, #075E54 100%) !important;
  color: #FFFFFF !important;
}

/* Blue Accent Outline Button */
.th-btn.style-outline-blue {
  background: transparent !important;
  border: 2px solid #0077C8 !important;
  color: #0077C8 !important;
  box-shadow: none !important;
}

.th-btn.style-outline-blue:before {
  display: none !important;
}

.th-btn.style-outline-blue:hover {
  background: #0077C8 !important;
  color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(0, 119, 200, 0.4) !important;
}

/* --------------------------------------------------------------------------
   Highlights & Badges
   -------------------------------------------------------------------------- */
.text-theme-green {
  color: #7CB342 !important;
}

.bg-theme-green {
  background-color: #7CB342 !important;
  color: #FFFFFF !important;
}

.text-theme-blue {
  color: #0077C8 !important;
}

.bg-theme-blue {
  background-color: #0077C8 !important;
  color: #FFFFFF !important;
}

.choose-feature .box-number {
  background-color: #7CB342 !important;
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   Floating Conversion Widgets (Sticky Bar & Action Buttons)
   -------------------------------------------------------------------------- */

/* Sticky bottom bar for Mobile viewports */
@media (max-width: 767px) {
  .sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 9999;
    padding: 10px 15px;
    gap: 12px;
    border-top: 1px solid #E2E8F0;
  }
  
  .sticky-mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF !important;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .sticky-mobile-bar a:active {
    transform: scale(0.97);
  }
  
  .sticky-btn-call {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    box-shadow: 0 2px 6px rgba(229, 57, 53, 0.3);
  }
  
  .sticky-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
  }
  
  /* Add padding to the body so elements at the bottom of the page aren't covered */
  body {
    padding-bottom: 75px !important;
  }
  
  /* Adjust scroll-to-top button upward so it doesn't overlap the sticky bar */
  .scroll-top.show {
    bottom: 85px !important;
  }
}

@media (min-width: 768px) {
  .sticky-mobile-bar {
    display: none !important;
  }
}

/* Floating contact options for desktop viewports */
.floating-actions-desktop {
  position: fixed;
  bottom: 90px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

@media (max-width: 767px) {
  .floating-actions-desktop {
    display: none !important;
  }
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  font-size: 24px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
  color: #FFFFFF !important;
}

.floating-btn-call {
  background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
  animation: pulse-call-btn 2.5s infinite;
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

@keyframes pulse-call-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
  }
}

/* --------------------------------------------------------------------------
   Product Inquiry Forms Styling
   -------------------------------------------------------------------------- */
.product-inquiry-box {
  background-color: #FFFFFF;
  border: 2px solid #EDF2F7;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 119, 200, 0.05);
  margin-top: 40px;
}

.product-inquiry-box .form-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: #0A1931;
  font-weight: 700;
  border-bottom: 2px solid #0077C8;
  padding-bottom: 10px;
}

/* Fix text colors of checkmarks list */
.checklist ul li i {
  color: #7CB342 !important; /* Green tick marks */
}

/* Adjust category page listings */
.product-cat-heading {
  font-size: 28px;
  font-weight: 800;
  border-left: 5px solid #0077C8;
  padding-left: 15px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #0A1931;
}

.product-cat-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #4A5568;
}

/* Remove default dark themes */
.bg-smoke {
  background-color: #F8FAFC !important;
}

/* Simple tweaks to make theme headers clinical-clean */
.header-links li i {
  color: #0077C8 !important;
}
.header-links li a:hover {
  color: #0077C8 !important;
}
.main-menu a:hover {
  color: #0077C8 !important;
}
.main-menu ul li.active a {
  color: #0077C8 !important;
}

/* --------------------------------------------------------------------------
   Top Header Light Theme Fix
   -------------------------------------------------------------------------- */
.header-top {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid #EDF2F7 !important;
}
.header-top .header-links li, 
.header-top .header-links li b, 
.header-top .header-links li a {
  color: #4A5568 !important;
}
.header-top .header-links li a:hover {
  color: #0077C8 !important;
}
.header-top .header-links li i {
  color: #0077C8 !important; /* Brand Blue Icons */
}
.header-top .social-links a {
  color: #4A5568 !important;
}
.header-top .social-links a:hover {
  color: #0077C8 !important;
}
.header-top .social-title {
  color: #4A5568 !important;
}

/* Adjust original product grid box models colors to align with our palette */
.th-product.product-grid {
  border: 1px solid #EDF2F7 !important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.01) !important;
  background-color: #FFFFFF !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}
.th-product.product-grid:hover {
  box-shadow: 0px 10px 30px rgba(0, 119, 200, 0.08) !important;
  border-color: #0077C8 !important;
}
.th-product .product-img {
  background-color: #FFFFFF !important;
}
.th-product .product-category {
  color: #7CB342 !important; /* Green Category Tag */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.th-product .product-title a:hover {
  color: #0077C8 !important;
}
.th-product .price {
  color: #0077C8 !important;
  font-weight: 700;
}
.th-product .product-tag {
  background-color: #E53935 !important; /* Red Sale tag */
}
.th-product .actions .icon-btn {
  background-color: #FFFFFF !important;
  color: #0A1931 !important;
}
.th-product .actions .icon-btn:hover {
  background-color: #0077C8 !important;
  color: #FFFFFF !important;
  border-color: #0077C8 !important;
}

/* Ensure product grid items are uniform and visually premium */
.th-product.product-grid {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.th-product.product-grid .product-content {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  justify-content: flex-start !important;
  padding: 20px !important;
}

.th-product.product-grid .product-title {
  margin-top: 5px !important;
  margin-bottom: 10px !important;
  font-size: 18px !important;
}

.th-product.product-grid .price {
  margin-top: auto !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}


/* --------------------------------------------------------------------------
   Footer Contrast & Color Fixes (Global overrides)
   -------------------------------------------------------------------------- */
.footer-wrapper.footer-layout1 {
  background-color: #0A192F !important; /* Premium dark navy */
  background-image: none !important; /* Remove background image so text is highly readable */
  color: #E2E8F0 !important;
}

/* Fix title colors in footer widgets */
.footer-wrapper .widget_title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #7CB342 !important;
  padding-bottom: 8px !important;
  margin-bottom: 20px !important;
}

/* Fix text and description colors */
.footer-wrapper .about-text {
  color: #94A3B8 !important;
}

/* Fix icons and text inside info rows */
.footer-wrapper .footer-info {
  color: #CBD5E1 !important;
  font-size: 14px !important;
}

.footer-wrapper .footer-info i {
  color: #7CB342 !important; /* Bright Green Accent */
  font-size: 16px !important;
}

.footer-wrapper .footer-info a.info-box_link {
  color: #FFFFFF !important; /* Clear white for links */
  text-decoration: none !important;
  font-weight: 500 !important;
}

.footer-wrapper .footer-info a.info-box_link:hover {
  color: #7CB342 !important; /* Hover green */
  text-decoration: underline !important;
}

/* Fix quick link menu item colors */
.footer-wrapper .widget_nav_menu ul.menu li a {
  color: #CBD5E1 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.footer-wrapper .widget_nav_menu ul.menu li a:hover {
  color: #7CB342 !important;
  padding-left: 6px !important;
}

/* copyright bottom bar */
.footer-wrapper .copyright-wrap {
  background-color: #050E1A !important; /* Extreme dark bottom bar */
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-wrapper .copyright-text {
  color: #94A3B8 !important;
}

.footer-wrapper .copyright-text a {
  color: #7CB342 !important;
}

.footer-wrapper .copyright-text a:hover {
  color: #FFFFFF !important;
}

.footer-wrapper .th-social a {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}

.footer-wrapper .th-social a:hover {
  background-color: #7CB342 !important;
  color: #FFFFFF !important;
}

/* --------------------------------------------------------------------------
   Gallery Page Improvements (Lightbox & Clean Grid)
   -------------------------------------------------------------------------- */
.gallery-card {
  border: 1px solid #EDF2F7 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.01) !important;
  transition: all 0.3s ease !important;
  display: block !important;
  position: relative !important;
}

.gallery-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 10px 25px rgba(0, 119, 200, 0.08) !important;
  border-color: #0077C8 !important;
}

.gallery-card img {
  width: 100% !important;
  height: 250px !important;
  object-fit: contain !important;
  padding: 15px !important;
  transition: transform 0.5s ease !important;
}

.gallery-card:hover img {
  transform: scale(1.05) !important;
}

/* Lightbox hover zoom icon styling */
.gallery-card .popup-image {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}

.gallery-card .popup-image::after {
  content: '\f002' !important; /* FontAwesome Search Icon */
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', sans-serif !important;
  font-weight: 900 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.8) !important;
  background-color: rgba(0, 119, 200, 0.9) !important;
  color: #FFFFFF !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
}

.gallery-card:hover .popup-image::after {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* --------------------------------------------------------------------------
   Contact Form Premium Styling
   -------------------------------------------------------------------------- */
.contact-form {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 50px 40px !important;
  box-shadow: 0px 15px 40px rgba(0, 119, 200, 0.05) !important;
}

@media (max-width: 767px) {
  .contact-form {
    padding: 30px 20px !important;
  }
}

.contact-form .sec-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #0A1931 !important;
  margin-bottom: 30px !important;
  position: relative;
  display: inline-block;
}

/* Subtle accent line under the heading */
.contact-form .sec-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background-color: #7CB342; /* Brand green */
  margin: 10px auto 0 auto;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .contact-form .sec-title::after {
    margin: 10px 0 0 0;
  }
}

.contact-form .form-group {
  position: relative !important;
  margin-bottom: 24px !important;
}

.contact-form .form-control {
  background-color: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 30px !important;
  height: 56px !important;
  padding-left: 25px !important;
  padding-right: 50px !important;
  font-size: 15px !important;
  color: #1A202C !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease-in-out !important;
}

.contact-form .form-select {
  background-color: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 30px !important;
  height: 56px !important;
  padding-left: 25px !important;
  padding-right: 50px !important;
  font-size: 15px !important;
  color: #1A202C !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease-in-out !important;
  background-image: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

.contact-form textarea.form-control {
  height: auto !important;
  border-radius: 20px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.contact-form .form-control::placeholder {
  color: #94A3B8 !important;
}

/* Form field focus states */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: #FFFFFF !important;
  border-color: #0077C8 !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(0, 119, 200, 0.15) !important;
}

/* Input Icon Positioning & Transition */
.contact-form .form-group i {
  position: absolute !important;
  right: 22px !important;
  top: 28px !important;
  transform: translateY(-50%) !important;
  color: #94A3B8 !important;
  font-size: 16px !important;
  pointer-events: none !important;
  transition: color 0.3s ease !important;
}

.contact-form .form-group textarea ~ i {
  top: 22px !important;
  transform: none !important;
}

/* Glow icon when input is focused */
.contact-form .form-group:focus-within i {
  color: #0077C8 !important;
}

/* Dropdown arrow fix for select list */
.contact-form .form-group .fa-chevron-down {
  right: 22px !important;
  font-size: 14px !important;
  color: #94A3B8 !important;
}

/* Form Submit Button */
.contact-form button[type="submit"] {
  height: 56px !important;
  padding: 0 40px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

/* --------------------------------------------------------------------------
   Hero Doctor/Nurse Image Layout Fix
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .hero-2 .hero-img {
    height: 95% !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: flex-end !important;
  }
  .hero-2 .hero-img img {
    max-height: 100% !important;
    width: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-img img {
    max-height: 400px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
  }
}

/* --------------------------------------------------------------------------
   Breadcrumb Overlay for High-Contrast Text Readability
   -------------------------------------------------------------------------- */
.breadcumb-wrapper {
  position: relative !important;
  z-index: 1 !important;
}

.breadcumb-wrapper::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(10, 25, 47, 0.6) !important; /* Premium dark navy overlay */
  z-index: -1 !important;
}

.breadcumb-wrapper .container {
  position: relative !important;
  z-index: 2 !important;
}

/* --------------------------------------------------------------------------
   Homepage Hero Slider Carousel Styling
   -------------------------------------------------------------------------- */
.hero-slider {
  width: 100% !important;
  height: 100% !important;
  position: relative;
}

.hero-slider .swiper-slide {
  height: auto !important;
  position: relative;
  overflow: hidden;
}

.hero-slider .hero-inner {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 15, 30, 0.85) 0%, rgba(5, 15, 30, 0.5) 100%) !important;
  z-index: 2;
}

/* Sleek Banner Height overrides */
.hero-slider .hero-style2 {
  position: relative;
  z-index: 3;
  padding: 130px 0 !important;
}

@media (max-width: 1299px) {
  .hero-slider .hero-style2 {
    padding: 100px 0 !important;
  }
}

@media (max-width: 767px) {
  .hero-slider .hero-style2 {
    padding: 75px 0 !important;
  }
}

.hero-slider .hero-title2 {
  color: #FFFFFF !important;
}

.hero-slider .hero-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* Decouple default btn-group squishing and add custom spacing */
.hero-slider .btn-group {
  gap: 15px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

.hero-slider .th-btn {
  font-weight: 700 !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3) !important;
  border-radius: 30px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 54px !important;
  padding: 0 30px !important;
}

.hero-slider .th-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.45) !important;
}

.th-btn.style-outline-white {
  background: transparent !important;
  border: 2px solid #FFFFFF !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.th-btn.style-outline-white:hover {
  background: #FFFFFF !important;
  color: #0077C8 !important;
  box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.hero-slider .slider-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  display: flex;
  gap: 8px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.hero-slider .swiper-pagination-bullet-active {
  background-color: #7CB342 !important;
  width: 30px !important;
  border-radius: 6px !important;
}

.hero-slider .slider-prev,
.hero-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-slider .slider-prev {
  left: 30px;
}

.hero-slider .slider-next {
  right: 30px;
}

.hero-slider .slider-prev:hover,
.hero-slider .slider-next:hover {
  background-color: #0077C8;
  border-color: #0077C8;
  color: #FFFFFF;
}

@media (max-width: 991px) {
  .hero-slider .slider-prev,
  .hero-slider .slider-next {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   About Page - Redesigned Values Section (Light Theme)
   -------------------------------------------------------------------------- */
.values-section-light {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.values-section-light .sec-title {
  color: #0A1931 !important;
}

.values-section-light .sub-title {
  color: #0077C8 !important;
}

.value-card-light {
  background: #FFFFFF !important;
  border: 1px solid #EDF2F7 !important;
  border-radius: 16px !important;
  padding: 40px 30px !important;
  height: 100% !important;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  box-shadow: 0px 10px 30px rgba(0, 119, 200, 0.03) !important;
}

.value-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #E2E8F0;
  transition: all 0.3s ease;
}

.value-card-light.border-blue::before {
  background: #0077C8 !important;
}

.value-card-light.border-green::before {
  background: #7CB342 !important;
}

.value-card-light:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0, 119, 200, 0.15) !important;
  box-shadow: 0px 15px 35px rgba(0, 119, 200, 0.08) !important;
}

.value-icon-wrapper-light {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  transition: all 0.4s ease;
}

.value-icon-blue-light {
  background: #EBF5FB !important;
  color: #0077C8 !important;
  border: 1px solid rgba(0, 119, 200, 0.1);
}

.value-icon-green-light {
  background: #F1F9EC !important;
  color: #7CB342 !important;
  border: 1px solid rgba(124, 179, 66, 0.1);
}

.value-card-light:hover .value-icon-wrapper-light {
  transform: scale(1.08) rotate(5deg);
}

.value-card-light:hover .value-icon-blue-light {
  background: #0077C8 !important;
  color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(0, 119, 200, 0.25);
}

.value-card-light:hover .value-icon-green-light {
  background: #7CB342 !important;
  color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(124, 179, 66, 0.25);
}

.value-card-light .value-title-light {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0A1931 !important;
  margin-bottom: 12px !important;
}

.value-card-light .value-text-light {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4A5568 !important;
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Process steps styling
   -------------------------------------------------------------------------- */
.step-card-premium {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  padding: 35px 25px !important;
  height: 100% !important;
  position: relative;
  transition: all 0.3s ease !important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.01) !important;
  text-align: center;
}

.step-card-premium:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 10px 25px rgba(0, 119, 200, 0.06) !important;
  border-color: #0077C8 !important;
}

.step-number-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F0FDF4;
  color: #7CB342;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 20px auto;
  border: 2px solid rgba(124, 179, 66, 0.2);
  transition: all 0.3s ease;
}

.step-card-premium:hover .step-number-badge {
  background-color: #7CB342;
  color: #FFFFFF;
  border-color: #7CB342;
}

.step-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0A1931 !important;
  margin-bottom: 10px !important;
}

.step-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #4A5568 !important;
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   Trusted Brands styling
   -------------------------------------------------------------------------- */
.brand-badge-card {
  background: #FFFFFF !important;
  border: 1px solid #EDF2F7 !important;
  border-radius: 12px !important;
  padding: 25px 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.01) !important;
  transition: all 0.3s ease !important;
}

.brand-badge-card:hover {
  border-color: #7CB342 !important;
  box-shadow: 0px 8px 20px rgba(124, 179, 66, 0.08) !important;
  transform: scale(1.03);
}

.brand-badge-name {
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  color: #A0AEC0 !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.brand-badge-card:hover .brand-badge-name {
  color: #0A1931 !important;
}

/* --------------------------------------------------------------------------
   Service Card Hover High-Contrast Visibility Fixes
   -------------------------------------------------------------------------- */
.service-card {
  transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out !important;
}

/* Service Card Hover (Default Brand Blue) */
.service-card:hover {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0px 10px 30px rgba(0, 119, 200, 0.2) !important;
}

/* Service Card Hover (Accent Brand Green) */
.service-card.service-card-green:hover {
  background-color: var(--theme-color2) !important;
  border-color: var(--theme-color2) !important;
  box-shadow: 0px 10px 30px rgba(124, 179, 66, 0.2) !important;
}

/* Force Text and Links to White on Hover for maximum contrast */
.service-card:hover .box-title,
.service-card:hover .box-title a,
.service-card:hover .box-text {
  color: #FFFFFF !important;
}

/* Icon circle styling and color transitions */
.service-card:hover .box-icon {
  background-color: #FFFFFF !important;
  color: var(--theme-color) !important;
}

.service-card.service-card-green:hover .box-icon {
  background-color: #FFFFFF !important;
  color: var(--theme-color2) !important;
}

/* Button style overrides on Card Hover */
.service-card:hover .th-btn {
  background: #FFFFFF !important;
  color: var(--theme-color) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.service-card.service-card-green:hover .th-btn {
  background: #FFFFFF !important;
  color: var(--theme-color2) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15) !important;
}


/* --------------------------------------------------------------------------
   Section Separations & Premium Background Textures
   -------------------------------------------------------------------------- */

/* Services Section - Soft Clinical Blue tint with tileable texture overlay */
#service-sec {
  background-color: #F0F4F8 !important;
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 119, 200, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(124, 179, 66, 0.04) 0%, transparent 40%),
                    url('../img/bg/pattern_bg_1.png') !important;
  background-repeat: repeat !important;
  position: relative;
  border-top: 1px solid #EDF2F7;
  border-bottom: 1px solid #EDF2F7;
}

/* Testimonials Section - Soft Healing Green tint with tileable texture overlay */
#testi-sec {
  background-color: #F1F9EC !important;
  background-image: radial-gradient(circle at 20% 80%, rgba(124, 179, 66, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(0, 119, 200, 0.04) 0%, transparent 40%),
                    url('../img/bg/pattern_bg_2.png') !important;
  background-repeat: repeat !important;
  position: relative;
  border-top: 1px solid #EDF2F7;
  border-bottom: 1px solid #EDF2F7;
}

