@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #f8fafc; /* Clean Light Canvas Background */
  --card-bg: #ffffff; /* White background for cards */
  --card-hover-bg: #f1f5f9;
  --text-main: #090d16; /* Deep black-slate for primary headings on light bg */
  --text-secondary: #1e293b; /* Deep charcoal for paragraphs and body */
  --text-muted: #475569; /* Slate-600 for secondary elements */
  --border-color: #e2e8f0; /* Soft grey border */
  --border-hover-color: #cbd5e1; /* Darker border on hover */
  --accent-color: #c5a059; /* Warm Gold as primary accent */
  --accent-secondary: #a7823b; /* Darker Gold for typography links */
  --accent-gradient: linear-gradient(135deg, #c5a059, #f3d090); /* Champagne Gold Gradient */
  --button-hover-gradient: linear-gradient(135deg, #a7823b, #c5a059);
  --shadow-color: rgba(15, 23, 42, 0.04); /* Light card shadow */
  --shadow-hover-color: rgba(15, 23, 42, 0.08);
  --divider-color: #e2e8f0;
  
  /* Brand Blue Accent colors (retained for light elements to ensure high contrast & brand identity) */
  --blue-accent: #0077b6;
  --blue-accent-gradient: linear-gradient(135deg, #0077b6, #00b4d8);
  --blue-accent-glow: rgba(0, 119, 182, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.7;
  position: relative;
}

/* Hide background orbs */
.bg-orbs {
  display: none;
}

/* Custom Scrollbar for Light Theme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

/* Sticky Navbar Header - DARK panel with black shadow and gold text */
nav.navbar {
  width: 100%;
  background: #090d16; /* Deep black/dark background */
  border-bottom: 1px solid rgba(197, 160, 89, 0.15); /* Golden border tint */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #d4af37; /* Golden brand name text */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #94a3b8; /* Muted slate for dark navbar links */
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: #d4af37; /* Golden text on hover */
  background: rgba(197, 160, 89, 0.08);
}

.nav-contact-btn {
  background: linear-gradient(135deg, #c5a059, #f3d090); /* Keep navbar button gold */
  color: #080c14; /* Dark text for gold button */
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-contact-btn:hover {
  background: linear-gradient(135deg, #a7823b, #c5a059);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.3);
}

/* Contact Details Bar (positioned below sticky navbar, light style) */
.contact-header-bar {
  width: calc(100% - 40px);
  max-width: 1200px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 28px;
  margin: 25px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px var(--shadow-color);
  z-index: 10;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-item i {
  color: var(--blue-accent); /* Original Blue icons */
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--blue-accent); /* Original Blue links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #00b4d8; /* Bright blue hover */
  text-decoration: underline;
}

.contact-item span strong {
  color: var(--text-main);
  font-weight: 600;
}

/* Main Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px 60px; /* Adjusted padding since hero is outside */
  display: flex;
  flex-direction: column;
  gap: 60px;
  z-index: 10;
}

/* Full Width Light Hero Section */
.hero-section {
  width: 100%;
  background: var(--bg-color); /* Light Background */
  padding: 60px 20px;
  border-bottom: 1px solid var(--border-color); /* Soft grey bottom border */
  animation: fadeIn 0.8s ease-out;
  display: flex;
  justify-content: center;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  background: rgba(30, 64, 175, 0.08);
  color: #3b82f6;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(30, 64, 175, 0.2);
}

.hero-content-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; /* Adjusted smaller heading font-size */
  font-weight: 700;
  color: var(--text-main); /* Dark text on light background */
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-content-left h2 span {
  color: #3b82f6; /* Bright Royal Blue for "Digital Future" */
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary); /* Darker text for light background */
  line-height: 1.8;
  font-weight: 400;
  max-width: 95%;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.hero-btn {
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.hero-btn.primary-btn {
  background: linear-gradient(135deg, #1e40af, #2563eb); /* Explicit Blue gradient */
  color: #ffffff; /* White text on blue button */
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.35);
}

.hero-btn.primary-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.45);
}

.hero-btn.secondary-btn {
  background: #25d366; /* WhatsApp Green */
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.hero-btn.secondary-btn:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.hero-content-right {
  display: flex;
  justify-content: center;
}

.hero-visual-frame {
  background: var(--card-bg); /* White background frame */
  border: 1px solid var(--border-color); /* Soft grey border */
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px var(--shadow-hover-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
  max-width: 380px;
  transition: border-color 0.3s;
}

.hero-visual-frame:hover {
  border-color: var(--border-hover-color);
}

.hero-logo {
  height: 130px;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 8px;
  background: #ffffff;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 64, 175, 0.05); /* Soft blue background badge */
  border: 1px solid rgba(30, 64, 175, 0.15);
  padding: 12px 16px;
  border-radius: 6px;
  width: 100%;
}

.trust-badge i {
  color: #1e40af;
  font-size: 1.4rem;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
}

.trust-badge div strong {
  font-size: 0.85rem;
  color: #1e40af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge div span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Division Cards Grid */
.divisions-section {
  width: 100%;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.division-card {
  background: #090d16; /* Black/Dark Background for all cards */
  border: 1px solid rgba(197, 160, 89, 0.15); /* Gold border tint */
  border-radius: 6px;
  padding: 50px 35px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.division-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(197, 160, 89, 0.6);
}

.division-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(197, 160, 89, 0.12); /* Gold background tint */
  color: var(--accent-color); /* Gold color */
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header-icon {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: rgba(197, 160, 89, 0.08); /* Gold background icon */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color); /* Gold Icons for cards */
  font-size: 1.5rem;
  border: 1.5px solid rgba(197, 160, 89, 0.25);
  transition: all 0.3s ease;
}

.division-card:hover .card-header-icon {
  background: var(--accent-gradient);
  color: #090d16; /* Dark text on gold background */
  border-color: transparent;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent-color); /* Golden heading color */
}

.card-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.card-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.card-features-list li i {
  color: var(--accent-color);
  margin-top: 4px;
  font-size: 0.85rem;
}

/* Blue Action Buttons for Cards */
.card-action-btn {
  width: 100%;
  background: var(--accent-gradient); /* Gold Gradient */
  border: none;
  border-radius: 6px;
  padding: 15px;
  color: #090d16; /* Dark text on gold */
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.card-action-btn:hover {
  background: var(--button-hover-gradient);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35);
}

/* Secondary Button for Coming Soon Card */
.card-action-btn.secondary-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: #94a3b8; /* Muted light grey text */
  box-shadow: none;
}

.card-action-btn.secondary-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
  border-color: var(--border-hover-color);
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fef3c7; /* Light amber/gold tint */
  color: #b45309;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #fde68a;
}

/* Section Title Heading */
.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

.section-title span {
  color: var(--accent-color); /* Blue color for title span highlights */
  font-style: italic;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2.5px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 80px;
}

/* Left-aligned title underlines */
.section-title[style*="text-align: left"]::after,
.section-title[style*="text-align:left"]::after {
  left: 0;
  transform: none;
}

/* Founder Profile Section */
.founder-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.founder-img-wrapper {
  flex-shrink: 0;
  position: relative;
}

.founder-img-wrapper::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  border-radius: 6px;
  border: 1.5px solid var(--blue-accent);
  z-index: -1;
  transition: all 0.3s ease;
  opacity: 0.3;
}

.founder-section:hover .founder-img-wrapper::after {
  top: 5px;
  left: 5px;
  right: -5px;
  bottom: -5px;
  opacity: 0.7;
}

.founder-img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-tag {
  color: var(--blue-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--blue-accent);
  width: fit-content;
  padding-bottom: 2px;
}

.founder-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.founder-info h3 span {
  color: var(--blue-accent);
  font-style: italic;
}

.founder-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  border-left: 3px solid var(--border-color);
  padding-left: 20px;
  text-align: justify;
}

.founder-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s;
  border: 1px solid var(--border-color);
}

.social-btn:hover {
  background: var(--blue-accent-gradient);
  color: #ffffff; /* White text on blue background */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--blue-accent-glow);
  border-color: transparent;
}

/* Why Choose Us Section */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.why-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.why-info h3 span {
  color: var(--blue-accent);
  font-style: italic;
}

.why-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--blue-accent);
  box-shadow: 0 8px 20px var(--shadow-hover-color);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue-accent); /* Blue stats */
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature-item {
  display: flex;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: all 0.2s ease;
}

.why-feature-item:hover {
  transform: translateX(4px);
  border-color: var(--blue-accent);
  box-shadow: 0 8px 20px var(--shadow-hover-color);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(0, 119, 182, 0.05);
  color: var(--blue-accent); /* Blue icons */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(0, 119, 182, 0.15);
}

.why-feature-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.why-feature-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Client Logos Marquee - colorful/ujjval */
.marquee-container {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px 0;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.marquee-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
}

.logo-track {
  display: flex;
  width: calc(160px * 32);
  animation: scrollMarquee 40s linear infinite;
  gap: 30px;
}

.logo-track img {
  height: 65px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: none; /* Colorful/ujjval logos */
  opacity: 1; /* Bright logos */
  transition: all 0.3s ease;
}

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

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-160px * 16)); }
}

/* Footer */
footer {
  width: 100%;
  background: #0f172a; /* Keep footer dark for baseline anchoring */
  border-top: 1px solid var(--border-color);
  padding: 30px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: auto;
  z-index: 10;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

footer a:hover {
  color: #f3d090;
  text-decoration: underline;
}

/* Floating Contact Widget */
.floating-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.phone {
  background: var(--card-bg);
  color: var(--accent-color);
  border: 1px solid var(--border-color);
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* CSS Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Coming Soon Modal overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 20, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.custom-modal {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 6px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  animation: modalScale 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.custom-modal i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.custom-modal h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.custom-modal p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.modal-close-btn {
  background: var(--accent-gradient);
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
}

.modal-close-btn:hover {
  background: var(--button-hover-gradient);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  nav.navbar {
    padding: 12px 10px;
  }
  .nav-links {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }
  .hero-badge {
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual-frame {
    margin: 0 auto;
  }
  .founder-section {
    flex-direction: column;
    text-align: center;
    padding: 35px 24px;
  }
  .founder-img-wrapper::after {
    display: none;
  }
  .founder-info {
    align-items: center;
  }
  .founder-bio {
    border-left: none;
    border-top: 1.5px solid var(--border-color);
    padding-left: 0;
    padding-top: 16px;
  }
  .why-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .contact-header-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    margin-top: 15px;
  }
  .hero-content-left h2 {
    font-size: 2.2rem;
  }
  .hero-btn {
    width: 100%;
    justify-content: center;
  }
  .floating-widget {
    bottom: 15px;
    right: 15px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
