/* Venus Healthcare - Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0d2c54;
  --secondary-teal: #00b4d8;
  --accent-blue: #0077b6;
  --light-blue-bg: #f0f5fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
}

/* Navbar Customization */
.navbar-custom {
  background-color: transparent;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
}

.navbar-custom.scrolled {
  background-color: var(--glass-bg);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
}

.navbar-brand img {
  height:100px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand img {
  height:100px;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-navy) !important;
  position: relative;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary-teal);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Button Customizations */
.btn-premium {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
  color: var(--white) !important;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(13, 44, 84, 0.25);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-premium:hover {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-teal) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.btn-premium-outline {
  background: transparent;
  color: var(--primary-navy) !important;
  border: 2px solid var(--primary-navy);
  font-weight: 600;
  padding: 0.65rem 1.65rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-premium-outline:hover {
  background-color: var(--primary-navy);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: radial-gradient(circle at 10% 20%, rgba(240, 245, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 90%), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="%230d2c54" opacity="0.1"/></svg>');
  background-size: cover, 25px 25px;
  padding: 160px 0 90px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-tagline {
  color: var(--secondary-teal);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 800;
  font-family: "Times New Roman", Times, serif;

}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.badge-cert {
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(0, 180, 216, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-image-container:hover img {
  transform: scale(1.03);
}

/* Sections General */
section {
  padding: 95px 0;
}

.section-bg-light {
  background-color: var(--light-blue-bg);
}

.section-subtitle {
  color: var(--secondary-teal);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 800;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--secondary-teal));
  border-radius: 2px;
}

.section-title-center {
  text-align: center;
}

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

/* About Us Key stats */
.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--secondary-teal);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Products Cards */
.product-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.2);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

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

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  gap: 10px;
}

.product-footer .btn {
  flex: 1;
}

/* Modals styling */
.modal-content-custom {
  border-radius: 14px;
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header-custom {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
  color: var(--white);
  padding: 1.5rem;
  border-bottom: none;
}

.modal-header-custom .modal-title {
  color: var(--white);
  font-weight: 700;
}

.modal-header-custom .btn-close {
  filter: invert(1) grayscale(1) brightness(2);
  opacity: 0.8;
}

.modal-header-custom .btn-close:hover {
  opacity: 1;
}

.spec-table th {
  font-weight: 600;
  color: var(--primary-navy);
  background-color: var(--light-blue-bg);
  width: 35%;
}

.spec-list-icon {
  color: var(--secondary-teal);
  margin-right: 8px;
}

/* Infrastructure */
.infra-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  border-top: 4px solid var(--primary-navy);
}

.infra-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--secondary-teal);
}

.infra-icon {
  background-color: var(--light-blue-bg);
  color: var(--accent-blue);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.infra-card:hover .infra-icon {
  background-color: var(--secondary-teal);
  color: var(--white);
}

/* Certifications badge design */
.cert-badge-box {
  background: var(--white);
  border: 1px dashed rgba(13, 44, 84, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.cert-badge-box:hover {
  border-color: var(--secondary-teal);
  box-shadow: var(--shadow-md);
  background-color: var(--light-blue-bg);
}

.cert-badge-icon {
  font-size: 3rem;
  color: var(--secondary-teal);
  margin-bottom: 1.25rem;
}

/* Leadership section styling */
.leader-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.leader-badge {
  background: linear-gradient(135deg, var(--light-blue-bg) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 4px solid var(--secondary-teal);
}

.leader-badge h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.leader-title {
  color: var(--secondary-teal);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.leader-body {
  padding: 2.5rem;
}

.leader-timeline {
  list-style: none;
  padding-left: 0;
  position: relative;
}

.leader-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(13, 44, 84, 0.1);
}

.leader-timeline-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.leader-timeline-dot {
  position: absolute;
  left: 3px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
  z-index: 2;
}

/* Contact & Inquiry Section */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-blue) 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 3rem;
  height: 100%;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-detail-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.25rem;
  margin-right: 1.25rem;
  color: var(--secondary-teal);
  margin-top: 3px;
}

.contact-detail-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-detail-text strong {
  color: var(--white);
}

.inquiry-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-label {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 0.9rem;
}

.form-control, .form-select {
  border: 1.5px solid rgba(13, 44, 84, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-teal);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

/* Footer Section */
.footer-section {
  background-color: #051325;
  color: #a0aec0;
  padding: 70px 0 30px 0;
  border-top: 5px solid var(--primary-navy);
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  padding-top: 30px;
  font-size: 0.85rem;
}

.footer-logo {
  max-height:150px;
  width: auto;


}
.flogo{
  background-color:#fff;
  border-radius:30px;
  padding:10px;
  width:190px;
  text-align:cneter;
  margin-bottom:10px;
}
/* Form success alert styling */
.submit-success-animation {
  animation: slideInUp 0.5s ease-out forwards;
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Image containment */
.product-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #ffffff;
}

.modal-body-wrapper {
  padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 140px 0 70px 0;
    text-align: center;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-lead {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .inquiry-form-card, .contact-info-card {
    padding: 2rem;
  }
}

/* Floating WhatsApp Button (Left Side) styling */
.btn-whatsapp-left {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-whatsapp-left:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-left:active {
  transform: scale(0.95);
}

/* Mock reCAPTCHA styling */
#recaptchaContainer {
  border: 1.5px solid #d3d3d3 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9 !important;
  border-radius: 3px !important;
  transition: border-color 0.2s ease;
}

#recaptchaContainer:hover {
  border-color: #b9b9b9 !important;
}

#recaptchaCheckbox {
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

#recaptchaCheckbox:focus {
  box-shadow: none;
  border-color: #c1c1c1;
}
