/* 
   Oscaar Consultancy - Stylesheet
   Corporate Healthcare Recruitment Platform
   Author: Antigravity AI
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Root Variables --- */
:root {
  --primary-color: #0B5ED7;
  --secondary-color: #1E88E5;
  --bg-light: #F4F8FF;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --accent-light: #E0ECFF;
  --success-color: #198754;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --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(11, 94, 215, 0.08), 0 4px 6px -2px rgba(11, 94, 215, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(11, 94, 215, 0.12), 0 10px 10px -5px rgba(11, 94, 215, 0.04);
  --shadow-hover: 0 25px 40px -10px rgba(11, 94, 215, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family-headings: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
}

/* --- Global Reset & Scroll Behavior --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-family-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  color: var(--text-dark);
}

p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Sticky Header & Navbar --- */
/* ── Top Contact Bar ───────────────────────────────────────── */
.topbar {
  background: #091D3C;
  padding: 7px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover { color: #fff; }
.topbar .topbar-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
  margin: 0 10px;
  vertical-align: middle;
}

/* ── Main Navbar ───────────────────────────────────────────── */
.navbar-custom {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 94, 215, 0.10);
  transition: var(--transition-smooth);
  padding: 10px 0;
  z-index: 1050;
}

.navbar-custom.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(11,94,215,0.10);
  background: rgba(255, 255, 255, 0.99);
}

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

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

/* ── Nav Links ─────────────────────────────────────────────── */
.nav-link-custom {
  font-family: var(--font-family-headings);
  font-weight: 500;
  color: var(--text-dark) !important;
  font-size: 0.875rem;
  padding: 6px 11px !important;
  white-space: nowrap;
  position: relative;
  transition: var(--transition-smooth);
  letter-spacing: 0.01em;
}

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

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

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary-color) !important;
}

/* ── Dropdown ──────────────────────────────────────────────── */
.nav-dropdown .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(11,94,215,0.13);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  margin-top: 8px;
}
.nav-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--text-dark);
  transition: background 0.18s, color 0.18s;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item.active {
  background: var(--accent-light);
  color: var(--primary-color);
}
.nav-dropdown .dropdown-item i {
  width: 18px;
  text-align: center;
}

/* ── CTA Button in Nav ─────────────────────────────────────── */
.nav-cta-btn {
  background: var(--primary-color);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(11,94,215,0.25);
}
.nav-cta-btn:hover {
  background: #0a4cb5 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11,94,215,0.35);
}
.nav-cta-btn::after { display: none !important; }

/* ── Legacy phone link (keep for fallback) ─────────────────── */
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: var(--font-family-headings);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}
.nav-phone-link:hover { color: var(--primary-color); }
.nav-phone-icon {
  background-color: var(--accent-light);
  color: var(--primary-color);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.nav-phone-link:hover .nav-phone-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
}

/* --- Subpage Banner Header --- */
.subpage-header {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, #091D3C 0%, #0B5ED7 100%);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.subpage-header::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  top: -50px;
  right: -50px;
}

.subpage-header h1 {
  color: var(--bg-white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.breadcrumb-custom a {
  color: var(--bg-white);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumb-custom a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom .active {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Premium Buttons --- */
.btn-premium-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  border: none;
  padding: 12px 28px;
  font-family: var(--font-family-headings);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 94, 215, 0.4);
  color: var(--bg-white);
}

.btn-premium-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--accent-light);
  padding: 10px 28px;
  font-family: var(--font-family-headings);
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-premium-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--primary-color);
}

/* --- Hero Section --- */
.hero-section {
  padding: 160px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(224, 236, 255, 0.6) 0%, rgba(255, 255, 255, 1) 70%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '+';
  position: absolute;
  top: 15%;
  left: 5%;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(11, 94, 215, 0.05);
  font-family: var(--font-family-headings);
}

.hero-badge {
  background-color: var(--accent-light);
  color: var(--primary-color);
  font-family: var(--font-family-headings);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--text-gray);
  max-width: 620px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 94, 215, 0.15) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
}

.hero-image-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- Stats Grid --- */
.stats-container {
  margin-top: 50px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(224, 236, 255, 0.7);
  position: relative;
  z-index: 3;
}

.stat-card {
  text-align: center;
  padding: 10px 15px;
  border-right: 1px solid var(--accent-light);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-family-headings);
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* --- Section Design --- */
.section-padding {
  padding: 90px 0;
}

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

.section-tag {
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--font-family-headings);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* --- Card Styles (Glassmorphism & Micro-animations) --- */
.premium-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.7);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
  z-index: 2;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(11, 94, 215, 0.15);
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.premium-card:hover .card-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.08) rotate(5deg);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Values Cards --- */
.value-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.6);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}

/* --- Why Choose Us (Compact Layout) --- */
.feature-row {
  margin-top: 20px;
}

.feature-box {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.5);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.feature-box-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-box-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Specialties Grid (Aesthetic badges) --- */
.specialty-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.7);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.specialty-card:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.specialty-icon-container {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-icon-container {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

.specialty-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-name {
  color: var(--bg-white);
}

/* --- Split Sections: For Hospitals & For Doctors --- */
.split-card {
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(224, 236, 255, 0.5);
  transition: var(--transition-smooth);
}

.split-card-hospitals {
  background: linear-gradient(135deg, #ffffff 0%, #f1f6ff 100%);
}

.split-card-doctors {
  background: linear-gradient(135deg, #ffffff 0%, #edf9f2 100%);
  border-color: rgba(25, 135, 84, 0.1);
}

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

.split-card-hospitals:hover {
  border-color: rgba(11, 94, 215, 0.2);
}

.split-card-doctors:hover {
  border-color: rgba(25, 135, 84, 0.25);
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  margin: 25px 0 35px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefit-item i {
  font-size: 1.1rem;
}

.split-card-hospitals .benefit-item i {
  color: var(--primary-color);
}

.split-card-doctors .benefit-item i {
  color: var(--success-color);
}

.split-image-col {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 250px;
  margin-bottom: 25px;
}

.split-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-premium-success {
  background: linear-gradient(135deg, var(--success-color), #2bb168);
  color: var(--bg-white);
  border: none;
  padding: 12px 28px;
  font-family: var(--font-family-headings);
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-premium-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 135, 84, 0.35);
  color: var(--bg-white);
}

/* --- Timeline/Process Section --- */
.process-timeline {
  position: relative;
  padding-top: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 150px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-light);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--accent-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 24px;
  font-family: var(--font-family-headings);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .timeline-badge {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(11, 94, 215, 0.1);
}

.timeline-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  max-width: 160px;
  margin: 0 auto;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.7);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
  margin: 15px;
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: rgba(11, 94, 215, 0.08);
}

.star-rating {
  color: #FFC107;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-weight: 600;
  border: 2px solid var(--accent-light);
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-title {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Testimonial navigation buttons */
.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--accent-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.slider-nav-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

/* --- Industries Served / Partners list --- */
.industry-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.7);
  border-radius: var(--border-radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.industry-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 16px;
  transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.08);
}

.industry-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* --- Call To Action Section --- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #063990 0%, #0B5ED7 100%);
  position: relative;
  overflow: hidden;
  color: var(--bg-white);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  top: -100px;
  left: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
}

.cta-title {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

.btn-cta-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
  font-family: var(--font-family-headings);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
  background-color: transparent;
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-cta-outline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-family: var(--font-family-headings);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-cta-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- Contact Us Section --- */
.contact-info-card {
  background: linear-gradient(135deg, #091D3C 0%, #15325C 100%);
  color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 45px;
  height: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-info-title {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.08);
}

.contact-item-text h5 {
  color: var(--bg-white);
  font-size: 1rem;
  margin-bottom: 6px;
}

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

.contact-item-text a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-item-text a:hover {
  color: var(--secondary-color);
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid rgba(224, 236, 255, 0.7);
  border-radius: var(--border-radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.form-control-custom {
  background-color: var(--bg-light);
  border: 1px solid rgba(224, 236, 255, 0.8);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.15);
  color: var(--text-dark);
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* --- Social Icons & Links --- */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon-link:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer-section {
  background-color: #06162E;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 320px;
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

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

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-link-item a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

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

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--bg-white);
}

/* --- Popup Modal for interactive forms --- */
.modal-custom-content {
  border-radius: var(--border-radius-lg);
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(25, 135, 84, 0.1);
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-container {
    transform: none !important;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .stats-container {
    margin-top: 30px;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--accent-light);
    padding: 15px 0;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .process-timeline::before {
    display: none;
  }
  .timeline-step {
    margin-bottom: 40px;
  }
  .timeline-step:last-child {
    margin-bottom: 0;
  }
  .timeline-badge {
    margin-bottom: 15px;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }
  .contact-form-card, .contact-info-card {
    padding: 25px;
  }
  .split-card {
    padding: 30px 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
