@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #066eb1;
  --primary-green: #0d9488;
  --light-bg: #f0f9ff;
  --dark-text: #242424;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark-text);
  scroll-behavior: smooth;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Global Typography Enhancement === */
h1,
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;


}

h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

a {
  color: #1e293b;
  text-decoration: none;
}

.section-space {
  padding: 4rem 0;
}

/* Added comprehensive keyframe animations for ultra-professional effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* New floating animation for badges and elements */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* New glow animation for buttons and highlights */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(6, 110, 177, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(6, 110, 177, 0.6);
  }
}

/* New bounce animation for CTAs */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* New rotate animation for icons */
@keyframes rotateIcon {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* New gradient shift animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* New wave animation for decorative elements */
@keyframes wave {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

/* New blur in animation */
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* New text reveal animation */
@keyframes textReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* New smooth scale animation */
@keyframes smoothScale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== NAVBAR BASE ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  display: flex;
  align-items: center;
  line-height: 1.1;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo img {
  width: 80px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.brand-logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: #066eb1;
  margin: 0;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #066eb1, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-weight: 700;
  font-size: 0.65rem;
  color: #0d9488;
  letter-spacing: 1.2px;
  margin: 0;
  text-transform: uppercase;
}

/* ===== DESKTOP MENU (≥992px) ===== */
@media (min-width: 992px) {
  .desktop-menu {
    display: flex;
  }

  .mobile-menu {
    display: none !important;
  }

  .desktop-buttons {
    display: flex;
  }

  .mobile-btn-group {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .desktop-buttons {
    display: none !important;
  }

  .mobile-btn-group {
    display: flex;
  }
}

/* Desktop Nav Menu */
.navMenu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navItem {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0;
}

.navItem:hover {
  color: #066eb1;
}

.navItem>span svg {
  transition: transform 0.3s ease;
  margin-left: 0.25rem;
}

.navItem:hover>span svg {
  transform: rotate(180deg);
}

/* ===== MEGA MENU: ALWAYS CENTERED ON SCREEN ===== */
.submenu {
  position: fixed !important;
  left: 50% !important;
  top: 100% !important;
  transform: translateX(-50%) translateY(10px);
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: none;
  z-index: 999;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submenu.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.submenuGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.submenuGrid-first {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.submenuSection h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #066eb1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f9ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submenuSection h3 i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.submenuLink {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  border-radius: 12px;
  text-decoration: none;
  color: #475569;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.submenuLink:hover {
  background: #f0f9ff;
  color: #066eb1;
  transform: translateX(4px);
  border-color: #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.linkIcon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #066eb1;
  background: #f0f9ff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.submenuLink:hover .linkIcon {
  background: #066eb1;
  color: white;
  transform: scale(1.1);
}

.linkTitle {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.linkDesc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

.submenuGrid-first .dropdown-toggle::after {
  border: none;
}

/* Buttons */
.btn-signin,
.btn-demo {
  border-radius: 25px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-signin {
  background: linear-gradient(135deg, #0d9488, #10b981);
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(13, 148, 136, 0.2);
}

.btn-signin:hover {
  background: linear-gradient(135deg, #0a7566, #059669);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-demo {
  background: white;
  color: #066eb1;
  border: 2px solid #066eb1;
  box-shadow: 0 2px 4px rgba(6, 110, 177, 0.1);
}

.btn-demo:hover {
  background: #066eb1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 110, 177, 0.3);
}

/* ===== MOBILE MENU (≤991px) ===== */
.mobile-menu {
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav-item {
  border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #066eb1;
}

.mobile-submenu {
  padding: 0.75rem 0 1rem 1rem;
  display: none;
}

.mobile-submenu.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-submenu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #475569;
  font-size: 0.95rem;
}

.mobile-submenu-item:hover {
  background: #f0f9ff;
  color: #066eb1;
  transform: translateX(4px);
}

.mobile-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  color: #066eb1;
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

.mobile-submenu-item:hover .mobile-icon {
  background: #066eb1;
  color: white;
}

.mobile-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
}

.mobile-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.mobile-toggle-icon {
  transition: transform 0.3s ease;
}

.mobile-toggle-icon.rotated {
  transform: rotate(180deg);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-btn-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem;
}

.mobile-btn-group .btn {
  width: 100%;
  justify-content: center;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .submenu {
    max-width: 1200px;
  }

  .submenuGrid {
    gap: 2.5rem;
  }
}

/* === CENTER ALIGNMENT: Logo Left | Menu Center | Buttons Right === */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    justify-content: center;
  }

  .navMenu.desktop-menu {
    margin: 0 auto;
    display: flex;
    gap: 2rem;
  }

  /* .desktop-buttons {
                margin-left: auto;
            } */
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }

  .desktop-buttons {
    display: none !important;
  }

  .mobile-btn-group {
    display: flex;
  }
}

.dropdown {
  position: relative;
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 1000;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown .dropdown-item:hover {
  background: #e9ecef;
}
/* ==========================
   TOP HEADER STYLING
========================== */

.top-header {
  background: linear-gradient(135deg, #066eb1, #0891b2);
  color: white;
  font-size: 0.85rem;
  transition: 0.4s ease;
  position: relative;
  z-index: 1200;
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.top-left-links,
.top-right-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  padding: 12px 0;
  display: inline-block;
}

.top-link:hover {
  opacity: 0.85;
}


/* ==========================
   MEGA MENU
========================== */

.top-nav-item {
  position: relative;
}

/* 🔥 FIXED VERSION */
.top-mega-menu {
  position: absolute;
  top: calc(100% - 2px);   /* removes hover gap */
  left: 0;
  width: 420px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding: 1.5rem;

  /* Animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;

  z-index: 1300;
}

/* 👇 Hover on parent (stable hover) */
.top-nav-item:hover > .top-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ==========================
   MEGA CONTENT
========================== */

.mega-heading {
  color: #066eb1;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mega-card {
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: 12px;
  transition: 0.3s ease;
}

.mega-card:hover {
  background: #f0f9ff;
  transform: translateX(4px);
}

.mega-card-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
}

.mega-icon {
  width: 36px;
  height: 36px;
  background: #e0f2fe;
  color: #066eb1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.mega-icon.gold {
  background: #fef3c7;
  color: #b45309;
}

.mega-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
}

.mega-desc {
  font-size: 0.75rem;
  color: #64748b;
}
.mobile-submenu-item.has-submenu .fas.fa-chevron-right {
    transition: transform 0.3s ease;
}

/* rotate 90deg when not collapsed */
.mobile-submenu-item.has-submenu:not(.collapsed) .fas.fa-chevron-right {
    transform: rotate(90deg);
}
/* ==========================
   HEADER HIDE ON SCROLL
========================== */

.top-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}


/* ==========================
   Z-INDEX FIX
========================== */

.navbar {

  z-index: 1000;
}

.top-mega-menu {
  z-index: 1300;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .top-header {
    display: none;
  }
}
.hero-section {
  background-image: url("../images/herobg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: slideInLeft 0.8s ease-out;
  padding: 50px 0px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  animation: fadeInUp 0.2s ease-out 0.2s both;
}

.hero-title .highlight {
  color: var(--primary-blue);
  transition: all 0.3s ease;

}

.highlight {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 0.2s ease-out 0.4s both;
}

.search-box {
  background: white;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  animation: fadeInUp 0.2s ease-out 0.6s both;
  transition: all 0.3s ease;
}

.search-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.search-icon {
  color: #999;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.search-box:hover .search-icon {
  color: var(--primary-blue);
  animation: rotateIcon 0.6s ease-out;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
}

.search-box button {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-box button:hover {
  color: var(--primary-blue);
}

.btn-how-it-works {
  position: relative;
  overflow: hidden;
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
}

.btn-how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-how-it-works:hover::before {
  transform: translateX(0);
}

.btn-how-it-works:hover {
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(8, 136, 56, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.btn-how-it-works span {
  position: relative;
  z-index: 1;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: slideInRight 0.8s ease-out;
}

.image-frame-hero {
  margin: 0 auto;
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: blurIn 0.8s ease-out;
}

.image-frame-hero:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-frame {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: blurIn 0.8s ease-out;
}

.image-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.badge-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.2s ease-out 0.1s both;
}

.badge {
  background: #e0f2fe;
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  animation: scaleIn 0.6s ease-out;
}

.badge:nth-child(1) {
  animation-delay: 0.2s;
}

.badge:nth-child(2) {
  animation-delay: 0.3s;
}

.badge:nth-child(3) {
  animation-delay: 0.4s;
}

.badge:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 110, 177, 0.2);
  animation: float 2s ease-in-out infinite;
}

/* Secondary Section */
.secondary-section {
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  padding: 60px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.secondary-wrapper {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.2s ease-out;
}

.secondary-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
  opacity: 0.3;
  animation: wave 4s ease-in-out infinite;
}

.secondary-content {
  position: relative;
  z-index: 1;
  color: var(--dark-text);
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.tagline {
  color: var(--primary-blue);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.2s ease-out 0.3s both;
}

@media (max-width: 992px) {
  .tagline {
    font-size: 0.8rem;
    font-weight: 700;
  }
}

.tagline span {
  color: #242424;
}

.secondary-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  animation: fadeInUp 0.2s ease-out 0.4s both;
}

.secondary-title .highlight {
  color: var(--primary-blue);
}

.secondary-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #666;
  animation: fadeInUp 0.2s ease-out 0.5s both;
}

.btn-demo-secondary {
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: fadeInUp 0.2s ease-out 0.6s both;
}

.btn-demo-secondary:hover {
  background: #0a7566;
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #1a3c72;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.2s ease-out;
}

.feature-card:nth-child(1) {
  animation-delay: 0.7s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.8s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.9s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: #0f2a52;
  animation: smoothScale 0.6s ease-out;
}

.feature-card-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.1) rotate(5deg);
  animation: rotateIcon 0.8s ease-out;
}

.feature-card-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature-card-text {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.secondary-image {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .secondary-title {
    font-size: 2rem;
  }

  .hero-section,
  .secondary-section {
    padding: 50px 0;
  }

  .badge-group {
    flex-wrap: wrap;
  }

  .wave-left,
  .wave-right {
    display: none;
  }

  .secondary-wrapper {
    padding: 40px;
    border-radius: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .image-frame {
    max-width: 280px;
  }
}

/* Pricing Section */
.pricing-section {
  background-color: #eeeeee;
  animation: fadeInUp 0.2s ease-out;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.2s ease-out;
}

.pricing-header h2 {
  font-size: 18px;
  color: #066eb1;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
  animation: fadeInUp 0.2s ease-out 0.1s both;
}

.pricing-header h1 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 700;
  animation: fadeInUp 0.2s ease-out 0.2s both;
}

.pricing-header .subtitle {
  font-size: 18px;
  color: #066eb1;
  margin-bottom: 20px;
  font-weight: 600;
  animation: fadeInUp 0.2s ease-out 0.3s both;
}

.pricing-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  animation: fadeInUp 0.2s ease-out 0.4s both;
}

.view-plan-btn {
  background: #066eb1;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  animation: fadeInUp 0.2s ease-out 0.5s both;
}

.view-plan-btn:hover {
  background: #0052a3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  align-items: start;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  height: 600px;
  animation: scaleIn 0.6s ease-out;
}

.package-card:nth-child(1) {
  animation-delay: 0.1s;
}

.package-card:nth-child(2) {
  animation-delay: 0.2s;
}

.package-card:nth-child(3) {
  animation-delay: 0.3s;
}

.package-card:nth-child(4) {
  animation-delay: 0.4s;
}

.package-card.expanded {
  grid-column: span 2;
  height: auto;

}

.package-card:hover:not(.expanded) {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all 0.4s ease;
}

.package-card:not(.expanded) .card-header {
  background: white;
}

.package-card.expanded .card-header {
  background: #066eb1;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.4s ease;
}

.package-card:not(.expanded) .card-icon .icon-rect {
  fill: #066eb1;
}

.package-card.expanded .card-icon .icon-rect {
  fill: #ffffff;
}

.package-card:not(.expanded) .card-content {
  display: none;
}

.package-card:not(.expanded) .collapsed-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 100px);
  position: relative;
  overflow: hidden;
}

.collapsed-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: zoom 0.8s ease-out;
}

@keyframes zoom {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.collapsed-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.75) 0%, rgba(0, 74, 153, 0.75) 100%);
  z-index: 2;
  animation: fadeInUp 0.6s ease-out;
}

.collapsed-number {
  position: absolute;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  line-height: 1;
  animation: fadeInUp 0.2s ease-out;
}

.collapsed-footer {
  position: relative;
  z-index: 4;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}

.collapsed-name {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.collapsed-header {
  position: relative;
  z-index: 4;
  padding: 20px;
  text-align: center;
  animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.collapsed-header-name {
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

.package-card:not(.expanded)::after {
  content: "Click to Expand";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 5;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.package-card:not(.expanded):hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.package-card.expanded .collapsed-content {
  display: none;
}

.card-content {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  animation: fadeInUp 0.6s ease-out;
}

.card-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.card-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(5px);
  color: #066eb1;
}

.feature-check {
  color: #066eb1;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.prices-btn {
  background: #066eb1;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.prices-btn:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.price-row:hover {
  transform: translateX(5px);
}

.price-label {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

.price-value {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.price-row:hover .price-value {
  background: #066eb1;
  color: white;
}

.card-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.card-image {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.view-plane-btn {
  background: #066eb1;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.view-plane-btn:hover {
  background: #0052a3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .card-content {
    grid-template-columns: 1fr;
  }

  .package-card.expanded {
    grid-column: span 1;
  }

  .packages-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 28px;
  }

  .package-card {
    height: 500px;
  }

  .card-content {
    padding: 20px;
    gap: 20px;
  }

  .card-title {
    font-size: 24px;
  }

  .collapsed-number {
    font-size: 120px;
  }
}

.carousel-section {
  background: #f9f9f9;
  padding: 60px 0;
  animation: fadeInUp .2s ease-out
}

.carousel-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp .2s ease-out
}

.carousel-tagline {
  color: #066eb1;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp .2s ease-out .1s both
}

.carousel-tagline span {
  color: #333
}

.carousel-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333;
  animation: fadeInUp .2s ease-out .2s both
}

.carousel-title .highlight {
  color: #066eb1
}

.carousel-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp .2s ease-out .3s both
}

.carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative
}

.slide-item {
  padding: 10px
}

.carousel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1)
}

.carousel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease
}

.carousel-card-img.fallback {
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
  text-align: center
}

.carousel-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  color: #fff;
  padding: 20px;
  font-weight: 600;
  font-size: 1rem;
  z-index: 10;
  transform: translateY(20px);
  transition: transform .3s ease
}

.swiper-slide-active .carousel-card {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .2)
}

.swiper-slide-active .carousel-card-label {
  transform: translateY(0)
}

.swiper-slide {
  opacity: .7;
  transition: all .4s ease
}

.swiper-slide-active {
  opacity: 1
}

.swiper-button-next,
.swiper-button-prev {
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10
}

.swiper-button-prev {
  left: -60px
}

.swiper-button-next {
  right: -60px
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #218838;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 20px rgba(8, 136, 56, .3);
  animation: bounce .6s ease-out
}

.swiper-button-next:active,
.swiper-button-prev:active {
  transform: translateY(-50%) scale(.95)
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900
}

.swiper-button-prev::after {
  content: "\f053"
}

.swiper-button-next::after {
  content: "\f054"
}

.swiper-pagination {
  margin-top: 30px;
  text-align: center;
  position: static;

}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1c1c1c !important;
  margin: 0 4px;
  transition: all .3s ease;
  display: inline-block
}

.swiper-pagination-bullet-active {
  background: #28a745 !important;
  width: 30px;
  border-radius: 6px;
  animation: pulse .6s ease-out
}

.swiper-pagination-bullet:hover {
  background: #bbb;
  transform: scale(1.2)
}

@media(max-width:1024px) {
  .carousel-title {
    font-size: 2.2rem
  }

  .carousel-card {
    height: 300px
  }

  .swiper-button-prev {
    left: -40px
  }

  .swiper-button-next {
    right: -40px
  }
}

@media(max-width:768px) {
  .carousel-section {
    padding: 40px 0
  }

  .carousel-title {
    font-size: 2rem
  }

  .carousel-subtitle {
    font-size: .95rem
  }

  .carousel-card {
    height: 280px
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: calc(50% - 20px)
  }

  .swiper-button-prev {
    left: -20px
  }

  .swiper-button-next {
    right: -20px
  }
}

@media(max-width:480px) {
  .carousel-title {
    font-size: 1.5rem
  }

  .carousel-tagline {
    font-size: .95rem
  }

  .carousel-card {
    height: 240px
  }

  .carousel-card-label {
    font-size: .9rem;
    padding: 15px
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    top: calc(50% - 18px)
  }

  .swiper-button-prev {
    left: -20px
  }

  .swiper-button-next {
    right: -20px
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px
  }

  .swiper-pagination-bullet-active {
    width: 24px
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-50%) scale(1)
  }

  50% {
    transform: translateY(-50%) scale(1.3)
  }
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4)
  }

  100% {
    transform: scale(1)
  }
}

/* Use Cases Section */
.use-cases-section {
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  animation: fadeInUp 0.2s ease-out;
}

.use-cases-wrapper {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.2s ease-out;
}

.use-cases-tagline {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.2s ease-out 0.1s both;
}

.use-cases-tagline span {
  color: #000;
}

.use-cases-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  animation: fadeInUp 0.2s ease-out 0.2s both;
}

.use-cases-title .highlight {
  color: var(--primary-blue);
}

.use-cases-intro {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.2s ease-out 0.3s both;
}

.use-cases-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.use-case-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.use-case-item:nth-child(1) {
  animation-delay: 0.4s;
}

.use-case-item:nth-child(2) {
  animation-delay: 0.5s;
}

.use-case-item:nth-child(3) {
  animation-delay: 0.6s;
}

.use-case-item:nth-child(4) {
  animation-delay: 0.7s;
}

.use-case-item:nth-child(5) {
  animation-delay: 0.8s;
}

.use-case-item:hover {
  transform: translateX(10px);
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
}

.use-case-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.use-case-item:hover .use-case-icon {
  transform: scale(1.1) rotate(5deg);
  animation: rotateIcon 0.8s ease-out;
}

.use-case-content {
  flex: 1;
}

.use-case-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.use-case-item:hover .use-case-title {
  color: #0052a3;
}

.use-case-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.use-cases-image {
  position: relative;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.use-cases-image-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.use-cases-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.use-cases-image-frame:hover .use-cases-img {
  transform: scale(1.05);
}

.use-cases-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 250px;
  animation: slideInUp 0.8s ease-out 0.6s both;
  transition: all 0.3s ease;
}

.use-cases-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: float 2s ease-in-out infinite;
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-label {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.9rem;
}

.badge-time {
  font-size: 0.85rem;
  color: #999;
}

.badge-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .use-cases-wrapper {
    padding: 40px;
  }

  .use-cases-image-frame {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .use-cases-wrapper {
    padding: 30px;
  }

  .use-cases-title {
    font-size: 2rem;
  }

  .use-cases-image-frame {
    height: 300px;
    margin-top: 30px;
  }
}

/* CTA Experience Section */
.cta-experience-section {
  padding: 60px 0;
  background-image: url("../images/cta-bg.webp");
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  animation: fadeInUp 0.2s ease-out;
  background-size: cover;
}

.cta-experience {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 20px;
  border-radius: 20px;
}

.cta-images {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-image-left {
  width: 45%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: slideInLeft 0.8s ease-out;
  transition: all 0.3s ease;
}

.cta-image-left:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.cta-image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cta-image-left:hover img {
  transform: scale(1.05);
}

.cta-image-right {
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out;
}

.phone-frame {
  width: 100%;
  max-width: 350px;

  padding: 12px;
  overflow: hidden;

  transition: all 0.3s ease;
}

.phone-frame:hover {
  transform: translateY(-10px);

  animation: float 2s ease-in-out infinite;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.4s ease;
}

.phone-frame:hover img {
  transform: scale(1.05);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.cta-badges {
  display: flex;
  gap: 12px;
  animation: fadeInUp 0.2s ease-out 0.3s both;
}

.cta-badge {
  background: #e0f2fe;
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}

.cta-badge:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  animation: float 2s ease-in-out infinite;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-text);
  animation: fadeInUp 0.2s ease-out 0.4s both;
}

.cta-title .highlight {
  color: var(--primary-blue);
  animation: textReveal 1s ease-out 0.6s both;
}

.cta-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  animation: fadeInUp 0.2s ease-out 0.5s both;
}

@media (max-width: 1024px) {
  .cta-experience-section {
    padding: 60px 0;
  }

  .cta-images {
    height: 400px;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-experience-section {
    padding: 40px 0;
  }

  .cta-images {
    height: 350px;
    margin-bottom: 30px;
  }

  .cta-image-left,
  .cta-image-right {
    width: 50%;
  }

  .phone-frame {
    max-width: 200px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-badges {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .cta-experience-section {
    padding: 30px 0;
  }

  .cta-images {
    height: 300px;
    gap: 10px;
  }

  .cta-image-left,
  .cta-image-right {
    width: 50%;
  }

  .phone-frame {
    max-width: 150px;
    padding: 8px;
    border-width: 6px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 0.9rem;
  }
}

/* Quick Sign Up Section */
.quick-signup-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #f5f5f5 100%);
  padding: 80px 0;
  animation: fadeInUp 0.8s ease-out;
}

.signup-content {
  animation: slideInLeft 0.8s ease-out;
}

.signup-header {
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.signup-badge {
  display: inline-block;
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(6, 110, 177, 0.2);
  transition: all 0.3s ease;
}

.signup-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.3);
  animation: glow 1.5s ease-in-out infinite;
}

.signup-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.signup-card:hover {
  border-color: #066eb1;
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.15);
  transform: translateY(-5px);
}

.signup-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #066eb1;
  margin-bottom: 0.8rem;
}

.signup-card-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.endorsement-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  box-sizing: border-box;
}

.endorsement-card:hover {
  border-color: #066eb1;
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.15);
  transform: translateY(-5px);
}

.endorsement-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #066eb1;
  margin: 0;
  white-space: nowrap;
}

.endorsement-logo {
  height: 120px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.endorsement-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.endorsement-card:hover .endorsement-logo {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 480px) {
  .endorsement-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 1.5rem;
  }

  .endorsement-title {
    margin-bottom: 1rem;
  }
}

.signup-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out;
}

.qr-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.qr-phone-mockup {
  position: relative;
  width: 280px;
  height: 500px;

  border-radius: 40px;
  padding: 12px;

  animation: slideInRight 0.8s ease-out 0.2s both;
  transition: all 0.3s ease;
}

.qr-phone-mockup:hover {
  transform: translateY(-10px) rotateX(5deg);
  animation: float 2s ease-in-out infinite;
}



.qr-display {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  position: relative;

}



.qr-display img {
  min-height: 450px;
  border-radius: 12px;
  padding: 10px;
width: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.qr-phone-mockup:hover .qr-display img {
  transform: scale(1.05);
}

.scan-button {
  background: white;
  color: #066eb1;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scan-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .quick-signup-section {
    padding: 50px 0;
  }

  .qr-phone-mockup {
    width: 220px;
    height: 400px;
  }

  .signup-card,
  .endorsement-card {
    padding: 1.5rem;
  }

  .signup-card-title {
    font-size: 1.3rem;
  }
}

/* Why It Works Section */
.why-works-section {
  background-image: url('../images/howitworks.webp');
  padding: 80px 0;
  animation: fadeInUp 0.8s ease-out;
  background-size: cover;
}

.why-works-wrapper {




  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.why-works-content {
  animation: slideInLeft 0.8s ease-out;
}

.why-works-tagline {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.why-works-tagline span {
  color: #000;
}

.why-works-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.why-works-title .highlight {
  color: var(--primary-blue);
  animation: textReveal 1s ease-out 0.4s both;
}

.why-works-intro {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.why-works-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-works-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
  padding: 20px;
  border-radius: 12px;
}

.why-works-feature:nth-child(1) {
  animation-delay: 0.4s;
}

.why-works-feature:nth-child(2) {
  animation-delay: 0.5s;
}

.why-works-feature:nth-child(3) {
  animation-delay: 0.6s;
}

.why-works-feature:hover {
  background: #f9f9f9;
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(6, 110, 177, 0.1);
}

.feature-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(6, 110, 177, 0.1);
}

.why-works-feature:hover .feature-dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 6px rgba(6, 110, 177, 0.2);
  animation: pulse 1s ease-in-out infinite;
}

.feature-details {
  flex: 1;
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.why-works-feature:hover .feature-name {
  color: #0052a3;
}

.feature-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.why-works-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.why-works-phone-frame {
  position: relative;
  width: 380px;
  height: 700px;
  animation: slideInRight 0.8s ease-out 0.3s both;
  transition: all 0.3s ease;

}

.why-works-phone-frame:hover {
  transform: translateY(-10px) rotateX(5deg);
  animation: float 2s ease-in-out infinite;
}



.why-works-phone-img {
  width: 100%;


  border-radius: 32px;
  transition: transform 0.4s ease;
}

.why-works-phone-frame:hover .why-works-phone-img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .why-works-wrapper {
    padding: 40px;
  }

  .why-works-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .why-works-section {
    padding: 50px 0;
  }

  .why-works-wrapper {
    padding: 30px;
    border-radius: 20px;
  }

  .why-works-title {
    font-size: 2rem;
  }

  .why-works-phone-frame {
    width: 220px;
    height: 450px;
    margin-top: 30px;
  }

  .why-works-feature {
    padding: 15px;
  }

  .feature-name {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-works-title {
    font-size: 1.5rem;
  }

  .why-works-phone-frame {
    width: 180px;
    height: 380px;
  }

  .why-works-feature {
    gap: 12px;
    padding: 12px;
  }
}

.footer-wrapper {
  width: 100%;
  background-image: url('../images/footer-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 70px;
  padding: 30px 30px;
}

.footer-section {
  background-image: url(../images/fotter-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 30px;
  padding: 60px 0 0 0;
  overflow: hidden;
}


.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-input-group {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  width: 220px;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.footer-signin-btn {
  background-color: white;
  color: #066eb1;
  border: none;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-signin-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-weight: 700;
  font-size: 16px;
  color: white;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: white;
  color: #066eb1;
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 30px 0 0 0;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-input-group {
    width: 100%;
  }

  .footer-input {
    width: 100%;
  }

  .footer-signin-btn {
    flex-shrink: 0;
  }

  .footer-links-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-links-group {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo-text {
    font-size: 24px;
  }
}

.blog-slider-bg {
  background-image: url('../images/sdaslider-bg.webp');
  background-size: cover;
}

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, .2);
  padding: 25px;
  border-radius: 25px;
  height: 450px;
  transition: all .3s;

}

@media screen and (max-width:992px) {
  .blog-slider {
    max-width: 680px;
    height: 400px
  }
}

@media screen and (max-width:768px) {
  .blog-slider {
    min-height: 500px;
    height: auto;
    margin: 100px auto;
    padding: 20px
  }
}

@media screen and (max-height:500px) and (min-width:992px) {
  .blog-slider {
    height: 350px
  }
}

.blog-slider__item {
  display: flex;
  align-items: center;
  position: relative
}

@media screen and (max-width:768px) {
  .blog-slider__item {
    flex-direction: column;
    text-align: center
  }
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: .3s
}

.blog-slider__item.swiper-slide-active .blog-slider__content>* {
  opacity: 1;
  transform: none
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(1) {
  transition-delay: .3s
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(2) {
  transition-delay: .4s
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(3) {
  transition-delay: .5s
}

.blog-slider__item.swiper-slide-active .blog-slider__content>*:nth-child(4) {
  transition-delay: .6s
}

.blog-slider__img {
  width: 400px;
  flex-shrink: 0;
  height: 400px;
  border-radius: 25px;
  transform: translateX(-80px);

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media screen and (max-width:768px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 90%;
    margin-bottom: -50px
  }
}

.blog-slider__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.blog-slider__content {
  padding-right: 25px;
  flex: 1
}

@media screen and (max-width:768px) {
  .blog-slider__content {
    margin-top: -60px;
    padding: 0 20px
  }
}

.blog-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s
}

.blog-slider__title {
  font-size: 28px;
  font-weight: 700;
  color: #088838;
  margin: 0 0 8px;
  line-height: 1.2
}

.blog-slider__title span {
  color: #066EB1;
}

.blog-slider__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #088838;
  margin: 0 0 10px
}

.blog-slider__text {
  color: #4e4a67;
  margin: 15px 0;
  line-height: 1.6;
  font-size: 15px
}

.blog-slider__fda {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0
}

.blog-slider__fda img {
  height: 32px
}

.blog-slider__button {
  display: inline-flex;
  background: linear-gradient(147deg, #fe8a39 0%, #fd3838 74%);
  padding: 14px 32px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(252, 56, 56, .4);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px
}

@media screen and (max-width:576px) {
  .blog-slider__button {
    width: 100%;
    justify-content: center
  }
}

/* PAGINATION */
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  top: 38%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto !important;
  left: auto !important;
  gap: 5px;
}

@media screen and (min-width:769px) {
  .blog-slider__pagination {
    top: 38%
  }
}

.blog-slider__pagination .swiper-pagination-bullet {
  margin: 8px 0;
  width: 11px;
  height: 11px;
  border-radius: 10px;
  background: #062744;
  opacity: .2;
  transition: all .3s
}

.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #066EB1;
  height: 30px;
  box-shadow: 0px 0px 20px rgba(252, 56, 56, .3)
}

@media screen and (max-width:768px) {
  .blog-slider__pagination {
    flex-direction: row;
    bottom: 15px;
    top: auto;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: auto !important
  }

  .blog-slider__pagination .swiper-pagination-bullet {
    margin: 0 5px
  }

  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px
  }
}

/* AI ASSISTANCE SECTION - BOOTSTRAP GRID */
.ai-assistance-section {
  background-image: url('../images/ai-hero.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 130px;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.ai-assistance-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: slideInLeft 0.8s ease-out;
}

.ai-assistance-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.ai-assistance-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
  max-width: 520px;
}

.ai-assistance-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  font-weight: 400;
}

.ai-assistance-buttons {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn-ai-primary {
  background: white;
  color: var(--primary-green);
  border: none;
  padding: 13px 36px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-ai-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.98);
}

.btn-ai-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 11px 34px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
}

.btn-ai-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
}

.ai-assistance-image-container {
  position: relative;
  animation: slideInRight 0.8s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -120px;
}

.ai-doctor-image {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  display: block;
}

.ai-doctor-image:hover {
  transform: scale(1.03);
}

.ai-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 20px;
  border-radius: 14px;
  width: fit-content;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.ai-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.ai-badge-hipaa {
  top: 20%;
  right: -15px;
}

.ai-badge-trial {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  animation-delay: 0.2s;
}

.ai-badge-caribbean {
  bottom: 15%;
  left: -10px;
  animation-delay: 0.4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.badge-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 0.3px;
}

/* AI ACTION SECTION - BOOTSTRAP GRID */
.ai-action-section {
  background-image: url(../images/leoai.png);
  padding: 80px 0;
}

.ai-action-header {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(6, 110, 177, 0.12);
}

.accordion-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 12px 32px rgba(6, 110, 177, 0.18);
  background: linear-gradient(135deg, rgba(6, 110, 177, 0.02) 0%, rgba(13, 148, 136, 0.02) 100%);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accordion-content-header {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.accordion-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding: 0 20px 20px 20px;
}

.action-doctor-image {
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.action-doctor-image:hover {
  transform: scale(1.02);
}

/* MEASURABLE IMPACT */
.measurable-impact-section {
  background-image: url('../images/aiaction-bg.webp');
  background-size: cover;
  padding: 100px 0;
}

.impact-cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 48px 40px;
}

.impact-card {
  flex: 1;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.impact-badge {
  border: 2px solid white;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  background: transparent;
}

.impact-divider {
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}

.impact-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.impact-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.impact-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  font-weight: 400;
}

/* Pill-shaped badge with white border */
.impact-badge {
  display: inline-block;
  border: 2px solid white;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  background: transparent;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.impact-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.impact-card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
  animation: fadeInUp 0.6s ease-out 0.7s both;
  font-weight: 400;
}

/* RESPONSIVE FIXES */
@media (max-width: 1200px) {
  .ai-assistance-section .row>div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ai-assistance-image-container {
    margin-top: 40px;
  }

  .ai-badge {
    position: static;
    margin: 10px auto;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .ai-assistance-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-ai-primary,
  .btn-ai-secondary {
    width: 100%;
  }

  .impact-cards-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .impact-divider {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }
}

/* ==========================
   CARIBBEAN HEALTHCARE SECTION (Exact Visual Match)
   ========================== */
.caribbean-healthcare-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.caribbean-header {
  margin-bottom: 60px;
}

.caribbean-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Card Container */
.caribbean-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding: 24px 24px 20px 24px;
}

.caribbean-card p {
  text-align: left;
  margin-top: 10px;
}

.caribbean-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Top Content */
.caribbean-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.caribbean-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caribbean-icon img {
  width: 36px;
  height: 36px;
}

.divider {
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  margin-top: 2px;
}

.caribbean-card-textblock {
  text-align: left;
}

.caribbean-card-textblock h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
}

.caribbean-card-textblock p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.55;
}

/* Footer */
.caribbean-card-footer {
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  text-align: center;
  line-height: 1.4;
  background: #fafafa;
}

.caribbean-card-footer strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #066eb1;
}

.caribbean-card-footer span {
  font-size: 0.85rem;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .caribbean-cards {
    flex-direction: column;
    align-items: center;
  }

  .caribbean-card {
    max-width: 90%;
  }

  .caribbean-card-top {
    justify-content: flex-start;
  }
}

/* ENTERPRISE SECURITY SECTION */
.enterprise-security-section {
  background: linear-gradient(180deg, #f7fbfe 0%, #eaf5fb 100%);
  position: relative;
  overflow: hidden;
}

.security-mini-card {
  background: #fff;
  border: 1.5px solid #d8e8f3;
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(6, 110, 177, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.security-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.12);
  border-color: #0b7bdc;
}

.security-mini-card .icon i {
  font-size: 32px;
  color: #0b7bdc;
}

.security-mini-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.security-mini-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Detailed Cards */
.security-detail-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(6, 110, 177, 0.08);
  transition: all 0.3s ease;
  border: 1.5px solid #e0ecf4;
  height: 100%;
}

.security-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(6, 110, 177, 0.14);
  border-color: #0b7bdc;
}

.detail-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;

}

.bg-teal {
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);

}



.security-detail-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.security-detail-card p {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 10px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0b7bdc;
  font-weight: 700;
}

@media (max-width: 768px) {
  .security-detail-card {
    flex-direction: column;
    text-align: left;
  }

  .detail-icon {
    margin-bottom: 12px;
  }
}

/* AI EMPOWERMENT SECTION */
.ai-empowerment-section {
  background: #F0EDED;
  position: relative;
  overflow: hidden;
}

.ai-mini-card {
  background: #fff;
  border: 1.5px solid #d8e8f3;
  border-radius: 16px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(6, 110, 177, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ai-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.12);
  border-color: #0b7bdc;
}

.ai-mini-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  position: relative;
}

.ai-mini-card .icon::before,
.ai-mini-card .icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s ease;
}

.ai-mini-card:hover .icon::after {
  box-shadow: 0 0 18px rgba(11, 123, 220, 0.4);
}

.ai-mini-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.ai-mini-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .ai-mini-card {
    padding: 24px 16px;
  }
}

/* CALL TO ACTION GLASS SECTION */
.cta-glass-section {
  background: url("../images/ctaglass.webp") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
}

.cta-glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  width: 100%;
  position: relative;

}

/* GLASS CORNER BOXES */
.cta-glass-card::before,
.cta-glass-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  z-index: 1;
}

/* Top-left box */
.cta-glass-card::before {
  top: -60px;
  left: -60px;
}

/* Bottom-right box */
.cta-glass-card::after {
  bottom: -60px;
  right: -60px;
}

.cta-glass-card h2 {
  font-size: 1.9rem;
  color: #fff;
}

.cta-glass-card p {
  font-size: 1rem;
  color: #e9f5ff;
}

.cta-glass-card .btn-light:hover {
  background: #066EB1;
  color: #fff;
  border-color: #0b7bdc;
}


.cta-glass-card .btn-outline-light:hover {
  background: #fff;
  color: #0b7bdc;
  border-color: #fff;
}

@media (max-width: 768px) {
  .cta-glass-card {
    padding: 2rem 1.5rem;
  }

  .cta-glass-card h2 {
    font-size: 1.5rem;
  }

  .cta-glass-card::before,
  .cta-glass-card::after {
    display: none;
  }
}

/* Added Ultra E-Health Section Styles */

/* Ultra Hero Section */
.ultra-hero-section {

  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}



.ultra-hero-image img {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.ultra-hero-content {
  color: white;
}


.ultra-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.ultra-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ultra-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.ultra-checkmark {
  width: 24px;
  height: 24px;
  color: #fff;
  flex-shrink: 0;
}

.ultra-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-ultra-primary {
  background: white;
  color: #066eb1;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ultra-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

.btn-ultra-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ultra-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Specialties Section */
.specialties-section {
  padding: 80px 0;
  background: #EEEEEE;
}

.specialties-header {
  text-align: center;
  margin-bottom: 4rem;
}

.specialties-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.highlight-text {
  color: #066eb1;
}

.specialties-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.specialty-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.specialty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.specialty-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.detail-icon-two {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  flex-shrink: 0;
  margin-bottom: 15px;
}

.bg-teal {
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);

}

.specialty-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Primary Care Section */
.primary-care-section {
  padding: 80px 0;
  background-image: url("../images/about-124.webp");
  background-size: cover;
}


.primary-care-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}



.primary-care-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.feature-icon {
  font-size: 1.6rem;
  color: #066EB1;
  background: #fff;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: #1a1a1a;
}

.feature-item p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.primary-care-image {
  position: relative;
}

.primary-care-image img {
  max-width: 100%;
  height: auto;
}

/* Enhanced Cardiology Section Styling */
.advanced-care-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.care-header {
  text-align: center;
  margin-bottom: 4rem;
}

.care-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #066eb1;
  margin-bottom: 1rem;
}

.tag-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.care-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  line-height: 1.2;
}

.care-title .highlight-accent {
  color: #066eb1;
}

.care-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.care-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.care-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
}

.care-icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #066eb1 0%, #0d4a7a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.care-icon {
  width: 40px;
  height: 40px;
  color: white;
}

.care-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
}

.care-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.btn-care-demo {
  background: linear-gradient(135deg, #0d9488 0%, #066eb1 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-care-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* Enhanced Dentistry Section */
.dentistry-section {
  padding: 80px 0;
  background: white;
}

.dental-image-wrapper {
  position: relative;
  width: 540px;
}

.dental-image-wrapper img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.dental-image-wrapper img:hover {
  transform: scale(1.02);
}

.dental-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #066eb1;
  margin-bottom: 1rem;
}

.dental-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.dental-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.highlight-accent {
  color: #066eb1;
}

.dental-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.dental-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}

/* vertical green line */
.dental-features::before {
  content: "";
  position: absolute;
  left: 59px;
  top: 0;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, #0db981, #0db981);
  border-radius: 2px;
}

.dental-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

/* icon box styling */
.feature-icon-search,
.feature-icon-cal,
.feature-icon-money {
  background: #ffffff;
  color: #066EB1;
  font-size: 1.3rem;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dental-feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #1a1a1a;
}

.dental-feature-item p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.btn-dental-demo {
  background: linear-gradient(135deg, #066eb1 0%, #004499 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-dental-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* Enhanced Enterprise Section */
.enterprise-section {
  padding: 80px 0;
  background-image: url("../images/about126.webp");
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.enterprise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.enterprise-section .container {
  position: relative;
  z-index: 2;
}

.enterprise-header {
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.enterprise-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.enterprise-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.enterprise-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.highlight-white {
  color: #ffffff;
}

.enterprise-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.enterprise-card {
  background: rgba(255, 255, 255, 0.09);
  background-blend-mode: screen;

  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.enterprise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.enterprise-icon-bg {
  width: 70px;
  height: 70px;
  background: #ffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.enterprise-icon {
  font-size: 30px;
  color: #066EB1;
}

.enterprise-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.enterprise-card p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.btn-enterprise-demo {
  background: white;
  color: #1e5ba8;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-enterprise-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #f9f9f9;
}

/* new-section-contiditions */
/* All Card Styles under ONE Parent Class */
.condition-bg {
  background-color: #EEEEEE;
}

.health-condition-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: white;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 16px;
}

.health-condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(6, 110, 177, 0.2);
  border-color: #066EB1;
}

.health-condition-card .icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.health-condition-card .title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding-left: 20px;
  flex-grow: 1;
}

.health-condition-card .btn-readmore {
  background: #17a2b8;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background 0.3s;
}

.health-condition-card:hover .btn-readmore {
  background: #138496;
}

/* Condition Detail Card - Screenshot jaisa */
.condition-detail {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.condition-detail img {
  width: 100%;
  object-fit: cover;
  height: 420px;
}

.condition-detail .text-side {
  padding: 40px;
}

.condition-detail h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.condition-detail p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.read-more-link {
  color: #066EB1;
  font-weight: 600;
  text-decoration: none;
}

.read-more-link:hover {
  text-decoration: underline;
}

/* Bottom Buttons - Same Green Theme */
.bottom-buttons {
  text-align: center;
  margin-top: 50px;
}

/* Tabs styling remains the same */
.nav-pills .nav-link {
  border: 1.5px solid #066EB1 !important;
  border-radius: 50px;
  color: #066EB1;
  font-weight: 500;
  padding: 11px 24px;
  margin: 6px;
}

.nav-pills .nav-link:hover:not(.active) {
  background: #eef2ff !important;
}

.nav-pills .nav-link.active {
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(6, 110, 177, 0.3);
}

/* Enhanced Pediatrics Section */
.pediatrics-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.ped-image-wrapper {
  position: relative;
  width: 540px;
}

.ped-image-wrapper img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.ped-image-wrapper img:hover {
  transform: scale(1.02);
}


.ped-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ped-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ped-feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.ped-feature-item p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.btn-ped-demo {
  background: linear-gradient(135deg, #0d9488 0%, #008c4f 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 95, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ped-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 95, 0.3);
}

/* NEW SECTION: Telemedicine - Remote Care Innovation */
.telemedicine-section {
  padding: 80px 0;
  background: white;
}

.tele-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #0d9488;
  margin-bottom: 1rem;
}

.tele-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.tele-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.tele-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.tele-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.tele-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-tele-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tele-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.tele-feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.tele-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tele-phone-mockup {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.tele-phone-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  border-radius: 30px;
}

.btn-tele-demo {
  background: linear-gradient(135deg, #0d9488 0%, #00a85f 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 95, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-tele-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 95, 0.3);
}

/* contact-us-start */
.contact-section {
  padding: 80px 0;
  background-color: #EEEEEE;
}

.section-subtitle {
  color: #066EB1;
  font-weight: 500;
  letter-spacing: 1px;
}

CURITY .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 3rem;
}

.contact-item {
  background: white;
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(6, 110, 177, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #088838, #066EB1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #066EB1;
}

.contact-text p {
  margin: 5px 0 0;
  color: #555;
  font-size: 1rem;
}

/* Form Card */
.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: #066EB1;
  box-shadow: 0 0 0 0.2rem rgba(6, 110, 177, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: none;
}

.btn-send {
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  font-weight: 600;
}

.btn-send:hover {
  background: linear-gradient(93.33deg, #066e2b 4.97%, #05529b 96.03%);
}

/* NEW SECTION: Dermatology - Intelligent Skin Care */
.dermatology-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.derm-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #066eb1;
  margin-bottom: 1rem;
}

.derm-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.derm-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.derm-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.derm-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.derm-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-derm-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #066eb1 0%, #0d4a7a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.feature-derm-icon svg {
  width: 24px;
  height: 24px;
}

.derm-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.derm-feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.derm-image-wrapper {
  position: relative;
}

.derm-image-wrapper img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.derm-image-wrapper img:hover {
  transform: scale(1.02);
}

.btn-derm-demo {
  background: linear-gradient(135deg, #0d9488 0%, #00a85f 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 95, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-derm-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 95, 0.3);
}

/* NEW SECTION: Ophthalmology - Intelligent Eye Care */
.ophthalmology-section {
  padding: 80px 0;
  background: white;
}

.ophthal-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #0d9488;
  margin-bottom: 1rem;
}

.ophthal-dot {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.ophthal-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.ophthal-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.ophthal-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.ophthal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-ophthal-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d9488 0%, #008c4f 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.feature-ophthal-icon svg {
  width: 24px;
  height: 24px;
}

.ophthal-feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.ophthal-feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.ophthal-image-wrapper {
  position: relative;
}

.ophthal-image-wrapper img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.ophthal-image-wrapper img:hover {
  transform: scale(1.02);
}

.btn-ophthal-demo {
  background: linear-gradient(135deg, #0d9488 0%, #00a85f 100%);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 168, 95, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ophthal-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 168, 95, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ultra-hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .ultra-hero-title {
    font-size: 2rem;
  }

  .ultra-hero-subtitle {
    font-size: 1rem;
  }

  .ultra-cta-buttons {
    flex-direction: column;
  }

  .btn-ultra-primary,
  .btn-ultra-secondary {
    width: 100%;
  }

  .specialties-header h2 {
    font-size: 1.8rem;
  }

  .primary-care-title {
    font-size: 1.8rem;
  }

  .specialty-card {
    padding: 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    gap: 1rem;
  }

  .care-title,
  .dental-title,
  .enterprise-title,
  .ped-title,
  .tele-title,
  .derm-title,
  .ophthal-title {
    font-size: 2rem;
  }

  .care-card,
  .enterprise-card {
    padding: 1.5rem;
  }

  .dental-features,
  .ped-features,
  .tele-features,
  .derm-features,
  .ophthal-features {
    gap: 1.2rem;
  }

  .btn-care-demo,
  .btn-ped-demo,
  .btn-dental-demo,
  .btn-enterprise-demo,
  .btn-tele-demo,
  .btn-derm-demo,
  .btn-ophthal-demo {
    width: 100%;
    justify-content: center;
  }

  .dental-feature-item,
  .ped-feature-item,
  .tele-feature-item,
  .derm-feature-item,
  .ophthal-feature-item {
    gap: 1rem;
  }

  .tele-phone-mockup {
    max-width: 250px;
  }

  .ped-image-wrapper {
    position: relative;
    width: 320px;
  }
}


/* ========================================
           CLINICAL - HERO SECTION
        ======================================== */
.clinical-hero-bg {
  background-image: url(../images/hero-bg.png);
  min-height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
}

.clinical-hero-content {
  color: white;
}

.clinical-hero-content h1 {
  font-weight: 700;
  font-size: 50px;
}

@media (max-width: 768px) {
  .clinical-hero-content h1 {
    font-weight: 500;
    font-size: 35px;
  }
}

.clinical-tagline {
  font-weight: 550;
  color: #242424;
  font-family: 'Montserrat', sans-serif;
}

.clinical-btn-primary {
  background-color: rgb(255, 255, 255);
  color: #066EB1;
  border-style: none;
  padding: 13px;
  border-radius: 100px;
  min-width: 180px;
}

.clinical-btn-outline {
  background: transparent;
  padding: 13px;
  border-radius: 100px;
  min-width: 180px;
  color: rgb(255, 255, 255);
  border: 3px solid white;
}

.clinical-btn-outline:hover {
  background-color: white;
  color: #066EB1;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .clinical-hero-buttons button {
    margin: 10px auto;
    display: block;
  }
}

.clinical-features-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background: transparent;
}

.clinical-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background-color: white;
  color: #242424;
  font-weight: 500;
  border-radius: 16px;
}

.clinical-feature-item img {
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  max-width: 60px;
}

.clinical-feature-item:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(53, 53, 53, 0.25);
}

/* ========================================
           CLINICAL - SECTION 1
        ======================================== */
.clinical-section-1-bg {
  background-image: url(../images/1st-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.clinical-section-padding {
  padding: 50px 0px;
}

.clinical-section-title {
  color: #242424;
}

@media (max-width: 768px) {
  .clinical-section-title {
    text-align: center;
  }
}

.clinical-section-title h2 {
  font-size: 48px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .clinical-section-title h2 {
    font-size: 30px;
    font-weight: 450;
  }
}

.clinical-text-highlight {
  color: #066EB1;
  font-weight: 650;
}

.clinical-card{
  position: relative;
  border-radius: 10px;
}

.clinical-card-icon {
  position: absolute;
  top: -45px;
  left: 15px;
}

.clinical-card-icon img {
  max-width: 90px;
  max-height: 90px;
}

.clinical-card-icon:hover,
.clinical-card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(53, 53, 53, 0.25);
}

/* ========================================
           CLINICAL - SECTION 2
        ======================================== */
.clinical-section-2-bg {
  background-color: #ffffff;
}

.clinical-card-v2 {
  background-color: #ffffff;
  margin-top: 10px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(53, 53, 53, 0.25);
  position: relative;
}

.clinical-card-v2:hover {
  background-color: #066EB1;
  color: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.clinical-card-v2-icon img {
  position: absolute;
  top: 0px;
  left: 0px;
}

.clinical-card-v2-header {
  display: flex;
  align-items: center;
  gap: 65px;
}

.clinical-card-v2-body {
  display: block;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .col-lg-4 {
    width: 100%;
    margin-bottom: 5px;
  }

  .clinical-card-v2-header {
    flex-direction: row;
    align-items: center;
    text-align: start;
  }

  .clinical-card-v2-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .clinical-card-v2-title h3 {
    font-size: 18px;
  }
}

/* ========================================
           CLINICAL - SECTION 3
        ======================================== */
.clinical-section-3-bg {
  background-color: #EEEEEE;
}

.clinical-card-v3 {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(53, 53, 53, 0.25);
  min-height: 100%;
}

.clinical-card-v3:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* ========================================
           CLINICAL - SECTION 4
        ======================================== */
.clinical-section-4-bg {
  background-color: #008ecf;
  padding: 25px 0px;
}

.clinical-section-4-inner {
  background-image: url(../images/section-4-bg.png);
  padding: 40px 0;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50px;
}

.clinical-card-v4 {
  background-color: white;
  box-shadow: 0 8px 10px rgba(30, 30, 30, 0.20);
  padding: 20px;
  border-radius: 15px;
  min-height: 354px;
}

.clinical-card-v4:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

/* ========================================
           CLINICAL - SECTION 5
        ======================================== */
.clinical-section-5-bg {
  background-color: #fff;
}

.clinical-main-card-container {
  background-color: #EEEEEE;
  padding: 70px;
  border-radius: 20px;
}

.clinical-card-v5 {
  background-color: white;
  box-shadow: 0 8px 10px rgba(30, 30, 30, 0.20);
  padding: 15px;
  border-radius: 10px;
}

.clinical-card-v5:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.clinical-badge {
  white-space: normal !important;
  word-wrap: break-word !important;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  display: block;
  background-color: #008ecf !important;
  color: #fff !important;
  border-radius: 50px;
  margin-top: 10px;
  padding: 10px 15px;
}

@media (max-width: 480px) {
  .clinical-badge {
    font-size: 12px;
    line-height: 2;
    padding: 10px;
    font-weight: 300;
  }
}

/* ========================================
           CLINICAL - SECTION 6
        ======================================== */
.clinical-list-v6 li {
  line-height: 2;
}

.clinical-card-v6 {
  background-color: white;
  color: #272727;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(30, 30, 30, 0.20);
  text-align: center;
  margin-bottom: 10px;
}

/* ========================================
           CLINICAL - SECTION 7
        ======================================== */
.clinical-impact-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: center;
}

.clinical-impact-card {
  max-width: 200px;
  width: 100%;
}

.clinical-impact-value {
  background: linear-gradient(90deg, #00853f, #066EB1);
  color: #fff;
  border-radius: 50px;
  padding: 20px;
  width: 100%;
}

@media (max-width: 992px) {
  .clinical-impact-grid {
    gap: 20px;
  }

  .clinical-impact-card {
    max-width: 45%;
  }
}

@media (max-width: 576px) {
  .clinical-impact-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .clinical-impact-card {
    max-width: 90%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat;
}

.section-space {
  padding: 50px 0px;
}


.btn-gradient {
  background: linear-gradient(to right, #088838, #066EB1) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-outlined {

  color: #066EB1 !important;
  border: 2px solid #066EB1 !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.bg-gradient {
  background: linear-gradient(120deg, #088838, #066EB1) !important;
}

.api-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-light {
  background: #fff;
  color: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.box-gradient {
  background: linear-gradient(90deg, #1fa046, #1b75bb) !important;
  border-radius: 5%;
  padding: 10px 5px;

}

.second-section-bg {
  background-image: url(../images/2nd\ section\ bg.svg);
  background-size: cover;
}

.blue-color {
  color: #066EB1;
  font-weight: bold;
}

.main-card {
  /* Box ko relative position denge taa-kay icon iss ke hisaab se move ho */
  position: relative;
  /* Baaqi card properties (width, padding, box-shadow, wagaira) */
  background-color: white;
  padding: 70px 30px;
  border-radius: 15px;
  border: solid 1px rgba(0, 0, 0, 0.1);

}

.diamond-icon {
  /* Icon ko box se bahir nikaalne ke liye absolute position denge */
  position: absolute;
  /* Top: Icon ko ooper ki taraf move karega */
  top: -40px;
  /* Ya jo bhi value aap ko theek lage */
  /* Left/Right: Center karne ke liye */
  left: 15%;
  /* Transform: Center mein laane ke liye zaroori hai */
  transform: translateX(-50%) rotate(45deg);

  /* Diamond ki dimensions aur color */
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #088838, #066EB1);
  /* Gradient colors */

  /* Icon ke andar ki key ko seedha karne ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5%;
}


/* --- Icon Styling --- */

/* Icon Wrapper: Icon ko center aur usay dimensions dene ke liye */
.icon-wrapper {
  /* Isay outer circle ki width se thora zyada dein */
  width: 120px;
  height: 120px;
}

/* Outer Dashed Circle ki Styling */
.dashed-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;

  /* Dashed Border banayenge: */
  border: 5px dashed;
  border-color: #088838;
  /* Main green color */

  /* Inner circle ko center mein laane ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner Gradient Circle ki Styling */
.inner-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  /* Gradient Color: Green se Blue ki taraf */
  background: linear-gradient(135deg, #088838, #066EB1);


}




.fifth-section-bg {
  background-image: url(../images/5TH\ SECTION\ BG.svg);
  background-size: cover;
  background-position: center;
}



.card-one-img {
  position: relative;
}


#eightth-icon-1 {
  position: relative;
  top: -63px;
  left: 6px;
}



.tenth-section-bg {
  background-image: url('../images/10th\ section\ bg.webp');
  background-size: cover;
}

.tenth-section-img {
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 50px 0;

}

/* Top-left glass square */
.tenth-section-img::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* Bottom-right glass square */
.tenth-section-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}
@media (max-width:500px) {
  .tenth-section-img::after{
      right: 0px !important;
  }
  .tenth-section-img::before {
      left: 0px !important;
  }
}
.button-one {
  background-color: #fff;
  color: #333;
  border-radius: 100px;
  padding: 10px 20px;
}

.button-two {
  padding: 10px 20px;
}



.section-five-bg {
  background: linear-gradient(135deg, #088838, #066EB1);
}

.text-style {
  color: #066EB1;
  font-weight: 800;
}

.text-style-white {
  color: #ffffff;
  font-weight: 800;
}


.section-space {
  padding: 50px 0px;
}


.btn-gradient {
  background: linear-gradient(to right, #088838, #066EB1) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-outlined {

  color: #066EB1 !important;
  border: 2px solid #066EB1 !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.bg-gradient {
  background: linear-gradient(120deg, #088838, #066EB1) !important;
}

.api-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.box-light {
  background: #fff;
  color: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.box-gradient {
  background: linear-gradient(90deg, #1fa046, #1b75bb) !important;
  border-radius: 5%;
  padding: 10px 5px;

}

.second-section-bg {
  background-image: url(../images/2nd\ section\ bg.svg);
  background-size: cover;
}

.blue-color {
  color: #066EB1;
  font-weight: bold;
}

.main-card {
  /* Box ko relative position denge taa-kay icon iss ke hisaab se move ho */
  position: relative;
  /* Baaqi card properties (width, padding, box-shadow, wagaira) */
  background-color: white;
  padding: 70px 30px;
  border-radius: 15px;
  border: solid 1px rgba(0, 0, 0, 0.1);

}

.diamond-icon {
  /* Icon ko box se bahir nikaalne ke liye absolute position denge */
  position: absolute;
  /* Top: Icon ko ooper ki taraf move karega */
  top: -40px;
  /* Ya jo bhi value aap ko theek lage */
  /* Left/Right: Center karne ke liye */
  left: 15%;
  /* Transform: Center mein laane ke liye zaroori hai */
  transform: translateX(-50%) rotate(45deg);

  /* Diamond ki dimensions aur color */
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #088838, #066EB1);
  /* Gradient colors */

  /* Icon ke andar ki key ko seedha karne ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5%;
}


/* --- Icon Styling --- */

/* Icon Wrapper: Icon ko center aur usay dimensions dene ke liye */
.icon-wrapper {
  /* Isay outer circle ki width se thora zyada dein */
  width: 120px;
  height: 120px;
}

/* Outer Dashed Circle ki Styling */
.dashed-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;

  /* Dashed Border banayenge: */
  border: 5px dashed;
  border-color: #088838;
  /* Main green color */

  /* Inner circle ko center mein laane ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Inner Gradient Circle ki Styling */
.inner-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  /* Gradient Color: Green se Blue ki taraf */
  background: linear-gradient(135deg, #088838, #066EB1);


}




.fifth-section-bg {
  background-image: url(../images/5TH\ SECTION\ BG.svg);
  background-size: cover;
  background-position: center;
}






.tenth-section-img {
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 50px 0;

}

/* Top-left glass square */
.tenth-section-img::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* Bottom-right glass square */
.tenth-section-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.button-one {
  background-color: #fff;
  color: #333;
  border-radius: 100px;
  padding: 10px 20px;
}

.button-two {
  padding: 10px 20px;
}



.section-five-bg {
  background: linear-gradient(135deg, #088838, #066EB1);
}

.text-style {
  color: #066EB1;
  font-weight: 800;
}

.text-style-white {
  color: #ffffff;
  font-weight: 800;
}

/* === DICOM PREFIXED STYLES === */

.dicom-hero-section {
  background-image: url(../images/banner-1.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-hero-section .ai-action-header,
.dicom-hero-section .ai-action-header *,
.dicom-hero-section {
  color: white !important;
}

.dicom-accordian-bg {
  background-color: #EEEEEE;
}

.dicom-header-size {
  font-weight: 700;
}

/* Font Sizes - Desktop */
.dicom-hero-section-content h4,
.dicom-content-introduction-sec h4,
.dicom-main-head-4 {
  font-size: 24px;
}

.dicom-hero-section-content h1,
.dicom-content-introduction-sec h2,
.dicom-main-content h2,
.dicom-header-text,
.dicom-sec-2-body h2 {
  font-size: 50px;
}

.dicom-hero-section-content p,
.dicom-sec-2-body p,
.dicom-content-introduction-sec p,
.dicom-main-content p,
.dicom-body-para {
  font-size: 20px;
}

/* Buttons */
.dicom-btn-primary {
  background-color: white;
  border: none;
  color: #066EB1;
  min-width: 240px;
  font-size: 22px;
  font-weight: 500;
  padding: 10px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dicom-btn-primary-outline {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  min-width: 260px;
  font-size: 22px;
  font-weight: 500;
  padding: 10px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.dicom-btn-primary:hover,
.dicom-btn-primary-outline:hover {
  background-color: white;
  color: #066EB1;
}

/* Icon Boxes */
.dicom-inner-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #088838, #066EB1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dicom-heading-4 {
  font-size: 26px;
  font-weight: 600;
}

/* Background Sections */
.dicom-dicom-analysis-section {
  background-image: url(../images/banner\ 2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-text-color {
  color: #066EB1;
}

.dicom-sec-2-body h2 {
  font-size: 48px;
  font-weight: 700;
}

.dicom-font-size-head {
  font-size: 24px;
  font-weight: 600;
}

.dicom-sec-2-body p {
  font-size: 20px;
}

.dicom-custom-container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 40px;
}

.dicom-content-introduction-sec h4 {
  font-size: 24px;
  font-weight: 500;
}

.dicom-content-introduction-sec h2 {
  font-size: 48px;
  font-weight: 700;
}

.dicom-icon-shape {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #088838 0%, #066EB1 100%);
  border-radius: 8px;
  transform: rotate(45deg);
  position: absolute;
  top: -35px;
  left: 38px;
}

.dicom-rocket-icon {
  transform: rotate(-38deg);
}

.dicom-creative-card {
  background-color: #ffffff;
  position: relative;
  height: 100%;
  border-radius: 12px;
}

.dicom-creative-card h4 {
  font-size: 24px;
  font-weight: 600;
}

.dicom-creative-card p {
  font-size: 20px;
  color: #242424;
}

.dicom-feature-card-sec {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.bi-dash-lg::before {
  content: "";
}

.dicom-main-content h2 {
  font-size: 48px;
  font-weight: 700;
}

.dicom-main-content p {
  font-size: 20px;
}

/* Stat Cards */
.dicom-stat-card-1,
.dicom-stat-card-2,
.dicom-stat-card-3 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #242424;
  flex-wrap: wrap;
}

/* Individual Backgrounds */
.dicom-stat-card-1 {
  background-image: url(../images/card\ img\ 1.webp);
}

.dicom-stat-card-2 {
  background-image: url(../images/card\ img\ 2.webp);
}

.dicom-stat-card-3 {
  background-image: url(../images/card\ img\ 3.webp);
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {

  .dicom-stat-card-1,
  .dicom-stat-card-2,
  .dicom-stat-card-3 {
    min-height: 320px;
    border-radius: 10px;
    background-position: center top;

    padding: 20px;
    align-items: flex-end;
  }
}


@media (max-width: 480px) {

  .dicom-stat-card-1,
  .dicom-stat-card-2,
  .dicom-stat-card-3 {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    padding: 15px;
  }
}


.dicom-stat-content {
  position: relative;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 30px 20px;
  margin: 20px;
  width: 85%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dicom-stat-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #088838 0%, #066EB1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.dicom-healthcare-system {
  background-image: url(../images/healthcare\ bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-header-text {
  font-size: 48px;
  font-weight: 700;
}

.dicom-body-para {
  font-size: 20px;
}

.dicom-card-system {
  background-color: #EEEEEE;
  border-radius: 15px;
}

.dicom-card-header {
  background-color: #066EB1;
  padding: 1px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: white;
}

.dicom-detection-icon {
  padding-left: 20px;
}

.dicom-main-icon-title {
  padding-top: 20px;
}

.dicom-card-text {
  padding-left: 20px;
}

.dicom-technical-card-sec {
  background-color: #EEEEEE;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
  color: #1a1a1a;
}

.dicom-main-head-4 .dicom-tagline {
  font-size: 16px;
  color: #066EB1;
  font-weight: 600;
  letter-spacing: 1px;
}

.dicom-header-text {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.dicom-body-para {
  font-size: 18px;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.dicom-technical-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dicom-technical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

.dicom-rounded-shape {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #088838 0%, #066EB1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Card */
.dicom-card-footer {
  background-color: #066EB1;
  border-radius: 0 0 12px 12px;
  padding: 12px 0;
}

.dicom-card-footer h6 {
  font-size: 1rem;
}

.dicom-card-footer p {
  font-size: 0.9rem;
  margin-top: 2px;
}



.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 10px;
}

.card-subtext {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-body-content {
  list-style: none;
  padding-left: 0;
  margin: 0;
}


.card-body-content li {
  position: relative;
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 18px;
}

.card-body-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #066EB1;
  font-size: 18px;
  top: -1px;
}

/* Architecture & Other Sections */
.dicom-architecture-section {
  background-color: #EEEEEE;
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-icon-box {
  background: linear-gradient(135deg, #088838 0%, #066EB1 100%);
}

.dicom-tagline {
  font-size: 24px;
  font-weight: 550;
}

.dicom-medical-imaging-sec {
  background-image: url(../images/bg-sec-8.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-tenth-section-bg {
  background-image: url(../images/tenth-section.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.dicom-tenth-section-img {
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 50px 0;
}

.dicom-tenth-section-img::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.dicom-tenth-section-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* Accordion */
.dicom-accordion-item {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  overflow: hidden;
}

.dicom-accordion-button {
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border: none;
  box-shadow: none !important;
  padding: 15px;
}

.dicom-accordion-button:not(.collapsed) {
  background-color: #e9f6f5;
  color: #000;
}

.dicom-accordion-button img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.dicom-accordion-body {
  background-color: #ffffff;
  font-size: 14px;
  color: #555;
  padding: 20px;
}

.dicom-accordion-button::after {
  background-size: 1rem;
}

/* ===========================================
   RESPONSIVE STYLES - MOBILE & TABLET
   =========================================== */

/* Tablet View */
@media (max-width: 992px) {
  .dicom-custom-container {
    padding: 0 30px;
  }

  .dicom-hero-section-content h1,
  .dicom-content-introduction-sec h2,
  .dicom-main-content h2,
  .dicom-header-text,
  .dicom-sec-2-body h2,
  .dicom-main-head-4 {
    font-size: 38px !important;
    line-height: 1.2;
  }

  .dicom-hero-section-content h4,
  .dicom-content-introduction-sec h4,
  .dicom-heading-4,
  .dicom-creative-card h4,
  .dicom-font-size-head {
    font-size: 22px;
  }

  .dicom-hero-section-content p,
  .dicom-sec-2-body p,
  .dicom-content-introduction-sec p,
  .dicom-main-content p,
  .dicom-body-para,
  .dicom-creative-card p {
    font-size: 18px;
    line-height: 1.6;
  }

  .dicom-btn-primary,
  .dicom-btn-primary-outline {
    min-width: 200px;
    font-size: 20px;
    padding: 8px 16px;
  }

  .dicom-tagline {
    font-size: 18px;
  }
}

/* Small Tablet & Mobile Landscape */
@media (max-width: 768px) {
  .dicom-custom-container {
    padding: 0 20px;
  }

  .dicom-hero-section-content h1,
  .dicom-content-introduction-sec h2,
  .dicom-main-content h2,
  .dicom-header-text,
  .dicom-sec-2-body h2 {
    font-size: 32px !important;
    line-height: 1.2;
  }

  .dicom-hero-section-content h4,
  .dicom-content-introduction-sec h4,
  .dicom-heading-4,
  .dicom-creative-card h4 {
    font-size: 20px;
  }

  .dicom-hero-section-content p,
  .dicom-sec-2-body p,
  .dicom-content-introduction-sec p,
  .dicom-main-content p,
  .dicom-body-para,
  .dicom-creative-card p,
  .card-subtext,
  .card-body-content li {
    font-size: 16px;
    line-height: 1.6;
  }

  .dicom-btn-primary,
  .dicom-btn-primary-outline {
    min-width: 180px;
    font-size: 18px;
    padding: 10px 20px;
  }

  .dicom-inner-box,
  .dicom-icon-shape,
  .dicom-rounded-shape,
  .dicom-stat-icon {
    width: 55px;
    height: 55px;
  }

  .dicom-icon-shape {
    top: -30px;
    left: 30px;
  }

  .dicom-stat-content {
    padding: 20px 15px;
    margin: 15px;
  }

  .dicom-technical-card {
    padding: 25px;
  }

 

  .dicom-tagline {
    font-size: 16px;
  }

  .dicom-accordion-button {
    font-size: 15px;
    padding: 12px;
  }

  .dicom-accordion-button img {
    width: 25px;
    height: 25px;
  }
}


/* Mobile Portrait */
@media (max-width: 576px) {
  .dicom-custom-container {
    padding: 0 15px;
  }

  .dicom-hero-section-content h1,
  .dicom-content-introduction-sec h2,
  .dicom-main-content h2,
  .dicom-header-text,
  .dicom-sec-2-body h2 {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .dicom-hero-section-content h4,
  .dicom-content-introduction-sec h4,
  .dicom-heading-4,
  .dicom-creative-card h4 {
    font-size: 18px;
  }

  .dicom-hero-section-content p,
  .dicom-sec-2-body p,
  .dicom-content-introduction-sec p,
  .dicom-main-content p,
  .dicom-body-para,
  .dicom-creative-card p,
  .card-subtext,
  .card-body-content li {
    font-size: 15px;
    line-height: 1.65;
  }

  .dicom-btn-primary,
  .dicom-btn-primary-outline {
    min-width: 160px;
    font-size: 16px;
    padding: 10px 16px;
    border-radius: 25px;
  }

  .dicom-inner-box,
  .dicom-icon-shape,
  .dicom-rounded-shape,
  .dicom-stat-icon {
    width: 50px;
    height: 50px;
  }

  .dicom-icon-shape {
    top: -25px;
    left: 25px;
  }

  .dicom-stat-content {
    padding: 18px 12px;
    margin: 12px;
  }

  .dicom-technical-card-sec {
    padding: 50px 15px;
  }

  .card-title {
    font-size: 17px;
  }

  .dicom-tagline {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .dicom-accordion-button {
    font-size: 14px;
    padding: 10px;
  }

  .dicom-accordion-button img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
  }

  .dicom-accordion-body {
    font-size: 13px;
    padding: 15px;
  }

  .dicom-tenth-section-img::before,
  .dicom-tenth-section-img::after {
    width: 70px;
    height: 70px;
  }

  .dicom-tenth-section-img::before {
    top: -25px;
    left: -25px;
  }

  .dicom-tenth-section-img::after {
    bottom: -25px;
    right: -25px;
  }
}

/* Extra Small Mobile */
@media (max-width: 380px) {

  .dicom-hero-section-content h1,
  .dicom-header-text,
  .dicom-sec-2-body h2 {
    font-size: 24px !important;
  }

  .dicom-hero-section-content p,
  .dicom-body-para {
    font-size: 14px;
  }

  .dicom-btn-primary,
  .dicom-btn-primary-outline {
    min-width: 140px;
    font-size: 15px;
    padding: 8px 12px;
  }

  .dicom-custom-container {
    padding: 0 12px;
  }

  .dicom-technical-card {
    padding: 20px;
  }
}

.nav-btn-one p {
  color: white;


}

.hero-section-bg {
  background-image: url(../images/hero-section-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}


.img-hero-medical {
  max-width: 820px;
  height: auto;
  display: block;
}

@media (max-width: 1300px) {
  .img-hero-medical {
    max-width: 650px;
  }
}

/* Optional: tweak for smaller screens */
@media (max-width: 992px) {
  .img-hero-medical {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .img-hero-medical {
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .img-hero-medical {
    max-width: 320px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section-bg {
    width: 100%;
    text-align: center;
  }

  .hero-img {
    max-width: 400px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .hero-img {
    max-width: 300px;
  }

  .carousel-title {
    font-size: 1.8rem;
  }

  .hero-links-father p {
    font-size: 18px;
  }
}

.models-section-bg {
  background-color: #EEEEEE;
  width: 100%;
}

.models-content p {
  color: black;

}

.models-content h2 {
  color: black;
  font-size: 3rem;
  font-weight: 700;

}

.models-content p {
  font-weight: 500;
}

.model-span {
  color: #1584b9;
}

.models-cards {
  background-color: white;
  padding: 23px;
  border-radius: 16px;
}

.models-cards h6 {
  font-weight: 700;
}

.model-btn {
  background-color: rgb(255, 255, 255) !important;
  border-radius: 31px !important;
  color: #066EB1 !important;
  padding: 10px;
  border: 2px solid #066EB1;
}

.coding-section-bg {
  background-color: white;
  width: 100%;
}

.coding-section-content h2 {
  color: black;
  font-size: 3rem;
  font-weight: 700;


}

.coding-span {
  color: #1584b9;
}

.coding-main-card {
  background-color: #EEEEEE;
  padding-top: 50px;
  padding-bottom: 50px;

  border-radius: 24px;

}

.card-body h1 {
  font-weight: 700;

}

.round {
  background: linear-gradient(135deg, #088838, #066EB1);
  width: 60px;
  height: 60px;
  border-radius: 120px;
  margin: 0 auto 15px auto
}

.Optimization-section-bg {
  background-color: #EEEEEE;
  width: 100%;

}

.Optimization-section-bg p {
  margin: 0px;
}

.Optimization-section-span {
  color: #066EB1;
  font-weight: bold;
}

.Optimization-section-card {
  background-color: white;
  border-radius: 18px !important;
  height: 100%;
}

.Optimization-section-cards-links i {
  color: #066EB1;
}



.Optimization-section-content h2 {
  font-size: 2.5rem;
  font-weight: 600;


}


.works-section-bg {
  background-color: white;
  width: 100%;
}

.work-span-p {
  font-weight: 500;
}

.work-span-coding {
  color: #066EB1;
}

.work-card {
  border-radius: 16px !important;
  position: relative;
}

.work-card h6 {
  color: #808080;
}

.works-section-content h2 {
  font-size: 3rem;
  font-weight: 700;

}

.work-para {
  color: #808080;
}

.icon-box {
  position: absolute;
  top: -34px;
  left: 34px;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  box-shadow: 0 8px 18px rgba(18, 38, 63, 0.12);
  background: linear-gradient(135deg, #088838, #066EB1);
}

.card-title {
  margin-top: 60px;
}

.discount-section-bg {
  background-image: url(../images/discount-section-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;



}

.discount-section-content h2 {
  font-size: 3rem;
  font-weight: 600;
}

.discount-span {
  color: #066EB1;
}

.discount-card-round {
  background: linear-gradient(135deg, #088838, #066EB1);
  width: 72px;
  height: 72px;
  border-radius: 50px;

}

.discount-card {
  min-height: 300px;
}

.discount-card-body h4 {
  color: #066EB1;
  font-weight: bold;
}

.health-care-section-bg {
  background-color: white;
}

.helath-hr {

  width: 1px;
  /* line ki motai */
  height: 50px;
  /* line ki lambai */
  background-color: black;
  /* line ka color */
  border: none;
  /* default border hata do */
  transform: rotate(0deg);
  /* line ko seedha ghumao */

}

.health-care-card {
  border-radius: 16px !important;
}

.health-care-section-content h2 {
  font-size: 3rem;
  font-weight: 700;

}

.health-care-span {
  color: #066EB1;
}

.tenth-section-img {
  position: relative;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 50px 0;

}

/* Top-left glass square */
.tenth-section-img::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* Bottom-right glass square */
.tenth-section-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.tenth-section-bg {
  background-image: url(../images/tenth\ section-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* new page pric plan */

/* main price table section  */

.main-sec-bg {
  background-image: url('../images/main-bg.webp');
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
}

.price-feature {
  background-color: rgb(231, 231, 231);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  color: #242424;
  font-weight: 500;
  border-radius: 16px;
}

.btn-price-main {
  background: linear-gradient(90deg, #088838, #066EB1);
  border-style: none;
  padding: 13px 35px;
  color: white;
  border-radius: 100px;
}


/* icone background */
.inner-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #088838, #066EB1);
}







/* section 1 price page  */


.currency-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 13px 22px;
  width: fit-content;
  margin: 0 auto;
}

.currency-btn {
  background: #fff;
  color: #252525;
  border: 2px solid #c0c0c0;
  border-radius: 30px;
  padding: 9px 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.currency-btn:hover {
  background: #e6e4e4;
}

.currency-btn.active {
  background: linear-gradient(135deg, #088838, #066EB1);
  color: #fff;
  transform: scale(1.05);
  ransition: all 0.4s ease-in-out;
  border-style: none;
}




.card-sec-one {
  margin-top: 10px;
  padding: 20px;
  box-shadow: 0 8px 10px rgba(30, 30, 30, 0.20);
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.card-sec-one:hover {
  transform: scale(1.05);
  padding: 25px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.tag {
  border: 3px solid #066EB1;
  color: #066EB1;
  border-radius: 50px;
  padding: 8px 43px;
  font-size: 23px;
  font-weight: 650;
}








/* section 2 price cards  */
.main-price {
  background-color: rgb(255, 255, 255);
  padding: 10px;
  border-radius: 20px;
  border: 0.8px solid #d4d3d3;
  box-shadow: 0 8px 10px rgba(30, 30, 30, 0.20);
  height: 100%;
}

.main-price:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.header {
  background-color: #066EB1;
  color: white;
  padding: 18px;
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
}

.icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 30px;
  height: 30px;
  color: #066EB1;
}

.header-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.access-section {
  padding: 20px;
  color: #242424;
  font-size: 16px;

}

.prices-button {
  display: inline-block;
  background: #066EB1;
  color: white;
  padding: 8px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.prices-section {
  background: #EDF2FF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(50, 50, 50, 0.2);
  margin-bottom: 10px;
}

.pricing-category {
  margin-bottom: 24px;
}

.pricing-category h3 {
  font-size: 16px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 12px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.price-value {
  font-weight: 600;
  color: #242424;
}

.home-visits-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.features-section {
  padding: 20px;
  background: white;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #242424;
  line-height: 1.4;
}

.checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #066EB1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #066EB1;
  font-weight: bold;
  margin-top: 2px;
}

.disclaimer {
  padding: 5px 20px;
  font-size: 12px;
  color: #7c7b7b;
  line-height: 1.6;
  border-top: 1px solid #c4c4c4;
}




.read-more-btn {
  background: linear-gradient(135deg, #088838, #066EB1);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s ease;
}



/* section no 8  */

.section-8-bg {
  background-image: url('../images/sec-7-bg.png');
}

.section-8-img {
  position: relative;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 50px 0;

}

/* Top-left glass square */
.section-8-img::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

/* Bottom-right glass square */
.section-8-img::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.btn-last {
  background-color: white;
  padding: 10px;
  border-radius: 7px;
  border-style: none;
}

.btn-last:hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(90deg, #088838, #066EB1);
  transition: all 0.3s ease-in-out;
}


@media (max-width: 768px) {
  .col-lg-4.col-md-6 {
    width: 100%;
    margin-bottom: 23px;
  }

  .bg-white.p-4 {
    padding: 1.3rem !important;
  }

  .bg-light.p-3 {
    padding: 0.8rem !important;
    flex-direction: column;
    text-align: end;
  }

  .bg-light.p-3 h5 {
    margin-bottom: 4px;
  }

  .bg-light.p-3 p {
    margin: 0;
  }

  h4.my-4 {
    font-size: 0.8 rem;
  }

  .m-0 {
    align-items: start;
  }


}

/* newpage_overpartner */
/* Banner - Exact Screenshot Style */
.partners-banner {
  background: linear-gradient(93.33deg, #088838 4.97%, #066EB1 96.03%);
  padding: 140px 0 160px;
  position: relative;
  text-align: center;
  color: white;
  background-image: url("../images/partner-img-hero.webp");
}



.breadcrumb-text {
  font-size: 1rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

.partners-title {
  font-size: 3.8rem;
  font-weight: 800;
  margin: 15px 0 60px;
}

/* Search Bar - Ek Row Mein, Screenshot Jaisa */
.search-bar-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  justify-content: center;
}

.search-bar-wrapper .form-control,
.search-bar-wrapper .form-select {
  border-radius: 50px;
  padding: 16px 28px;
  border: none;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  font-size: 1.05rem;
}

.search-bar-wrapper .btn {
  border-radius: 50px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

.btn-search {
  background: white;
  color: #066EB1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-showall {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Partner Cards Section */
.partner-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(6, 110, 177, 0.2);
}

.partner-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.partner-info {
  padding: 25px 20px;
}

.partner-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.partner-type {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.btn-viewmore {
  background: #066EB1;
  color: white;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .partners-title {
    font-size: 2.8rem;
  }

  .search-bar-wrapper {
    flex-wrap: wrap;
  }

  .search-bar-wrapper>* {
    min-width: 45%;
  }
}

@media (max-width: 576px) {
  .search-bar-wrapper {
    flex-direction: column;
  }

  .search-bar-wrapper>* {
    width: 90% !important;
  }
}

.contact-us-bg {
  background-image: url("../images/partner-contact-us\ \(1\).webp");
}

.eHealth-membership-section {
  padding: 100px 0;
  background: #f8f9fa;
}

/* Fixed Container for Slider */
.eHealth-membership-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Swiper - Only 1 Card Visible */
.eHealth-membership-swiper {
  overflow: hidden;
}

.eHealth-membership-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fixed Card Size & Ratio (Credit Card Ratio ≈ 1.586:1) */
.eHealth-membership-card {
  width: 70%;


  /* 500 / 1.586 ≈ 315 */
  border-radius: 20px;
  overflow: hidden;

  transition: transform 0.4s ease;
}

.eHealth-membership-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Professional Arrows Outside Container */
.eHealth-arrow-prev,
.eHealth-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eHealth-arrow-prev:hover,
.eHealth-arrow-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.eHealth-arrow-prev {
  left: -80px;
}

.eHealth-arrow-next {
  right: -80px;
}

/* Responsive - Arrows andar aa jayenge small screens pe */
@media (max-width: 992px) {
  .eHealth-arrow-prev {
    left: 10px;
  }
.eHealth-membership-card{
  width: 100%;
}
  .eHealth-arrow-next {
    right: 10px;
  }
}




/* ===== SAB KUCH SIRF .eHealth_ai KE ANDAR HI RAHEGA ===== */
.eHealth_ai {

  padding: 50px 0;
}

.eHealth_ai .swiper {
  padding: 50px 0;
}

/* ===== CARD DESIGN (UPDATED SAME AS YOUR IMAGE) ===== */
.eHealth_ai .swiper-slide {
  background: #fff;
  border-radius: 20px;
  width: clamp(280px, 38vw, 380px) !important;
  height: auto !important;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: scale(0.92);
  opacity: 0.75;
  filter: blur(2px);
  transition: 0.45s ease;
}

.eHealth_ai .swiper-slide-active {
  transform: scale(1.05) !important;
  filter: blur(0) !important;
  opacity: 1 !important;
  box-shadow: 0 0 25px rgba(7, 98, 229, 0.5);
}

/* Logo Styling */
.card-logo-img {
  width: 140px;
  margin-bottom: 5px;
}

/* Feature Buttons Exactly Like Image */
.feature-btn {
  background: #eeeeee;
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: start;
}

.eHealth_ai .swiper-slide-active .feature-btn {
  background: #eeeeee;
  border-color: #0762e5;
}

/* newpage employer */

.main-sec-bg-two {
  background-image: url('../images/employer-bg.webp');
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
}


.condition-icon {
  font-size: 40px;
  color: #066EB1;
}


/* for patient */
.bg-section-1 {
  background-color: #EEEEEE;
}

.no-medical-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(50, 50, 50, 0.2);
  height: 100%;
}




.info-block {
  border: 2px solid #066EB1;
  border-radius: 10px;
  padding: 20px;
}

.info-heading {
  color: #066EB1;
  margin-bottom: 10px;
}

.card-sec-3 {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 10px rgba(50, 50, 50, 0.2);
  height: 100%;
}

.hero-sec-bg.hero-sec-bg {
  background-image: url(../images/hero-bg.png);
  min-height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
}

.features-grid-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card-two {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  color: #000;
  text-align: left;
  transition: all 0.3s ease;
  animation: fadeInUp 0.2s ease-out;
}

.feature-card-two:nth-child(1) {
  animation-delay: 0.7s;
}

.feature-card-two:nth-child(2) {
  animation-delay: 0.8s;
}

.feature-card-two:nth-child(3) {
  animation-delay: 0.9s;
}

.feature-card-two:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  background: #0f2a52;
  animation: smoothScale 0.6s ease-out;
  color: #fff;
}

.feature-card-two-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card-two:hover .feature-card-two-icon {
  transform: scale(1.1) rotate(5deg);
  animation: rotateIcon 0.8s ease-out;
}

.feature-card-two-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature-card-two-text {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.banner-contant {
  color: white;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-menu.show {
  display: block;
}

/* about-us */


/* Top Bar */
/* about-us */

/* Top Bar */
.about-w {
  background: linear-gradient(135deg, #0d6efd 0%, #198754 100%);
  padding: 1rem 0;
  color: #ffffff;
  font-size: 0.875rem;
}

/* Main Title */
.about-s {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #0d0d8c;
  text-align: center;
  margin: 3rem 0 2rem;
  letter-spacing: -0.02em;
}

/* Description Box */
.about-t {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Feature Cards */
.about-u {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1.5rem;
  border-left: 4px solid #066EB1;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-u:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Text under images */
.about-v {
  font-size: 1.125rem;
  color: #1a1a1a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.about-v strong {
  color: #066EB1;
}

/* Image Gallery */
.about-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.about-x img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transition: transform 0.3s ease;
}

.about-x img:hover {
  transform: scale(1.05);
}

/* Trusted Company Button */
.about-y {
  background: #066EB1;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  display: inline-block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about-y:hover {
  background: #0056b3;
  transform: translateY(-2px);
  color: #ffffff;
  text-decoration: none;
}

/* Vision & Mission Section */
.about-z {
  background-image: url("../images/about-3344.webp");
  color: #ffffff;
  padding: 4rem 1.5rem;


}

/* Number Circle */
.about-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Vision/Mission Cards */
.vision-mission-card {
  background: #066EB1;
  color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
}

.vision-mission-card h4 {
  color: #fff;
  font-weight: 700;
}

/* Hero Section */

.about-hero {
  background-image: url('../images/about-hero1122.webp');
  min-height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
}

.carousel-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.carousel-title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ultra-hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.clinical-hero-buttons {
  margin-top: 2rem;
}

.clinical-btn-outline {
  background: #ffffff;
  color: #0d6efd;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.clinical-btn-outline:hover {
  background: #0d6efd;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .about-x {
    gap: 1rem;
  }

  .about-x img {
    width: 200px;
    height: 150px;
  }

  .about-u {
    flex-direction: column;
    text-align: center;
  }

  .about-num {
    margin: 0 auto 1rem;
  }

  .main-sec-bg {
    min-height: 300px;
    padding: 2rem 1rem;
  }
}


.tos-section {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
}

.tos-section h1 span {
  color: #007bff;
}

.tos-icon {
  width: 18px;
  height: 18px;
  border: 3px solid #0d6efd;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.tos-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #0d6efd;
  border-radius: 50%;

}




.tos-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 25px;
}


/* premium-modal.css - Sirf Partner modals ke liye */

.premium-modal .modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.premium-modal .modal-header {
background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
    color: white;
    border: none;
    padding: 15px 20px;
}

.premium-modal .modal-header.text-success {
   background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
}

.premium-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.premium-modal .btn-close {
    filter: invert(1);
    opacity: 0.9;
}

.premium-modal .modal-body {
    padding: 40px 36px;
    background: #fcfcfd;
}

.premium-modal .doctor-img {
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.premium-modal h3 {
    font-weight: 800;
    margin-bottom: 24px;
}

.premium-modal .table td:first-child {
    font-weight: 600;
    color: #374151;
    width: 160px;
    padding-right: 20px;
}

.premium-modal .table a {
    color: #1e40af;
    text-decoration: none;
}

.premium-modal .table a:hover {
    text-decoration: underline;
}

/* Company modal header green (only for partner5) */
#partner5 .modal-header {
background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
}
@media (max-width:400px) {
  .endorsement-card{
    display: flex;
    flex-direction: column-reverse;
  }
  .qr-display img{
    width: 100% !important;
  }
}
.shop-w-card {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background: #fff;
}
.shop-m-img-wrapper {
  padding: 20px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-w-img {
  max-height: 100%;
  width: auto;
}
.shop-w-title {
  font-size: 15px;
  font-weight: bold;
  height: 45px;
  overflow: hidden;
}
.shop-m-price {
  color: #0d6efd;
  font-weight: bold;
}
.shop-m-btn {
  background: linear-gradient(93.33deg, #088838 4.97%, #066eb1 96.03%);
  border: none;
  border-radius: 0;
  padding: 12px;
}
 @media (min-width: 1024px) and (max-width: 1100px) {

 .btn-how-it-works{
  padding: 10px 25px;
  font-size: 0.87rem;
 }
.navItem{
  font-size: 0.8rem;
}
}