/* ==========================================================================
   INDIAN ACADEMY DEGREE COLLEGE AUTONOMOUS (IADC) BANGALORE
   Master Stylesheet (Zero Framework Bloat / Pure Vanilla CSS)
   Aesthetic Architecture matching IAGI & IASMS High-Performance Design System
   Version: 3.4.2 (ExtraaEdge CRM Widget Form-2 Master Integration)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors (Exact match with desktop-banner.webp & mobile-banner.webp) */
  --color-brand-red: #E73140;
  --color-brand-red-dark: #C91D2C;
  --color-brand-red-light: #F04554;
  --color-brand-red-soft: #FEF2F2;

  --color-brand-purple: #350041;
  --color-brand-purple-dark: #22002B;
  --color-brand-purple-light: #520664;
  --color-brand-purple-soft: #FAF5FA;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-bg-light: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-focus: #350041;

  /* Typography Colors */
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-text-heading: #0F172A;

  /* State Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Typography Fonts */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-button: 'Poppins', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.18);
  --shadow-glow-red: 0 8px 24px rgba(245, 35, 57, 0.3);
  --shadow-glow-purple: 0 8px 24px rgba(53, 0, 65, 0.25);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Global Reset & Base Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-brand-purple);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-brand-red);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --------------------------------------------------------------------------
   3. HERO SECTION (#F52339 Brand Red)
   -------------------------------------------------------------------------- */
.hero-section {
  background-color: var(--color-brand-red);
  color: var(--color-white);
  padding: 32px 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Background animated vortex wave line field (Contained strictly within Hero) */
#waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

.logo-wrap {
  margin-bottom: 28px;
}

.main-logo {
  max-width: 330px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

/* Left Hero Column */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
  position: relative;
}

/* Student & Scholarship Branding Composition (Exact Match to Design) */
.hero-student-composition {
  position: relative;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  min-height: 540px;
  width: 100%;
}

.student-photo-wrapper {
  position: relative;
  z-index: 2;
  width: 50%;
  line-height: 0;
  margin-bottom: 0;
  flex-shrink: 0;
}

.student-cover-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  filter: drop-shadow(4px 10px 24px rgba(0, 0, 0, 0.22));
}

.branding-card-box {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 1;
  width: 66%;
  background: #FFFFFF;
  padding: 20px 24px 18px 105px;
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: none;
}

.card-scholarship-heading {
  margin-bottom: 14px;
}

.scholarship-title-main {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 31px;
  font-weight: 800;
  color: #2D0A3D;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.2px;
}

.scholarship-title-sub {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 800;
  color: #2D0A3D;
  line-height: 1.15;
  margin: 2px 0 0 0;
  letter-spacing: -0.2px;
}

.branding-lead-text {
  font-family: var(--font-sans);
  font-size: 21.5px;
  font-weight: 500;
  color: #1E293B;
  text-align: left;
  line-height: 1.38;
  margin: 0 0 18px 0;
}

.made-for-more-wrap {
  width: 100%;
  max-width: 255px;
  line-height: 0;
}

.made-for-more-badge {
  width: 100%;
  height: auto;
  display: block;
}

/* Right Hero Column: Admission Form Card Wrapper */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 530px;
  margin-left: auto;
}

/* Card Container */
.admission-card-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  max-width: 530px;
  margin: 0 0 0 auto;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.admission-card-wrapper:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Card Header */
.form-card-header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F9 50%, #F8FAFC 100%);
  padding: 18px 24px 14px 24px;
  border-bottom: none;
  text-align: center;
  position: relative;
}

/* Thin gradient accent line under header */
.form-card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F52339 20%, #350041 80%, transparent);
  opacity: 0.25;
  border-radius: 2px;
}

.form-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #FDF2F4, #FFF0F1);
  color: #F52339;
  border: 1px solid rgba(245, 35, 57, 0.18);
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(245, 35, 57, 0.08);
}

.badge-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #F52339;
  border-radius: 50%;
  animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 35, 57, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(245, 35, 57, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 35, 57, 0); }
}

.form-card-heading {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 4px 0;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.form-card-subheading {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #64748B;
  margin: 0;
  line-height: 1.4;
}

/* Card Body / Widget Mount Area */
.form-widget-container {
  padding: 16px 22px 14px 22px;
  background: #FFFFFF;
}

#ee-form-2,
#ee-form-1 {
  width: 100%;
  min-height: 380px;
  position: relative;
  background: transparent;
}

/* ==========================================================================
   ExtraaEdge CRM Widget - Clean, Robust Vendor-Compatible CSS Overrides
   ========================================================================== */
#ee-form-2 .ee-form-widget,
#ee-form-2 .ee-form-widget:not(.modal-content),
#ee-form-2 .ee-container,
#ee-form-2 .ee-form-widget-form,
#ee-form-1 .ee-form-widget,
#ee-form-1 .ee-form-widget:not(.modal-content),
#ee-form-1 .ee-container,
#ee-form-1 .ee-form-widget-form {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Hide Redundant Internal ExtraaEdge Headers & Developer Info */
#ee-form-2 .ee-form-heading,
#ee-form-2 .modal-header,
#ee-form-2 #ee-form-developer,
#ee-form-2 .ee-form-instruction,
#ee-form-2 .custom-floating-control-container,
#ee-form-2 .widget-loading-placeholder,
#ee-form-1 .ee-form-heading,
#ee-form-1 .modal-header,
#ee-form-1 #ee-form-developer,
#ee-form-1 .ee-form-instruction,
#ee-form-1 .custom-floating-control-container,
#ee-form-1 .widget-loading-placeholder {
  display: none !important;
}

/* Form Body Flex System */
#ee-form-2 .ee-form-body,
#ee-form-2 .ee-form-body.TWO_COLUMNS,
#ee-form-2 .ee-form-widget-form > div,
#ee-form-2 form,
#ee-form-1 .ee-form-body,
#ee-form-1 .ee-form-body.TWO_COLUMNS,
#ee-form-1 .ee-form-widget-form > div,
#ee-form-1 form {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  gap: 0 !important;
}

/* Form Rows Default Sizing (Full Width) */
#ee-form-2 .ee-row,
/* Form Rows Default Sizing (Full Width: Name, Mobile+OTP, Email, Program, Captcha, Footer) */
#ee-form-2 .ee-row,
#ee-form-1 .ee-row,
#ee-form-2 .ee-row.full-width,
#ee-form-2 .ee-row.col-15,
#ee-form-2 .ee-row.col-16,
#ee-form-2 .ee-row:has([type=tel]),
#ee-form-2 .ee-row:has([name*="mobile" i]),
#ee-form-2 .ee-row:has([name*="phone" i]),
#ee-form-2 .ee-row:has(.btn-send-otp),
#ee-form-2 .ee-row:has(#ee-send-otp-button-wrapper),
#ee-form-2 .ee-row:has([type=email]),
#ee-form-2 .ee-row:has([name*="email" i]),
#ee-form-2 .ee-row:has([name*="name" i]),
#ee-form-2 .ee-row.check-box-field,
#ee-form-2 .ee-row.radio-field,
#ee-form-2 .ee-form-footer,
#ee-form-2 .controls,
#ee-form-2 .btnContainer,
#ee-form-1 .ee-row,
#ee-form-1 .ee-row.full-width,
#ee-form-1 .ee-row.col-15,
#ee-form-1 .ee-row.col-16,
#ee-form-1 .ee-row:has([type=tel]),
#ee-form-1 .ee-row:has([name*="mobile" i]),
#ee-form-1 .ee-row:has([name*="phone" i]),
#ee-form-1 .ee-row:has(.btn-send-otp),
#ee-form-1 .ee-row:has(#ee-send-otp-button-wrapper),
#ee-form-1 .ee-row:has([type=email]),
#ee-form-1 .ee-row:has([name*="email" i]),
#ee-form-1 .ee-row:has([name*="name" i]),
#ee-form-1 .ee-row.check-box-field,
#ee-form-1 .ee-row.radio-field,
#ee-form-1 .ee-form-footer,
#ee-form-1 .controls,
#ee-form-1 .btnContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  position: relative !important;
  box-sizing: border-box !important;
  float: none !important;
}

/* 2-Column Side-by-Side Fields (ONLY State & City, Level & Institute) */
#ee-form-2 .ee-row.half-width-field,
#ee-form-2 .ee-row:has([name*="state" i]),
#ee-form-2 .ee-row:has([id*="state" i]),
#ee-form-2 .ee-row:has([placeholder*="state" i]),
#ee-form-2 .ee-row:has([aria-label*="state" i]),
#ee-form-2 .ee-row:has([name*="city" i]),
#ee-form-2 .ee-row:has([id*="city" i]),
#ee-form-2 .ee-row:has([placeholder*="city" i]),
#ee-form-2 .ee-row:has([aria-label*="city" i]),
#ee-form-2 .ee-row:has([name*="level" i]),
#ee-form-2 .ee-row:has([id*="level" i]),
#ee-form-2 .ee-row:has([placeholder*="level" i]),
#ee-form-2 .ee-row:has([aria-label*="level" i]),
#ee-form-2 .ee-row:has([name*="ArrE1" i]),
#ee-form-2 .ee-row:has([name*="institution" i]),
#ee-form-2 .ee-row:has([id*="institution" i]),
#ee-form-2 .ee-row:has([name*="institute" i]),
#ee-form-2 .ee-row:has([id*="institute" i]),
#ee-form-2 .ee-row:has([placeholder*="institution" i]),
#ee-form-2 .ee-row:has([placeholder*="institute" i]),
#ee-form-2 .ee-row:has([aria-label*="institution" i]),
#ee-form-2 .ee-row:has([name*="ArrE2" i]),
#ee-form-1 .ee-row.half-width-field,
#ee-form-1 .ee-row:has([name*="state" i]),
#ee-form-1 .ee-row:has([id*="state" i]),
#ee-form-1 .ee-row:has([placeholder*="state" i]),
#ee-form-1 .ee-row:has([aria-label*="state" i]),
#ee-form-1 .ee-row:has([name*="city" i]),
#ee-form-1 .ee-row:has([id*="city" i]),
#ee-form-1 .ee-row:has([placeholder*="city" i]),
#ee-form-1 .ee-row:has([aria-label*="city" i]),
#ee-form-1 .ee-row:has([name*="level" i]),
#ee-form-1 .ee-row:has([id*="level" i]),
#ee-form-1 .ee-row:has([placeholder*="level" i]),
#ee-form-1 .ee-row:has([aria-label*="level" i]),
#ee-form-1 .ee-row:has([name*="ArrE1" i]),
#ee-form-1 .ee-row:has([name*="institution" i]),
#ee-form-1 .ee-row:has([id*="institution" i]),
#ee-form-1 .ee-row:has([name*="institute" i]),
#ee-form-1 .ee-row:has([id*="institute" i]),
#ee-form-1 .ee-row:has([placeholder*="institution" i]),
#ee-form-1 .ee-row:has([placeholder*="institute" i]),
#ee-form-1 .ee-row:has([aria-label*="institution" i]),
#ee-form-1 .ee-row:has([name*="ArrE2" i]) {
  width: calc(50% - 6px) !important;
  max-width: calc(50% - 6px) !important;
  flex: 0 0 calc(50% - 6px) !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Hide and collapse all hidden, empty, or invisible rows and empty labels */
#ee-form-2 .ee-row.hidden,
#ee-form-2 .ee-row:empty,
#ee-form-2 .ee-row[style*="display: none"],
#ee-form-2 .ee-row[style*="display:none"],
#ee-form-2 .ee-row:has([style*="display: none"]:only-child),
#ee-form-2 .ee-row:has([style*="display:none"]:only-child),
#ee-form-2 .ee-row:has(.hidden:only-child),
#ee-form-2 .ee-row:has(input[type=hidden]:only-child),
#ee-form-2 label.error:empty,
#ee-form-1 .ee-row.hidden,
#ee-form-1 .ee-row:empty,
#ee-form-1 .ee-row[style*="display: none"],
#ee-form-1 .ee-row[style*="display:none"],
#ee-form-1 .ee-row:has([style*="display: none"]:only-child),
#ee-form-1 .ee-row:has([style*="display:none"]:only-child),
#ee-form-1 .ee-row:has(.hidden:only-child),
#ee-form-1 .ee-row:has(input[type=hidden]:only-child),
#ee-form-1 label.error:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  border: none !important;
}

#ee-form-2 .col-25,
#ee-form-2 .col-75,
#ee-form-1 .col-25,
#ee-form-1 .col-75 {
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Form Labels */
#ee-form-2 label,
#ee-form-2 .ee-form-widget label,
#ee-form-1 label,
#ee-form-1 .ee-form-widget label {
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}

#ee-form-2 .asterix,
#ee-form-2 .ee-form-widget .asterix,
#ee-form-1 .asterix,
#ee-form-1 .ee-form-widget .asterix {
  color: #F52339 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  margin-left: 2px !important;
  display: inline !important;
  position: static !important;
}

/* Inputs, Selects, and Textareas */
#ee-form-2 input:not([type=checkbox]):not([type=radio]):not([type=search]):not([type=tel]),
#ee-form-2 select,
#ee-form-2 textarea,
#ee-form-2 .ee-form-widget input:not([type=checkbox]):not([type=radio]):not([type=search]):not([type=tel]),
#ee-form-2 .ee-form-widget select,
#ee-form-2 .ee-form-widget textarea,
#ee-form-1 input:not([type=checkbox]):not([type=radio]):not([type=search]):not([type=tel]),
#ee-form-1 select,
#ee-form-1 textarea,
#ee-form-1 .ee-form-widget input:not([type=checkbox]):not([type=radio]):not([type=search]):not([type=tel]),
#ee-form-1 .ee-form-widget select,
#ee-form-1 .ee-form-widget textarea {
  display: block !important;
  width: 100% !important;
  height: 46px !important;
  padding: 10px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #0F172A !important;
  background-color: #FAFBFC !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  outline: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
  box-sizing: border-box !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

#ee-form-2 input::placeholder,
#ee-form-2 textarea::placeholder,
#ee-form-1 input::placeholder,
#ee-form-1 textarea::placeholder {
  color: #94A3B8 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

#ee-form-2 select,
#ee-form-2 .ee-form-widget select,
#ee-form-1 select,
#ee-form-1 .ee-form-widget select {
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 34px !important;
  background-color: #FAFBFC !important;
}

#ee-form-2 input:focus,
#ee-form-2 select:focus,
#ee-form-2 textarea:focus,
#ee-form-2 .ee-form-widget input:focus,
#ee-form-2 .ee-form-widget select:focus,
#ee-form-2 .ee-form-widget textarea:focus,
#ee-form-1 input:focus,
#ee-form-1 select:focus,
#ee-form-1 textarea:focus,
#ee-form-1 .ee-form-widget input:focus,
#ee-form-1 .ee-form-widget select:focus,
#ee-form-1 .ee-form-widget textarea:focus {
  border-color: #F52339 !important;
  box-shadow: 0 0 0 3.5px rgba(245, 35, 57, 0.12) !important;
  background-color: #FFFFFF !important;
  outline: none !important;
}

/* Phone & intlTelInput Flag Container & Send OTP Layout */
#ee-form-2 .inline-inputs,
#ee-form-2 .ee-form-widget .inline-inputs,
#ee-form-1 .inline-inputs,
#ee-form-1 .ee-form-widget .inline-inputs {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  position: relative !important;
}

/* The .iti wrapper (intlTelInput) */
#ee-form-2 .iti,
#ee-form-2 .iti.iti--allow-dropdown,
#ee-form-1 .iti,
#ee-form-1 .iti.iti--allow-dropdown {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  position: relative !important;
  display: block !important;
}

/* Phone input - High specificity left padding to clear flag container completely */
#ee-form-2 input[type=tel],
#ee-form-2 .iti input[type=tel],
#ee-form-2 .iti input,
#ee-form-2 .iti--allow-dropdown input,
#ee-form-2 .iti--separate-dial-code input,
#ee-form-2 .inline-inputs input[type=tel],
#ee-form-2 .inline-inputs input:not([type=checkbox]):not([type=radio]):not([type=search]):not(.countryCode-input),
#ee-form-1 input[type=tel],
#ee-form-1 .iti input[type=tel],
#ee-form-1 .iti input,
#ee-form-1 .iti--allow-dropdown input,
#ee-form-1 .iti--separate-dial-code input,
#ee-form-1 .inline-inputs input[type=tel],
#ee-form-1 .inline-inputs input:not([type=checkbox]):not([type=radio]):not([type=search]):not(.countryCode-input) {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 96px !important;
  padding-right: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #0F172A !important;
  background-color: #FAFBFC !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

#ee-form-2 input[type=tel]:focus,
#ee-form-2 .iti input:focus,
#ee-form-1 input[type=tel]:focus,
#ee-form-1 .iti input:focus {
  border-color: #F52339 !important;
  box-shadow: 0 0 0 3.5px rgba(245, 35, 57, 0.12) !important;
  background-color: #FFFFFF !important;
}

#ee-form-2 .countryCode-input + input,
#ee-form-1 .countryCode-input + input {
  flex: 1 1 auto !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  padding-left: 14px !important;
  margin-left: 0 !important;
}

#ee-form-2 .iti__flag-container,
#ee-form-1 .iti__flag-container {
  z-index: 5 !important;
}

#ee-form-2 .iti__selected-flag,
#ee-form-1 .iti__selected-flag {
  padding: 0 4px 0 8px !important;
  background-color: #F5F6F8 !important;
  border-right: 1.5px solid #D1D9E2 !important;
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
  height: 42px !important;
  width: 84px !important;
  max-width: 84px !important;
  display: flex !important;
  align-items: center !important;
}

#ee-form-2 .iti__selected-dial-code,
#ee-form-1 .iti__selected-dial-code {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  margin-left: 4px !important;
}

#ee-form-2 .countryCode-input,
#ee-form-2 .ee-form-widget .countryCode-input,
#ee-form-1 .countryCode-input,
#ee-form-1 .ee-form-widget .countryCode-input {
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 46px !important;
  text-align: center !important;
  padding: 0 4px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  background: #F5F6F8 !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  flex-shrink: 0 !important;
}

#ee-form-2 #ee-send-otp-button-wrapper,
#ee-form-1 #ee-send-otp-button-wrapper {
  margin: 0 !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  display: flex !important;
}

/* Reduced, Compact Send OTP Button */
#ee-form-2 .btn-send-otp,
#ee-form-2 .ee-form-widget .btn-send-otp,
#ee-form-2 #ee-send-otp-button-wrapper button,
#ee-form-2 #ee-send-otp-button-wrapper .btn,
#ee-form-1 .btn-send-otp,
#ee-form-1 .ee-form-widget .btn-send-otp,
#ee-form-1 #ee-send-otp-button-wrapper button,
#ee-form-1 #ee-send-otp-button-wrapper .btn {
  height: 40px !important;
  padding: 0 13px !important;
  min-width: 82px !important;
  background: linear-gradient(135deg, #F52339 0%, #D91A30 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(245, 35, 57, 0.22) !important;
  opacity: 1 !important;
}

#ee-form-2 .btn-send-otp:hover:not(:disabled),
#ee-form-2 #ee-send-otp-button-wrapper button:hover:not(:disabled),
#ee-form-1 .btn-send-otp:hover:not(:disabled),
#ee-form-1 #ee-send-otp-button-wrapper button:hover:not(:disabled) {
  background: linear-gradient(135deg, #D91A30 0%, #B81528 100%) !important;
  box-shadow: 0 4px 12px rgba(245, 35, 57, 0.32) !important;
  transform: translateY(-1px) !important;
}

#ee-form-2 .btn-send-otp.disabled,
#ee-form-2 .btn-send-otp:disabled,
#ee-form-2 #ee-send-otp-button-wrapper button:disabled,
#ee-form-1 .btn-send-otp.disabled,
#ee-form-1 .btn-send-otp:disabled,
#ee-form-1 #ee-send-otp-button-wrapper button:disabled {
  background: linear-gradient(135deg, #F52339 0%, #D91A30 100%) !important;
  color: #FFFFFF !important;
  opacity: 0.85 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transform: none !important;
}

#ee-form-2 .btn-send-otp[isverified="true"],
#ee-form-1 .btn-send-otp[isverified="true"] {
  background: linear-gradient(135deg, #10B981, #059669) !important;
  color: #FFFFFF !important;
  cursor: default !important;
  opacity: 1 !important;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3) !important;
}

/* Submit Button & Footer Actions */
#ee-form-2 .ee-form-footer,
#ee-form-2 .controls,
#ee-form-1 .ee-form-footer,
#ee-form-1 .controls {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  display: block !important;
  padding: 0 !important;
}

#ee-form-2 .btn.btn-submit,
#ee-form-2 button[type=submit],
#ee-form-2 .ee-form-widget .btn.btn-submit,
#ee-form-2 .ee-form-widget .btn.btn-feedback-control,
#ee-form-1 .btn.btn-submit,
#ee-form-1 button[type=submit],
#ee-form-1 .ee-form-widget .btn.btn-submit,
#ee-form-1 .ee-form-widget .btn.btn-feedback-control {
  width: 100% !important;
  height: 48px !important;
  background: linear-gradient(135deg, #F52339 0%, #D91A30 50%, #B81528 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0 24px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(245, 35, 57, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 6px 0 0 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

#ee-form-2 .btn.btn-submit:hover,
#ee-form-2 button[type=submit]:hover,
#ee-form-2 .ee-form-widget .btn.btn-submit:not(:disabled):hover,
#ee-form-2 .ee-form-widget .btn.btn-feedback-control:not(:disabled):hover,
#ee-form-1 .btn.btn-submit:hover,
#ee-form-1 button[type=submit]:hover,
#ee-form-1 .ee-form-widget .btn.btn-submit:not(:disabled):hover,
#ee-form-1 .ee-form-widget .btn.btn-feedback-control:not(:disabled):hover {
  background: linear-gradient(135deg, #D91A30 0%, #B81528 50%, #9E1222 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(245, 35, 57, 0.45) !important;
}

#ee-form-2 .btn.disabled,
#ee-form-2 .ee-form-widget .btn.disabled,
#ee-form-2 button:disabled,
#ee-form-1 .btn.disabled,
#ee-form-1 .ee-form-widget .btn.disabled,
#ee-form-1 button:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Captcha Container & Alignment */
#ee-form-2 .captchaContainer,
#ee-form-2 .ee-form-widget .captchaContainer,
#ee-form-1 .captchaContainer,
#ee-form-1 .ee-form-widget .captchaContainer {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 2px 0 !important;
  padding: 0 !important;
}

#ee-form-2 .captchaContainer .cpatcha,
#ee-form-1 .captchaContainer .cpatcha {
  display: inline-flex !important;
  align-items: center !important;
  height: 46px !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  background: #F5F6F8 !important;
  padding: 0 10px !important;
  flex-shrink: 0 !important;
}

#ee-form-2 .captchaContainer canvas,
#ee-form-1 .captchaContainer canvas {
  height: 32px !important;
  width: 100px !important;
  display: block !important;
}

#ee-form-2 .captchaContainer .divider,
#ee-form-1 .captchaContainer .divider {
  width: 1px !important;
  height: 24px !important;
  background: #CBD5E1 !important;
  margin: 0 6px !important;
}

#ee-form-2 .captchaContainer .refreshButtonContainer,
#ee-form-1 .captchaContainer .refreshButtonContainer {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: #FFFFFF !important;
  border: 1.5px solid #D1D9E2 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
}

#ee-form-2 .captchaContainer .refreshButtonContainer:hover,
#ee-form-1 .captchaContainer .refreshButtonContainer:hover {
  background: #FFF0F1 !important;
  border-color: #F52339 !important;
  transform: rotate(90deg) !important;
}

#ee-form-2 .captchaContainer .ee-row,
#ee-form-2 .captchaContainer .col-75,
#ee-form-1 .captchaContainer .ee-row,
#ee-form-1 .captchaContainer .col-75 {
  flex: 1 1 auto !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
}

#ee-form-2 .captchaContainer input,
#ee-form-2 .captchaContainer .col-75 input,
#ee-form-1 .captchaContainer input,
#ee-form-1 .captchaContainer .col-75 input {
  height: 46px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 10px 14px !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* DND Permission & Consent Checkbox - Clean Minimal UI (No Background Box / Seamless) */
#ee-form-2 .check-box-field,
#ee-form-1 .check-box-field {
  margin: 6px 0 2px 0 !important;
  padding: 2px 2px 4px 2px !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#ee-form-2 .check-box-field:hover,
#ee-form-1 .check-box-field:hover {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#ee-form-2 .check-box-field label,
#ee-form-1 .check-box-field label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 450 !important;
  color: #475569 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.1px !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  user-select: none !important;
}

#ee-form-2 .check-box-field input[type=checkbox],
#ee-form-1 .check-box-field input[type=checkbox] {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  max-width: 17px !important;
  margin: 1px 0 0 0 !important;
  padding: 0 !important;
  accent-color: #F52339 !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  flex-shrink: 0 !important;
}

/* Existing User Login Link & Clean Hover Styling */
#ee-form-2 .btnContainer,
#ee-form-1 .btnContainer {
  display: flex !important;
  justify-content: center !important;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  width: 100% !important;
  background: transparent !important;
}

#ee-form-2 .form-btn,
#ee-form-2 .btn-login,
#ee-form-2 .btn-link,
#ee-form-2 .btn-forget-password,
#ee-form-2 .btnContainer *,
#ee-form-2 .ee-form-login-footer .form-btn,
#ee-form-1 .form-btn,
#ee-form-1 .btn-login,
#ee-form-1 .btn-link,
#ee-form-1 .btn-forget-password,
#ee-form-1 .btnContainer *,
#ee-form-1 .ee-form-login-footer .form-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #F52339 !important;
  text-decoration: underline !important;
  cursor: pointer !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 8px !important;
  transition: color 0.2s ease, opacity 0.2s ease !important;
  outline: none !important;
}

#ee-form-2 .form-btn:hover,
#ee-form-2 .btn-login:hover,
#ee-form-2 .btn-link:hover,
#ee-form-2 .btn-forget-password:hover,
#ee-form-2 .btnContainer *:hover,
#ee-form-2 .ee-form-login-footer .form-btn:hover,
#ee-form-1 .form-btn:hover,
#ee-form-1 .btn-login:hover,
#ee-form-1 .btn-link:hover,
#ee-form-1 .btn-forget-password:hover,
#ee-form-1 .btnContainer *:hover,
#ee-form-1 .ee-form-login-footer .form-btn:hover {
  color: #B81528 !important;
  text-decoration: underline !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  opacity: 0.9 !important;
}

/* Validation Errors */
#ee-form-2 .in-valid,
#ee-form-2 .in-valid:focus,
#ee-form-2 .ee-form-widget .in-valid,
#ee-form-1 .in-valid,
#ee-form-1 .in-valid:focus,
#ee-form-1 .ee-form-widget .in-valid {
  border-color: #F52339 !important;
  box-shadow: 0 0 0 2px rgba(245, 35, 57, 0.18) !important;
  background-color: #FFF8F8 !important;
}

#ee-form-2 label.error,
#ee-form-2 .ee-form-widget label.error,
#ee-form-1 label.error,
#ee-form-1 .ee-form-widget label.error {
  color: #F52339 !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  margin: 3px 0 0 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Select2 Plugin Overrides (Inside Form) */
#ee-form-2 .select2-container,
#ee-form-1 .select2-container {
  width: 100% !important;
}

#ee-form-2 .select2-container--default .select2-selection--single,
#ee-form-1 .select2-container--default .select2-selection--single {
  height: 46px !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  background-color: #FAFBFC !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}

#ee-form-2 .select2-container--default.select2-container--open .select2-selection--single,
#ee-form-1 .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #F52339 !important;
  box-shadow: 0 0 0 3.5px rgba(245, 35, 57, 0.1) !important;
}

#ee-form-2 .select2-container--default .select2-selection--single .select2-selection__rendered,
#ee-form-1 .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px !important;
  padding-left: 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  color: #0F172A !important;
}

#ee-form-2 .select2-container--default .select2-selection--single .select2-selection__arrow,
#ee-form-1 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px !important;
  right: 10px !important;
}

/* ==========================================================================
   Global Select2 Dropdown & OTP / Feedback Modal Popup Styling
   ========================================================================== */
.select2-dropdown {
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16) !important;
  background: #FFFFFF !important;
  z-index: 999999 !important;
  overflow: hidden !important;
}

.select2-search--dropdown {
  padding: 10px !important;
}

.select2-search--dropdown .select2-search__field {
  height: 40px !important;
  border: 1.5px solid #D1D9E2 !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #F52339 !important;
}

.select2-results__option {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  color: #1E293B !important;
  padding: 10px 14px !important;
  transition: background 0.15s ease !important;
}

.select2-results__option--highlighted[aria-selected] {
  background-color: #F52339 !important;
  color: #FFFFFF !important;
}

.select2-results__option[aria-selected=true] {
  background-color: #FFF0F1 !important;
  color: #D91A30 !important;
  font-weight: 600 !important;
}

/* OTP Verification Modal & Dialogs */
.jquery-modal.blocker,
.modal.ee-form-widget,
.modal.ee-form-widget-enter-otp {
  z-index: 999999 !important;
}

.jquery-modal.blocker {
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  padding: 16px !important;
}

/* Main Modal Window (Single Clean Card) */
.jquery-modal .modal,
.jquery-modal .modal.ee-form-widget,
.jquery-modal .modal.ee-form-widget-enter-otp {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28) !important;
  max-width: 400px !important;
  width: 92% !important;
  padding: 32px 26px 26px 26px !important;
  border: none !important;
  text-align: center !important;
  position: relative !important;
  box-sizing: border-box !important;
}

/* Reset Inner Nested Containers & Remove Ghost Layers */
.ee-form-widget-enter-otp,
.ee-form-widget-enter-otp .modal-dialog,
.ee-form-widget-enter-otp .modal-content,
.ee-form-widget-enter-otp .modal-body,
.ee-form-widget-enter-otp .modal-footer,
.ee-form-widget-enter-otp .otp-popup-footer,
.modal.ee-form-widget .modal-dialog,
.modal.ee-form-widget .modal-content,
.modal.ee-form-widget .modal-body,
.modal.ee-form-widget .modal-footer,
.modal.ee-form-widget .otp-popup-footer {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
}

/* Modal Title */
.ee-form-widget-enter-otp .modal-header,
.modal.ee-form-widget .modal-header {
  border: none !important;
  padding: 0 0 4px 0 !important;
  display: block !important;
  text-align: center !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ee-form-widget-enter-otp .modal-header strong,
.modal.ee-form-widget .modal-header strong,
.ee-form-widget-enter-otp h3,
.ee-form-widget-enter-otp h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  display: block !important;
  text-align: center !important;
  margin: 0 0 6px 0 !important;
}

/* Modal Body & Instructions */
.ee-form-widget-enter-otp .modal-body,
.modal.ee-form-widget .modal-body {
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.ee-form-widget-enter-otp .modal-body .body,
.ee-form-widget-enter-otp .instruction {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  color: #475569 !important;
  margin: 6px 0 16px 0 !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

/* Text Links (Change Number, Resend OTP) */
.ee-form-widget-enter-otp .btn-feedback-control,
.ee-form-widget-enter-otp .modal-body .btn-feedback-control,
.ee-form-widget-enter-otp .resend-btn-container .btn-feedback-control,
.ee-form-widget-enter-otp .btn-link,
.ee-form-widget-enter-otp button.btn-feedback-control,
.ee-form-widget-enter-otp a.btn-feedback-control {
  background: transparent !important;
  background-color: transparent !important;
  color: #F52339 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-bottom: 1.5px solid #F52339 !important;
  padding: 0 1px !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  display: inline-block !important;
  margin: 0 0 0 4px !important;
  outline: none !important;
  transition: color 0.2s ease, border-color 0.2s ease !important;
}

.ee-form-widget-enter-otp .btn-feedback-control:hover,
.ee-form-widget-enter-otp .modal-body .btn-feedback-control:hover,
.ee-form-widget-enter-otp .resend-btn-container .btn-feedback-control:hover {
  color: #B81528 !important;
  border-color: #B81528 !important;
  text-decoration: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* OTP 4-Box Input Container */
.ee-form-widget-enter-otp .otp-input-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 18px 0 12px 0 !important;
}

.ee-form-widget-enter-otp .otp-input[type=number],
.ee-form-widget-enter-otp input.otp-input {
  width: 50px !important;
  height: 52px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0F172A !important;
  text-align: center !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 10px !important;
  background: #F8FAFC !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.ee-form-widget-enter-otp .otp-input[type=number]:focus,
.ee-form-widget-enter-otp input.otp-input:focus {
  border-color: #F52339 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 3.5px rgba(245, 35, 57, 0.12) !important;
}

/* Single Clean Verify OTP Button (No Double Layer / No Ghost Layer) */
.ee-form-widget-enter-otp button,
.ee-form-widget-enter-otp .btn-verify-otp,
.ee-form-widget-enter-otp .btn-submit,
.ee-form-widget-enter-otp .modal-footer .btn,
.ee-form-widget-enter-otp .otp-popup-footer .btn {
  background: linear-gradient(135deg, #F52339 0%, #D91A30 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  height: 48px !important;
  padding: 0 24px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  width: 100% !important;
  margin: 16px 0 0 0 !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 14px rgba(245, 35, 57, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  outline: none !important;
}

.ee-form-widget-enter-otp button:hover:not(:disabled),
.ee-form-widget-enter-otp .btn-verify-otp:hover:not(:disabled),
.ee-form-widget-enter-otp .btn-submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #D91A30 0%, #B81528 100%) !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(245, 35, 57, 0.38) !important;
  transform: translateY(-1px) !important;
}

/* Resend Container & Timer */
.ee-form-widget-enter-otp .resend-btn-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 14px !important;
  background: transparent !important;
}

.ee-form-widget-enter-otp .timer-display {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #94A3B8 !important;
}

/* Status / Error Messages */
.ee-form-widget-enter-otp .otp-error {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  margin-top: 8px !important;
  text-align: center !important;
}

.ee-form-widget-enter-otp .otp-error.failed-message {
  color: #F52339 !important;
}

.ee-form-widget-enter-otp .otp-error.success-message {
  color: #10B981 !important;
}

/* Modal Close Button (High Reliability SVG Cross Icon) */
.jquery-modal .close-modal,
.jquery-modal a.close-modal,
.jquery-modal .modal a.close-modal,
.ee-form-widget-enter-otp .close,
.modal.ee-form-widget .close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background-color: #F1F5F9 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  color: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  border: none !important;
  cursor: pointer !important;
  text-decoration: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
  z-index: 999 !important;
  display: block !important;
  box-shadow: none !important;
}

.jquery-modal .close-modal:hover,
.jquery-modal a.close-modal:hover,
.jquery-modal .modal a.close-modal:hover,
.ee-form-widget-enter-otp .close:hover,
.modal.ee-form-widget .close:hover {
  background-color: #FEE2E2 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F52339' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") !important;
}

/* --------------------------------------------------------------------------
   4. ACCREDITATION / METRICS HIGHLIGHT BAR (#350041 Deep Purple)
   -------------------------------------------------------------------------- */
.accreditation-bar {
  background-color: var(--color-brand-purple);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 0;
  position: relative;
  z-index: 10;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.accreditation-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  color: var(--color-white);
  position: relative;
}

.accreditation-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.22);
}

.accreditation-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FECDD3;
  flex-shrink: 0;
}

.accreditation-content strong {
  display: block;
  font-size: 17.5px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.accreditation-content span {
  font-size: 13.5px;
  color: #E2E8F0;
}

/* --------------------------------------------------------------------------
   5. THE IAGI BADGE SCHOLARSHIP PROGRAM (White Background)
   -------------------------------------------------------------------------- */
.scholarship-section {
  padding: 70px 0 125px 0;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 860px;
  margin: 0 auto;
}

.section-pill {
  display: inline-block;
  background: var(--color-brand-red-soft);
  color: var(--color-brand-red);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text-heading);
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--color-brand-purple);
  font-weight: 700;
  font-size: 26px;
  display: block;
}

.section-description {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.scholarship-cta-note {
  margin-top: 14px;
  font-size: 15px;
  color: var(--color-brand-purple);
  font-weight: 600;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. RED CAREER BANNER SECTION WITH OVERLAPPING BADGES (Exact Screenshot Layout)
   -------------------------------------------------------------------------- */
.career-banner-section {
  background-color: #E73140;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
}

/* Centered Overlapping Badges Group (Exact 50% on White / 50% on Red) */
.badges-container-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.badges-overlap-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: -80px auto 8px auto;
  position: relative;
  z-index: 10;
  max-width: 720px;
  width: auto;
}

.badges-overlap-container.reveal-item,
.badges-overlap-container.reveal-scale,
.badges-overlap-container.is-revealed {
  transform: none !important;
}

.badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  line-height: 0;
}

.overlap-badge-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
  transition: transform var(--transition-normal);
}

.badge-item:hover .overlap-badge-img {
  transform: scale(1.08) translateY(-4px);
}

.badge-divider-line {
  width: 1px;
  height: 118px;
  background: rgba(0, 0, 0, 0.22);
  margin: 0 6px;
}

/* Career Banner Wrapper (Seamless 0-Seam Blend & 0px Bottom Margin) */
.banner-inner-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
  margin-bottom: 0;
}

.banner-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}

.banner-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  filter: none;
  box-shadow: none;
  border: none;
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Disclaimer Row */
.disclaimer-row {
  padding: 18px 24px;
  text-align: center;
  background-color: #FAF5FA;
  border-top: 1px solid #F1E6F1;
}

.disclaimer-row p {
  font-size: 13.5px;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   7. CONTACT & SISTER INSTITUTIONS (IAGI 2-Column Standard)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 60px 0 50px 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-col {
  position: relative;
}

.divider-right-desktop::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background-color: var(--color-border);
}

.footer-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-brand-purple);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.contact-address {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.contact-email-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--color-brand-purple);
}

.contact-email-row svg {
  color: var(--color-brand-red);
}

.contact-link {
  font-weight: 600;
  color: var(--color-brand-purple);
}

.contact-link:hover {
  color: var(--color-brand-red);
  text-decoration: underline;
}

.contact-helpline p {
  font-size: 14.5px;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.phone-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 14px;
}

.phone-link-grid a,
.helpline-sub-row a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-brand-purple);
  transition: color var(--transition-fast);
}

.phone-link-grid a:hover,
.helpline-sub-row a:hover {
  color: var(--color-brand-red);
  text-decoration: underline;
}

.helpline-sub-row {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.whatsapp-chat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #075E54;
  font-weight: 600;
  margin-top: 4px;
  transition: color 0.2s ease;
}

.whatsapp-chat-link svg {
  color: #25D366;
}

.whatsapp-chat-link:hover {
  color: #25D366;
  text-decoration: underline;
}

.office-timings {
  font-size: 13.5px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 6px;
}

/* Institutions List */
.institutions-list {
  list-style: none;
  margin-bottom: 24px;
}

.institutions-list li {
  margin-bottom: 10px;
}

.institutions-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 15px;
  color: var(--color-text-main);
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
  transition: all var(--transition-fast);
}

.institutions-list a:hover {
  color: var(--color-brand-purple);
  padding-left: 4px;
  text-decoration: none;
}

.arrow-icon {
  color: var(--color-text-light);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.institutions-list a:hover .arrow-icon {
  transform: translateX(4px);
  color: var(--color-brand-red);
}

.share-wrap {
  margin-top: 14px;
}

.share-btn-img {
  max-width: 148px;
  height: auto;
  transition: transform var(--transition-fast);
}

.share-btn-img:hover {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   8. COPYRIGHT BAR (#350041)
   -------------------------------------------------------------------------- */
.copyright-bar {
  background-color: var(--color-brand-purple);
  color: rgba(255, 255, 255, 0.9);
  padding: 20px 0;
  font-size: 13.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-sub {
  color: #FECDD3;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   9. FLOATING WHATSAPP ADMISSIONS WIDGET
   -------------------------------------------------------------------------- */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-popup {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.whatsapp-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.popup-header {
  background: #075E54;
  color: var(--color-white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.counselor-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #4ADE80;
  border: 2px solid #075E54;
  border-radius: 50%;
}

.counselor-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
}

.counselor-info span {
  font-size: 11px;
  opacity: 0.85;
}

.close-popup-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.close-popup-btn:hover {
  color: var(--color-white);
}

.popup-body {
  padding: 16px;
}

.popup-body p {
  font-size: 13px;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 14px;
}

.popup-start-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-white);
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  transition: background-color var(--transition-fast);
}

.popup-start-chat-btn:hover {
  background: #1EBE5D;
  color: var(--color-white);
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
  text-decoration: none;
}

.whatsapp-pulse-halo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-full);
  border: 2px solid #25D366;
  animation: waHalo 2s infinite;
  pointer-events: none;
}

@keyframes waHalo {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* --------------------------------------------------------------------------
   10. ACCESSIBLE THANK YOU MODAL
   -------------------------------------------------------------------------- */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 20px;
}

.thank-you-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.thank-you-card {
  background: var(--color-white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-normal);
}

.thank-you-modal.is-open .thank-you-card {
  transform: translateY(0) scale(1);
}

.thank-you-icon {
  margin-bottom: 16px;
}

.thank-you-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-heading);
  margin-bottom: 10px;
}

.thank-you-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-close-btn {
  background: var(--color-brand-purple);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-brand-red);
}

/* --------------------------------------------------------------------------
   11. CUSTOM TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.custom-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.custom-toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 420px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--transition-normal);
}

.custom-toast.toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.custom-toast.toast-hiding {
  transform: translateX(120%);
  opacity: 0;
}

.toast-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.toast-icon-box {
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-text-box {
  flex-grow: 1;
}

.toast-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 2px;
}

.toast-message {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
}

.toast-close-btn:hover {
  color: var(--color-text-main);
}

.toast-progress-bar {
  height: 3px;
  background: var(--color-brand-purple);
  width: 100%;
  animation: toastProgress linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

.custom-toast-success .toast-progress-bar { background: #10B981; }
.custom-toast-error .toast-progress-bar { background: #EF4444; }
.custom-toast-warning .toast-progress-bar { background: #F59E0B; }

/* --------------------------------------------------------------------------
   12. DUAL-LAYER CUSTOM CURSOR (Desktop Only)
   -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-brand-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast), height var(--transition-fast), background-color var(--transition-fast);
  }

  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(245, 35, 57, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast), height var(--transition-fast), border-color var(--transition-fast);
  }

  .custom-cursor-ring.is-hovering {
    width: 48px;
    height: 48px;
    border-color: rgba(53, 0, 65, 0.6);
    background-color: rgba(53, 0, 65, 0.05);
  }
}

/* --------------------------------------------------------------------------
   13. SLOW, ULTRA-SMOOTH BI-DIRECTIONAL ON-SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

/* --------------------------------------------------------------------------
   14. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .accreditation-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .accreditation-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-section {
    padding-top: 24px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-student-composition {
    min-height: 440px;
    margin-bottom: 24px;
  }

  .student-photo-wrapper {
    width: 48%;
  }

  .branding-card-box {
    width: 68%;
    bottom: 16px;
    padding: 16px 16px 14px 78px;
  }

  .scholarship-title-main {
    font-size: 25px;
  }

  .scholarship-title-sub {
    font-size: 22.5px;
  }

  .branding-lead-text {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .made-for-more-wrap {
    max-width: 200px;
  }

  .scholarship-section {
    padding: 55px 0 105px 0;
  }

  .career-banner-section {
    padding: 0;
    margin: 0;
  }

  .badges-overlap-container {
    max-width: 580px;
    margin: -66px auto 6px auto;
    gap: 0;
  }

  .overlap-badge-img {
    width: 132px;
    height: 132px;
  }

  .badge-divider-line {
    height: 96px;
  }

  .desktop-only { display: none; }
  .mobile-only { display: flex; }

  .banner-img {
    max-width: 640px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .divider-right-desktop::after {
    display: none;
  }

  .copyright-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-title span {
    font-size: 20px;
  }

  .hero-student-composition {
    min-height: 360px;
    margin-bottom: 18px;
  }

  .student-photo-wrapper {
    width: 50%;
  }

  .branding-card-box {
    width: 70%;
    bottom: 10px;
    padding: 12px 10px 10px 56px;
  }

  .scholarship-title-main {
    font-size: 18.5px;
  }

  .scholarship-title-sub {
    font-size: 16.5px;
  }

  .branding-lead-text {
    font-size: 13.5px;
    margin-bottom: 9px;
  }

  .made-for-more-wrap {
    max-width: 140px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .scholarship-section {
    padding: 45px 0 85px 0;
  }

  .admission-form {
    padding: 22px 18px;
  }

  .badges-overlap-container {
    max-width: 380px;
    margin: -49px auto 4px auto;
  }

  .overlap-badge-img {
    width: 98px;
    height: 98px;
  }

  .badge-item {
    padding: 0 4px;
  }

  .badge-divider-line {
    height: 68px;
    margin: 0 2px;
  }

  .banner-img {
    max-width: 100%;
  }

  .accreditation-grid {
    grid-template-columns: 1fr;
  }

  .accreditation-item::after {
    display: none;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-btn {
    padding: 12px;
    border-radius: 50%;
  }

  .whatsapp-popup {
    width: 290px;
    right: -10px;
  }
}

/* ==========================================================================
   Quick Facts & AIO Knowledge Grounding Grid (IADC Autonomous)
   ========================================================================== */
.quick-facts-section {
  padding: 56px 0 44px 0;
  background-color: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.section-header-compact {
  max-width: 780px;
  margin: 0 auto 36px auto;
}

.section-pill-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E73140;
  background-color: rgba(231, 49, 64, 0.08);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.facts-section-title,
.faq-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}

.facts-section-subtitle,
.faq-section-subtitle {
  font-size: 15px;
  color: #64748B;
  line-height: 1.5;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fact-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -6px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.fact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(53, 0, 65, 0.08);
  color: #350041;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
}

.fact-value {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.fact-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.4;
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.faq-section {
  padding: 56px 0 60px 0;
  background-color: #FFFFFF;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: #CBD5E1;
  box-shadow: 0 4px 14px -3px rgba(15, 23, 42, 0.06);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: #64748B;
  transition: transform 0.25s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: #E73140;
}

.faq-summary:hover {
  background-color: #F8FAFC;
  color: #350041;
}

.faq-content {
  padding: 0 22px 20px 22px;
  border-top: 1px solid #F1F5F9;
  background-color: #FAFAFA;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  padding-top: 14px;
}

.faq-answer a {
  color: #E73140;
  font-weight: 600;
}

.faq-answer strong {
  color: #0F172A;
}

@media (max-width: 991px) {
  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .facts-section-title,
  .faq-section-title {
    font-size: 22px;
  }

  .faq-summary {
    padding: 15px 16px;
    font-size: 14px;
  }

  .faq-content {
    padding: 0 16px 16px 16px;
  }
}