/* ==========================================================================
   ISLAMIC NET GLOBAL EDUCATION - MAIN STYLESHEET
   Visual Identity: Deep Navy Blue, Royal Blue, Bright Blue, Cyan, White
   ========================================================================== */

:root {
  /* Brand Palette - Deep Navy, Royal & Cyan Blue */
  --color-navy-dark: #07132B;
  --color-navy-main: #0B1B3D;
  --color-navy-light: #152C5B;
  
  --color-royal-dark: #1E3A8A;
  --color-royal-main: #2563EB;
  --color-royal-light: #3B82F6;
  
  --color-cyan-accent: #0284C7;
  --color-cyan-light: #38BDF8;
  --color-cyan-glow: rgba(56, 189, 248, 0.25);
  
  --color-bg-light: #F0F6FF;
  --color-bg-card: #FFFFFF;
  --color-bg-soft: #EBF3FE;
  
  --color-text-dark: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;
  
  --color-border-light: #E2E8F0;
  --color-border-accent: #BFDBFE;
  
  /* Status Colors (Adhering to theme) */
  --status-new: #0284C7;
  --status-pending: #2563EB;
  --status-approved: #0B1B3D;
  --status-completed: #1E3A8A;
  --status-cancelled: #64748B;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(11, 27, 61, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 27, 61, 0.08), 0 2px 4px rgba(11, 27, 61, 0.04);
  --shadow-lg: 0 10px 25px rgba(11, 27, 61, 0.12), 0 4px 10px rgba(11, 27, 61, 0.06);
  --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.2);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-quran: 'Amiri', 'Traditional Arabic', serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--color-royal-main);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-cyan-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-bg-white {
  background-color: #FFFFFF;
}

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

.section-bg-navy {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy-main) 100%);
  color: var(--color-text-white);
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-royal-main);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-bg-navy .section-badge {
  background-color: rgba(56, 189, 248, 0.15);
  color: var(--color-cyan-light);
  border-color: rgba(56, 189, 248, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--color-navy-main);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-bg-navy .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--color-text-muted);
}

.section-bg-navy .section-subtitle {
  color: #CBD5E1;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--color-navy-dark);
  color: #CBD5E1;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #CBD5E1;
  font-size: 0.85rem;
  white-space: nowrap;
}

.top-bar-item a {
  color: #CBD5E1;
}

.top-bar-item a:hover {
  color: var(--color-cyan-light);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-bar-social a {
  color: #94A3B8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

.top-bar-social a:hover {
  color: #FFFFFF;
  background-color: var(--color-royal-main);
  transform: translateY(-2px);
}

/* Main Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.15rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: contain;
  border: 2px solid var(--color-royal-main);
  background: #FFFFFF;
  flex-shrink: 0;
  display: block;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-navy-main);
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--color-royal-main);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-navy-light);
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-royal-main);
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-royal-main);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-menu-cta {
  display: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-royal-main) 0%, var(--color-royal-dark) 100%);
  color: #FFFFFF;
  border-color: var(--color-royal-main);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-royal-dark) 0%, var(--color-navy-main) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cyan {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
}

.btn-cyan:hover {
  background: linear-gradient(135deg, #0369A1 0%, var(--color-navy-main) 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-royal-main);
  color: var(--color-royal-main);
}

.btn-outline:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--color-royal-dark);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-whatsapp {
  background-color: #075E54;
  color: #FFFFFF;
  border-color: #075E54;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-navy-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* Cards & Grid Containers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-accent);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(7, 94, 84, 0.35);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.45);
  color: #FFFFFF;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(18, 140, 126, 0.5);
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #07132B 0%, #0B1B3D 50%, #152C5B 100%);
  color: #FFFFFF;
  padding: 5rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-pill);
  color: var(--color-cyan-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.hero-headline span {
  background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #94A3B8;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--color-cyan-light);
}

.hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.hero-badge-float {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(11, 27, 61, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-royal-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.hero-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.2;
}

.hero-badge-label {
  font-size: 0.8rem;
  color: var(--color-cyan-light);
  font-weight: 500;
}

/* Curved Divider */
.curved-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: var(--color-navy-dark);
}

.curved-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.curved-divider .shape-fill {
  fill: var(--color-bg-light);
}

/* Forms Styling */
.form-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: #F8FAFC;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-royal-main);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Confirmation / Alert Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(7, 19, 43, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: all 0.3s ease;
  position: relative;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--color-royal-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy-main);
  margin-bottom: 0.75rem;
}

.modal-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.modal-app-id {
  background-color: var(--color-bg-soft);
  border: 1px dashed var(--color-border-accent);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-royal-dark);
  margin-bottom: 1.75rem;
  display: inline-block;
}

/* ==========================================================================
   PREMIUM MASTER FOOTER STYLING
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, #061026 0%, #030814 100%);
  color: #CBD5E1;
  padding: 0 0 2rem 0;
  margin-top: auto;
  border-top: 2px solid rgba(6, 182, 212, 0.25);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.6), transparent);
}

/* Footer CTA Banner */
.footer-cta-banner {
  padding-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-cta-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.footer-cta-badge {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #38BDF8;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.footer-cta-text {
  color: #94A3B8;
  font-size: 0.95rem;
  margin: 0;
  max-width: 580px;
}

.footer-cta-action {
  flex-shrink: 0;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.45);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-brand .logo-brand {
  margin-bottom: 1rem;
}

.footer-col-brand .logo-title {
  color: #FFFFFF;
}

.footer-tagline {
  color: #38BDF8;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2px;
}

.footer-about {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: 0.3px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 36px;
  height: 2.5px;
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.925rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #38BDF8;
  transform: translateX(5px);
}

.footer-link-highlight a {
  color: #38BDF8;
  font-weight: 700;
}

.footer-link-highlight a:hover {
  color: #FFFFFF;
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.3);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon.whatsapp-icon-bg {
  background: rgba(34, 197, 94, 0.15);
  color: #4ADE80;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.footer-contact-label {
  font-size: 0.725rem;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-contact-val {
  font-size: 0.875rem;
  color: #F1F5F9;
  font-weight: 600;
  word-break: break-word;
  transition: color 0.2s ease;
}

.footer-contact-val:hover {
  color: #38BDF8;
}

/* Social Media */
.footer-social-wrapper {
  margin-top: 1.5rem;
}

.footer-social-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.08);
  background: var(--color-royal-main);
  color: #FFFFFF;
  border-color: var(--color-royal-main);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.footer-social-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #64748B;
}

.footer-copyright strong {
  color: #94A3B8;
}

.footer-project-tag {
  color: #38BDF8;
  font-weight: 600;
  margin-left: 0.25rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #38BDF8;
}

.footer-divider {
  color: #334155;
  font-size: 0.75rem;
}

/* ==========================================================================
   PREMIUM REDESIGNED COURSE CARDS STYLING
   ========================================================================== */
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 20px rgba(11, 27, 61, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(11, 27, 61, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.course-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.course-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--color-royal-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
  overflow: hidden;
}

.course-card:hover .course-icon-container {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--color-royal-main), var(--color-royal-dark));
  color: #FFFFFF;
  border-color: var(--color-royal-dark);
}

.course-icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.course-category-badge {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: #E0F2FE;
  color: #0284C7;
  border: 1px solid #BAE6FD;
  display: inline-block;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-navy-main);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.course-card-desc {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.course-meta-box {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: #475569;
}

.course-meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--color-royal-main);
  flex-shrink: 0;
}

.course-meta-item strong {
  color: var(--color-navy-main);
  font-weight: 600;
}

.course-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Contact Page Specific Channel Cards */
.contact-section-title {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}

.contact-channel-card {
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}

.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-royal-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-details {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-channel-label {
  display: block;
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 0.15rem;
}

.contact-channel-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-main);
  display: inline-block;
  max-width: 100%;
}

.contact-email-link {
  font-size: 0.98rem;
  overflow-wrap: break-word;
  word-break: break-all;
}

.contact-social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.contact-social-links a {
  color: var(--color-royal-main);
}

.contact-social-links a:hover {
  color: var(--color-cyan-accent);
}

/* new banner */

/* ==========================================================================
   PURE CLEAN & TRANSPARENT VIDEO HERO CSS
   ========================================================================== */

.hero-clean-video {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4.5rem 1.5rem;
  background-color: #020617; /* Dark Base */
}

/* Video Wrapper */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05); /* Natural Crisp Video Glow */
}

/* Vignette Overlay (Only Darkens edges slightly so video stays visible) */
.hero-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(2, 6, 23, 0.25) 0%, rgba(2, 6, 23, 0.75) 100%),
              linear-gradient(to bottom, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.6) 100%);
  z-index: 2;
}

/* Centered Transparent Content Layout */
.hero-clean-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Top Badge */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 8px #f59e0b;
}

/* Crisp Clean Typography */
.hero-title-sharp {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9); /* Text pop effect */
}

.text-gold-gradient {
  background: linear-gradient(135deg, #f59e0b 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc-clean {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #f1f5f9;
  line-height: 1.65;
  margin: 0 auto 2.25rem auto;
  max-width: 750px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* CTA Buttons */
.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn-gold-solid {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.65);
}

.btn-white-border {
  background: rgba(15, 23, 42, 0.5);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-white-border:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Bottom Trust Indicators */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.trust-point svg {
  color: #38bdf8;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-clean-video {
    min-height: 80vh;
    padding: 3rem 1rem;
  }

  .desktop-only {
    display: none;
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .btn-gold-solid, 
  .btn-white-border {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* foundercss */
/* ==========================================================================
   FOUNDER SECTION STYLING (FULL PICTURE PRESERVATION)
   ========================================================================== */

/* Outer Card Container */
.founder-card {
  background: var(--color-white, #ffffff);
  border-radius: var(--radius-xl, 20px);
  padding: 3.5rem 3rem;
  border: 1px solid var(--color-border-light, #e2e8f0);
  box-shadow: 0 15px 35px rgba(11, 27, 61, 0.06);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

/* Image Wrapper and Frame */
.founder-image-wrapper {
  position: relative;
  width: 100%;
}

.founder-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 27, 61, 0.12);
  border: 2px solid rgba(37, 99, 235, 0.15); /* Soft Royal Blue Border */
  background-color: #f8fafc;
}

/* Image Fit & Aspect Ratio Control */
.founder-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Ensures 100% picture is visible without cutting */
  transition: transform 0.4s ease;
}

.founder-img-frame:hover .founder-img {
  transform: scale(1.02);
}

/* Floating Name Tag Under Image */
.founder-badge {
  background: var(--color-navy-main, #0b1b3d);
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 10px 20px rgba(11, 27, 61, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.badge-sub {
  display: block;
  font-size: 0.825rem;
  color: var(--color-gold-accent, #fbbf24);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Right Content Styling */
.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-royal-main, #2563eb);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.founder-quote-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--color-navy-main, #0b1b3d);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.quote-symbol {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.15);
  margin-bottom: -1.75rem;
  user-select: none;
}

.founder-quote-text {
  color: var(--color-text-muted, #475569);
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.btn-founder {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  border-radius: 12px;
}

/* ==========================================================================
   RESPONSIVE FIXES (MOBILE & TABLET)
   ========================================================================== */

@media (max-width: 991px) {
  .founder-card {
    padding: 2.5rem 1.75rem;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-image-wrapper {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .founder-card {
    padding: 1.75rem 1.25rem;
  }

  .founder-badge {
    width: 92%;
    padding: 0.75rem 1rem;
  }

  .badge-title {
    font-size: 1.05rem;
  }

  .founder-quote-title {
    font-size: 1.35rem;
  }

  .btn-founder {
    width: 100%;
    justify-content: center;
  }
}

/* vediocss */
/* ==========================================================================
   DIRECT DEMO VIDEO PLAYER (FULL RESPONSIVE & HIGH QUALITY)
   ========================================================================== */

.demo-video-wrapper {
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

.demo-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Guarantees no distortion on laptop & mobile */
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background-color: #000000;
}

.demo-direct-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: none;
}

/* Controls Custom Focus Shadow */
.demo-direct-video:focus {
  outline: none;
}

/* Mobile Responsiveness Guard */
@media (max-width: 768px) {
  .demo-video-wrapper {
    padding: 0 0.5rem;
  }

  .demo-video-card {
    border-radius: 12px;
    border-width: 1px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
}

.contact-content-section {
  padding: 4rem 1rem;
  background-color: #F8FAFC;
}

.contact-card-centered {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
}

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

.contact-header-box {
  margin-bottom: 2.5rem;
}

.contact-header-box .sub-heading-tag {
  display: inline-block;
  background: #E0F2FE;
  color: #0369A1;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-header-box h2 {
  font-family: var(--font-heading, serif);
  font-size: 2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.contact-header-box p {
  color: #64748B;
  font-size: 1rem;
}

.contact-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.01);
}

.contact-channel-card:hover {
  transform: translateY(-3px);
  border-color: #0284C7;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.contact-channel-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Solid Vibrant Backgrounds for High Visibility Icons */
.whatsapp-vip-bg { background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%); }
.email-vip-bg { background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%); }
.social-vip-bg { background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%); }

.contact-channel-details {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-grow: 1;
}

.contact-channel-label {
  font-size: 0.8rem;
  color: #64748B;
  margin-bottom: 0.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-channel-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  transition: color 0.2s;
}

.contact-channel-card:hover .contact-channel-value {
  color: #0284C7;
}

.card-arrow {
  font-size: 1.25rem;
  color: #CBD5E1;
  font-weight: bold;
  transition: transform 0.2s, color 0.2s;
}

.contact-channel-card:hover .card-arrow {
  transform: translateX(4px);
  color: #0284C7;
}

.contact-social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}

.social-badge {
  background: #F1F5F9;
  color: #0F172A;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  transition: all 0.2s;
}

.social-badge:hover {
  background: #0F172A;
  color: #fff;
  border-color: #0F172A;
}

.btn-whatsapp-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #25D366;
  color: white;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-vip:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .contact-card-centered {
    padding: 1.5rem;
  }
  .contact-channel-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .contact-channel-details {
    align-items: center;
    text-align: center;
  }
  .contact-social-links {
    justify-content: center;
  }
  .card-arrow {
    display: none;
  }
}
