/* 
  Digimaster Academy - MNC v2 + Bootstrap 5.3 Integration 
  Brand: Orange Focus, High-End Layout, Grid Perfection
  Author: Antigravity AI
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@700;800;900&display=swap");

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body.modal-open {
  overflow: hidden !important;
}

html:has(body.modal-open) {
  overflow: hidden !important;
}

:root {
  --primary: #ff6a00;
  --primary-light: #ff8533;
  --primary-dark: #e65f00;
  --primary-gradient: linear-gradient(135deg, #ff6a00 0%, #ff9d5c 100%);
  --secondary: #0a0a0a;
  --dark-surface: #121212;
  --bg-white: #ffffff;
  --bg-light: #fbfbfb;
  --text-dark: #121212;
  --text-light: #f5f5f5;
  --text-muted: #757575;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-intense: 0 40px 80px rgba(0, 0, 0, 0.15);
  --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Bootstrap Overrides & Global Reset */
/* Typography v3.0 */
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  background-color: var(--bg-white);
  overflow-x: hidden;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
}

h1,
h2,
h3,
h4,
.display-1,
.display-2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.025em;
}

.display-1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.display-2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.display-3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.display-4 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

/* Section Spacing MNC Standard */
.section-padding {
  padding: 120px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Glassmorphism Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}



/* Sticky Header Evolution */
@media (min-width: 992px) {
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 0;
    z-index: 1030;
    transition: var(--transition-base);
    padding: 12px 0;
  }

  header .nav-link {
    color: #333333 !important;
    font-size: 0.95rem;
    font-weight: 500;
  }

  header .nav-link:hover,
  header .nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
  }

  header .logo img {
    filter: none !important;
    height: 40px !important;
  }

  /* Scrolled State (Exact Match to Screenshot): Black Header, White Text, 2px Solid Orange Border, Inverted White Logo */
  header.navbar-scrolled {
    top: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary) !important;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  header.navbar-scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
  }

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

  header.navbar-scrolled .logo img {
    filter: brightness(0) invert(1) !important;
    height: 38px !important;
  }

  /* Desktop Header Layout Adjustments */
  header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .app-badges img {
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .app-badges img:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 5px 15px rgba(255, 106, 0, 0.2));
  }
}


/* Custom Hero v2 */
.hero-v2 {
  background-color: var(--secondary);
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  min-height: 50vh;
}

.hero-promo-badge {
  background: var(--primary-gradient);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-premium-glow {
  background: transparent;
  border: 2px solid var(--primary);
  color: white !important;
  padding: 16px 45px;
  border-radius: 12px;
  font-weight: 800;
  /* font-size: 1.1rem; */
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-slow);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

.btn-premium-glow:hover {
  background: var(--primary);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.5);
  transform: scale(1.05);
}

/* Premium MNC Cards */
/* Premium MNC Components v3.0 */
.card-v3 {
  background: var(--bg-white);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-bounce);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card-v3:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-intense);
  border-color: rgba(255, 106, 0, 0.2);
}

.glass-premium {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
}

/* Buttons Evolution */
.btn-premium {
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-slow);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium-primary {
  background: var(--primary-gradient);
  color: white !important;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.btn-premium-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 106, 0, 0.4);
  color: white !important;
  filter: brightness(1.1);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn-premium-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(5px);
}

.btn-premium-outline:hover {
  background: white;
  color: var(--primary) !important;
  border-color: white;
}

/* Sticky Premium Header */
/* Form v3.0 (filling sections) */
.form-v3 .form-control {
  background: #f8f9fa !important;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  padding: 18px 24px !important;
  transition: var(--transition-base) !important;
}

.form-v3 .form-control:focus {
  border-color: var(--primary) !important;
  background: white !important;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.1) !important;
}

/* Scroll Pattern Backgrounds */
.bg-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.bg-grid-white {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* FAQ Upgrade */
/* .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.accordion-button {
  background: #fbfbfb !important;
  padding: 24px !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background: white !important;
  box-shadow: none !important;
} */

/* Layout Consistency Fixes */
/* .container {
  max-width: 1300px;
}

.ls-2 {
  letter-spacing: 2px;
}
.fw-black {
  font-weight: 900;
}
.ls-1 {
  letter-spacing: 1px;
} */

@media (max-width: 991px) {
  body {
    padding-top: 60px;
    /* Space for top brand bar */
    padding-bottom: 100px;
    /* Space for floating bottom nav */
  }

  /* Top Brand Bar (Logo on Left, Badges on Right) */
  .mobile-brand-bar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    /* Space out logo and badges */
    padding: 0 15px;
    z-index: 1030;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  }

  .mobile-brand-bar .app-badges img {
    height: 26px !important;
    /* Smaller for mobile top bar */
  }

  /* Bottom Split Nav */
  header.navbar {
    position: fixed !important;
    bottom: 25px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    height: 65px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 50px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    z-index: 1030 !important;
    transform: none !important;
    display: flex !important;
    overflow: hidden !important;
  }

  .nav-container {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }

  /* Black Toggler Box */
  .navbar-toggler-wrapper {
    background: #000;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .navbar-toggler {
    padding: 0 !important;
    filter: invert(1) brightness(2);
    /* Make icon visible on black */
  }

  /* CTA Section (Enquiry) */
  .bottom-nav-cta {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    text-decoration: none !important;
    transition: background 0.3s;
  }

  .bottom-nav-cta:active {
    background: #e9ecef;
  }

  .bottom-nav-cta span {
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Floating Pop-up Menu (Zoho Style) */
  .navbar-collapse {
    position: fixed !important;
    bottom: 100px !important;
    left: 20px !important;
    right: auto !important;
    width: 300px !important;
    max-width: calc(100vw - 30px) !important;
    height: auto !important;
    max-height: 70vh !important;
    background: #fff !important;
    z-index: 2400 !important;
    overflow-y: auto !important;
    padding: 25px 20px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;
    border-radius: 16px !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0 !important;
    transform: scale(0.9) translateY(20px) !important;
    visibility: hidden !important;
    display: block !important;
    /* Keep in DOM for transition */
  }

  .navbar-collapse.show {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
  }

  .navbar-collapse.collapsing {
    opacity: 0.5 !important;
    transform: scale(0.95) translateY(10px) !important;
    transition: all 0.3s ease-out !important;
  }

  .navbar-nav {
    text-align: left !important;
  }

  .nav-link {
    color: #333 !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #f8f9fa;
    text-transform: none !important;
  }

  /* Active Toggler Icon change (X icon) */
  .navbar-toggler-wrapper:has(.navbar-toggler[aria-expanded="true"]) {
    background: #fff !important;
    border-right: 1px solid #eee;
  }

  .navbar-toggler[aria-expanded="true"] {
    background: #fff !important;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    content: "×";
    /* High-visibility Unicode multiplication sign */
    font-family: inherit;
    font-weight: 400;
    color: #000 !important;
    font-size: 2.2rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    line-height: 1;
  }

  .navbar-toggler-icon {
    transition: all 0.3s;
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Hide redundant elements on mobile */
  header .logo {
    display: none !important;
  }

  /* Fix Reveal for small screens */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Move floating WhatsApp above menu */
  .float-whatsapp {
    bottom: 105px !important;
    right: 20px !important;
    width: 55px !important;
    height: 55px !important;
  }

  /* Reduce Banner Space on Mobile */
  .hero-v2 {
    padding: 5px 0 50px !important;
    margin-top: 50px;
  }

  .hero-v2 .display-1 {
    line-height: 1.1 !important;
  }
}

/* Infinite Logo Slider v3.1 - Design Overhaul */
.section-tech-logos {
  background: linear-gradient(135deg, #fff 100% 0%, #fff 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.logo-slider {
  padding: 20px 0;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
  position: relative;
  width: 100%;
}


.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  will-change: transform;
  /* Hardware Acceleration */
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-slide img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.02));
  /* Subtle pop */
  opacity: 0.9;
  transition: var(--transition-base);
}

.logo-slide:hover img {
  opacity: 1;
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.2));
}

@media (max-width: 768px) {
  .logo-track {
    gap: 60px;
  }

  .logo-slide img {
    height: 40px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 120px;
  }
}

/* <!============ Why Top Firms Choose Us =====================> */

.section-vibrant-edge {
  background-color: var(--bg-light);
  padding: 80px 0;
}

/* Vibrant Header Badge */
.badge-vibrant {
  background: var(--primary-gradient);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.2);
}

/* Compact Grid Layout */
.vibrant-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Reduced Height from 280px to 210px */
  grid-template-rows: repeat(2, 210px);
  gap: 20px;
}

/* Card Core Styling */
.vibrant-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 30px;
  /* Reduced padding */
  border: 1px solid rgba(255, 106, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.vibrant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.1);
  border-color: var(--primary-light);
}

/* Height & Spacing Control */
.card-main {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

.card-square {
  grid-column: span 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Vibrant Icon Gradients */
.icon-accent {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}

.icon-accent-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

/* Different Color Themes for Cards */
.gradient-1 {
  background: var(--primary-gradient);
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
}

.gradient-2 {
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

.gradient-3 {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

/* Typography Logic */
.text-vibrant-muted {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
  /* Slightly smaller text for compact height */
}

.card-main h3 {
  font-size: 1.8rem;
}

.card-wide h3 {
  font-size: 1.4rem;
}

/* Visual Decoration */
.corner-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle,
      rgba(255, 106, 0, 0.1) 0%,
      transparent 70%);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .vibrant-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .card-main,
  .card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .vibrant-bento-grid {
    grid-template-columns: 1fr;
  }

  .card-main,
  .card-wide,
  .card-square {
    grid-column: span 1;
    padding: 25px;
  }
}

/* <!============ Course Card Section =====================> */

/* Section Styles */
.badge-premium {
  background: rgba(255, 106, 0, 0.08);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.text-primary-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Core Design */
.premium-course-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-bounce);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-course-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-intense);
  border-color: rgba(255, 106, 0, 0.2);
}

/* Image & Icon Wrapper */
.course-img-wrapper {
  position: relative;
  height: auto;
  overflow: hidden;
}

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

.premium-course-card:hover .course-img-wrapper img {
  transform: scale(1.1);
}

/* Top Left Icon Overlay */
.top-left-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
  z-index: 2;
}

/* Card Body Footer Layout */
.course-content-footer {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* Aligns text bottom and button bottom */
}

.course-info {
  flex: 1;
}

.course-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.course-version {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Premium Button Style */
.btn-course {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-base);
  white-space: nowrap;
  /* Prevents text wrap on mobile */
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.15);
}

.btn-course:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.25);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .course-content-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .course-action {
    width: 100%;
  }

  .btn-course {
    width: 100%;
    text-align: center;
  }
}

/* <!============ Start Your Elite Journey Section =====================> */

/* Section Base */
.section-consultation {
  background-color: var(--secondary);
  padding: 50px 0;
}

.glow-bg-accent {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(255, 106, 0, 0.12) 0%,
      transparent 70%);
  pointer-events: none;
}

.discount-text {
  color: var(--primary) !important;
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* App Mockup Different Style */
.app-mockup-container {
  position: relative;
  width: 100%;
  max-width: 370px;
  margin-top: 20px;
  perspective: 1000px;
}

.app-phone-frame {
  width: 200px;
  height: 380px;
  background: #000;
  border: 8px solid #1a1a1a;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  transform: rotateY(0deg) scale(1.05);
  transition: var(--transition-bounce);
}

.app-mockup-container:hover .app-phone-frame {
  transform: rotateY(0deg) scale(1.05);
}

.app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-premium);
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1s;
}

.badge-3 {
  top: 40%;
  right: 0;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Premium Form Glass Style */
.premium-form-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 45px;
  border-radius: 40px;
  box-shadow: var(--shadow-intense);
}

.input-group-custom {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-custom i {
  position: absolute;
  left: 20px;
  color: var(--primary);
  font-size: 18px;
}

.input-group-custom input,
.input-group-custom select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 16px 16px 16px 55px;
  border-radius: 16px;
  color: white;
  outline: none;
  transition: var(--transition-base);
}

.input-group-custom input:focus,
.input-group-custom select:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Button & Info Styles */
.btn-form-premium {
  width: 100%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-form-premium:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.icon-phone-glow {
  width: 45px;
  height: 45px;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .app-mockup-container {
    display: none;
    /* Mobile-la app mockup avoid panni context mattum vaikalam */
  }

  .premium-form-glass {
    padding: 30px;
  }
}

/* <!============ Enroll Now Divider Section =====================> */

/* Container Logic */
.enroll-divider-container {
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  /* Unga white background-ku set aagum */
}

/* Horizontal Line */
.divider-line {
  position: absolute;
  width: 100%;
  height: 1.5px;
  background: #000;
  z-index: 1;
}

/* The Premium Pill Button */
.enroll-now-btn {
  position: relative;
  z-index: 2;
  background: #2a2a2a;
  /* Dark gray background */
  padding: 18px 45px;
  border-radius: 100px;
  text-decoration: none;
  color: white;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  /* Shine effect veliya theriyama irukka */
  transition: var(--transition-bounce);
}

/* Button Content Layout */
.btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.enroll-text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.refund-text {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Sparkle Icons Styling */
.sparkle-icons {
  position: relative;
  font-size: 20px;
  color: #ccc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* NEXT LEVEL ANIMATIONS */

/* 1. Shiny Sweep Effect */
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: 0.8s;
}

.enroll-now-btn:hover .btn-shine {
  left: 150%;
  transition: 0.8s;
}

/* 2. Constant Pulse Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.enroll-now-btn {
  animation: pulse-glow 2s infinite;
}

/* 3. Icon Sparkle Animation */
.icon-1,
.icon-2 {
  animation: twinkle 1.5s infinite alternate;
}

.icon-2 {
  animation-delay: 0.5s;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
    color: #fff;
  }
}

/* Hover Interaction */
.enroll-now-btn:hover {
  transform: scale(1.05);
  background: #111;
  border-color: var(--primary);
  /* Hover-la unga orange color light-ah theriuyum */
}

/* Responsive adjustment */
@media (max-width: 576px) {
  .enroll-text {
    font-size: 20px;
  }

  .refund-text {
    font-size: 9px;
  }

  .enroll-now-btn {
    padding: 15px 30px;
  }
}


/* FAQ Section Styles */
.section-faq-premium {
  background-color: var(--bg-white);
  /* Pure White Background */
  position: relative;
}

.faq-badge {
  color: var(--primary);
  background: rgba(255, 106, 0, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Accordion Custom Styling */
.custom-premium-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background: #fff !important;
  border-radius: 24px !important;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.custom-premium-accordion .accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: rgba(255, 106, 0, 0.2) !important;
}

/* Accordion Button Styles */
.custom-premium-accordion .accordion-button {
  padding: 25px 30px !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 15px;
  border: none !important;
  box-shadow: none !important;
}

.custom-premium-accordion .accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

/* Icon Box beside question */
.faq-icon-box {
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed) .faq-icon-box {
  background: var(--primary-gradient);
  color: white;
}

/* Accordion Body */
.custom-premium-accordion .accordion-body {
  padding: 0 30px 30px 90px;
  /* Aligned with the question text */
  color: var(--text-muted);
  line-height: 1.8;
}

.custom-premium-accordion .accordion-body strong {
  color: var(--text-dark);
}

/* Customizing the Arrow Icon */
.custom-premium-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23757575'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.2rem;
}

.custom-premium-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6A00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .custom-premium-accordion .accordion-button {
    padding: 20px !important;
    font-size: 1rem;
  }

  .custom-premium-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }

  .faq-icon-box {
    display: none;
  }

  /* Mobile-la icon hide pannina space save aagum */
}



.bg-light-gray {
  background-color: #f8fafc;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

/* Mask for smooth fade at edges */
.testimonial-slider-wrapper::before,
.testimonial-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.testimonial-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.testimonial-track {
  display: flex;
  gap: 25px;
  width: max-content;
}

/* Infinite Scroll Animations */
.track-left {
  animation: scroll-left 40s linear infinite;
}

.track-right {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.testimonial-slider-wrapper:hover .testimonial-track {
  animation-play-state: paused;
}

/* Card Styling (Exact Match to Image) */
.testimonial-card {
  background: #fff;
  width: 380px;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.testimonial-card .content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.mention {
  color: #4f46e5;
  /* Link color from image */
  font-weight: 600;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.user strong {
  font-size: 15px;
  color: #111;
}

.user small {
  color: var(--text-muted);
}

.social-icon {
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
    padding: 20px;
  }
}


/* Section Base */
.section-buy-premium {
  background-color: var(--secondary) !important;
  /* #0A0A0A */
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Background Glow */
.glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

/* Typography */
.academy-title {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* THE BUTTON WRAPPER LOGIC */
.buy-action-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

/* Glowing Side Lines */
.side-border-line {
  height: 2px;
  width: 150px;
  background: linear-gradient(90deg, transparent, var(--primary));
  position: relative;
}

.side-border-line.right {
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* Adding glowing dots at the end of lines */
.side-border-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
}

.side-border-line.left::after {
  right: 0;
}

.side-border-line.right::after {
  left: 0;
}

/* THE VIBRANT BUTTON */
.btn-buy-vibrant {
  position: relative;
  background: #000;
  padding: 22px 50px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--primary-light);
  overflow: hidden;
  transition: var(--transition-bounce);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
}

.btn-inner-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.main-btn-text {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.sub-btn-text {
  font-size: 12px;
  color: var(--primary-light);
  font-weight: 600;
  margin-top: 4px;
}

/* BUTTON ANIMATIONS */

/* 1. Pulse Glow Animation */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 106, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

.btn-buy-vibrant {
  animation: buttonPulse 2s infinite;
}

/* 2. Shine Glare Sweep */
.btn-glare {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-30deg);
  transition: 0.7s;
}

.btn-buy-vibrant:hover .btn-glare {
  left: 150%;
}

/* Hover Interaction */
.btn-buy-vibrant:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: #fff;
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.4);
}

/* Responsive Fix */
@media (max-width: 992px) {
  .academy-title {
    font-size: 3rem;
  }

  .side-border-line {
    width: 50px;
  }
}

@media (max-width: 768px) {
  .side-border-line {
    display: none;
  }

  /* Mobile-la side lines thavillai, focus on button */
  .btn-buy-vibrant {
    width: 100%;
    text-align: center;
  }
}



/* =============== Footer Section ======================= */


.premium-footer {
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

/* Typography & Content */
.text-vibrant-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.footer-heading {
  font-size: 1.25rem;
  color: var(--secondary);
  position: relative;
  padding-bottom: 10px;
}

/* Newsletter Sleek Design */
.newsletter-box {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  padding: 8px 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-base);
}

.newsletter-box:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-premium);
}

.newsletter-box input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font-weight: 600;
  font-size: 14px;
}

.btn-newsletter-arrow {
  background: var(--primary-gradient);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  color: white;
  transition: var(--transition-bounce);
}

.btn-newsletter-arrow:hover {
  transform: scale(1.1);
}

/* Center Enroll Button Animation */
.btn-enroll-vibrant {
  position: relative;
  padding: 20px 45px;
  background: var(--primary-gradient);
  color: white !important;
  text-decoration: none !important;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
  transition: var(--transition-bounce);
}

.pulse-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--primary);
  z-index: -1;
  animation: footerPulse 2.5s infinite;
}

@keyframes footerPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* List with Arrow Icons */
.footer-icon-links li {
  margin-bottom: 15px;
}

.footer-icon-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-base);
}

.footer-icon-links a i {
  font-size: 10px;
  color: var(--primary);
}

.footer-icon-links a:hover {
  color: var(--primary-dark);
  transform: translateX(8px);
}

/* AI Slider (Colorful) */
.footer-infinite-track {
  overflow: hidden;
  padding: 20px 0;
}

.footer-infinite-list {
  display: flex;
  gap: 70px;
  animation: scrollFooter 25s linear infinite;
}

.tool-item img {
  height: 40px;
  opacity: 0.7;
  transition: 0.4s;
}

.tool-item:hover img {
  opacity: 1;
  transform: scale(1.2);
}

@keyframes scrollFooter {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Bottom Bar Socials */
.social-btn {
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition-bounce);
  border: 1px solid #eee;
}

.social-btn:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-5px);
}

.copyright-text {
  font-size: 14px;
  color: var(--text-muted);
}

.text-primary-bold {
  color: var(--primary);
  font-weight: 800;
}

/* Mobile Optimization */
@media (max-width: 991px) {
  .btn-enroll-vibrant {
    width: 100%;
    text-align: center;
  }

  .footer-icon-links li {
    text-align: center;
    justify-content: center;
  }

  .footer-icon-links a {
    justify-content: center;
  }
}



/* ================= Mission & Vision Section ==================== */


.mission-vision-container {
  padding: 20px 0;
  background: var(--bg-light);
}

/* Central Image Styling */
.center-img-wrapper {
  position: relative;
  z-index: 2;
  padding: 10px;
  background: var(--bg-white);
  border-radius: 40px;
  box-shadow: var(--shadow-intense);
}

.center-img-wrapper img {
  border-radius: 30px;
  transition: var(--transition-bounce);
}

/* Side Cards Styling */
.side-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

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

/* Icon style */
.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* ===================== Built for Global Standards ============================= */


.card-v3 {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-bounce);
  height: 100%;
  background: var(--bg-white);
}

.card-v3:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-intense);
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 106, 0, 0.1);
  /* Primary-light opacity */
  border-radius: 20px;
  margin-bottom: 25px;
  transition: var(--transition-base);
}

.card-v3:hover .icon-wrapper {
  background: var(--primary);
}

.card-v3:hover .icon-wrapper i {
  color: var(--text-light) !important;
}

.text-orange {
  color: var(--primary) !important;
}

/* Section styling */
.bg-light-surface {
  background-color: var(--bg-white);
  padding: 3 0px 0;
}

/* ================== Counter Section ====================== */

.counter-section-new {
  padding: 100px 0;
  background: var(--dark-surface);
  position: relative;
  overflow: hidden;
}

/* Gradient Border Effect for Cards */
.glass-counter-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 30px;
  position: relative;
  transition: var(--transition-bounce);
}

.glass-counter-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  transform: translateY(-15px);
}

/* Number Styling */
.count-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--bg-white);
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Label Styling */
.counter-label {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Floating Shapes in Background */
.shape-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.1;
  z-index: 0;
}

/* ============ Contact Details & Form Sectio */

/* Master Contact Card */
.contact-master-card {
  background: white;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* Dropdown Icon Styling */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "\f078";
  /* FontAwesome Chevron Down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary);
}


/* ============ curriculum-section ====================== */

/* Layout for Section */
.curriculum-grid-section {
  padding: 40px 0;
  background: var(--bg-light);
}

/* 2x2 Grid Styling */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card Style */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-bounce);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ AI Video Editing Section */

/* Responsive Base Settings */
.ai-hero-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  /* Prevents overflow on mobile */
}

.ai-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
}

.ai-main-img {
  width: 850px;
  /* Default Desktop size */
  max-width: 100%;
  /* Ensures responsiveness */
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  /* Added subtle reflection/shadow for premium look */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Enhanced Glow Effect for responsiveness */
.glow-effect {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.2;
  z-index: 1;
  animation: pulse 3s infinite;
  /* Added pulse effect */
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.1);
  }
}

/* Typography Adjustments */
.ai-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  /* Responsive font size */
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .ai-main-img {
    width: 100%;
    /* Image fits screen width on mobile */
    border-radius: 15px;
  }

  .ai-hero-section {
    padding: 50px 15px;
  }

  .ai-cta-group {
    flex-direction: column;
    /* Stack buttons vertically on mobile */
    gap: 15px;
  }

  .btn-ai-primary,
  .btn-ai-secondary {
    width: 100%;
    padding: 12px 25px;
  }
}

/* Hover Scale Animation */
.ai-main-img:hover {
  transform: translateY(-20px) scale(1.02);
  transition: var(--transition-bounce);
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  filter: blur(60px);
  opacity: 0.3;
  z-index: 1;
}

.ai-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
}

.ai-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-description {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* Buttons Design */
.ai-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-ai-primary {
  background: var(--primary);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  transition: var(--transition-bounce);
}

.btn-ai-primary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary);
}

.btn-ai-secondary {
  background: var(--glass-bg);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  transition: var(--transition-base);
}

.btn-ai-secondary:hover {
  background: var(--glass-border);
}

.benefits-section {
  background: #ffffff;
  /* White Background */
  padding: 50px 0;
}

.section-title {
  color: #121212;
  /* Dark text for readability */
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-card {
  background: #fdfdfd;
  border: 1px solid #eeeeee;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

/* Hover Animation: Card Lift & Glow */
.benefit-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--primary);
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: var(--transition-bounce);
}

.benefit-card:hover .icon-box {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.benefit-card h3 {
  color: #121212;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #666;
}


.faq-section {
  padding: 100px 0;
  background-color: var(--secondary);
  color: var(--text-light);
}

.faq-title {
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--primary);
  transform: translateX(10px);
}

.faq-btn {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn span {
  color: var(--primary);
  font-size: 1.5rem;
  transition: var(--transition-bounce);
}

/* Open state animation */
.faq-btn[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 25px 25px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-btn {
    padding: 20px;
    font-size: 1rem;
  }
}

/* Corporate Footer Overrides */
.corporate-footer {
  background-color: #0d1117 !important;
  /* Sleek dark corporate background */
}

.footer-corporate-links a.transition-hover,
.footer-bottom-corporate a.transition-hover {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-corporate-links a.transition-hover:hover,
.footer-bottom-corporate a.transition-hover:hover {
  color: var(--primary) !important;
  transform: translateX(5px);
}

.social-btn-corporate {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn-corporate:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.tool-item-corporate {
  padding: 0 15px;
}

.tool-item-corporate img {
  height: 40px;
  transition: all 0.4s ease;
}

.tool-item-corporate:hover img {
  transform: scale(1.1);
}

/* --- Antigravity Custom Overrides --- */

/* 1. Convert all Bootstrap primary blue to custom orange globally */
:root {
  --bs-primary: #ff6a00 !important;
  --bs-primary-rgb: 255, 106, 0 !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* 2. Footer Email Address text and placeholder to white */
.corporate-footer input.form-control,
.newsletter-box input.form-control {
  color: #ffffff !important;
}

.corporate-footer input.form-control::placeholder,
.newsletter-box input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* 3. Footer Social Media Icons to Gray */
.social-btn-corporate,
.social-icon-group a,
.social-icon-group a i {
  color: #888888 !important;
  transition: all 0.3s ease;
}

.social-btn-corporate:hover,
.social-icon-group a:hover,
.social-icon-group a:hover i {
  color: var(--primary) !important;
  /* Orange on hover for nice effect */
}

/* --- Hero Section Background Pattern --- */
.hero-v2.bg-grid-white {
  background-color: #0a0f18 !important;
  /* Premium dark blue/black */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  background-position: center center !important;
  position: relative;
}

/* Add a glowing premium accent to the hero pattern */
.hero-v2.bg-grid-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure content stays above the background */
.hero-v2.bg-grid-white>.container {
  position: relative;
  z-index: 1;
}

/* --- Courses Tabs CSS --- */
.custom-tabs .nav-link {
  color: var(--primary);
  background-color: transparent;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
  background-color: rgba(255, 106, 0, 0.1);
}

.custom-tabs .nav-link.active {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* --- Super Premium Corporate CSS --- */

/* Tab Styles */
.custom-corporate-tabs .nav-link {
  color: #6c757d;
  background-color: transparent;
  transition: all 0.4s ease;
}

.custom-corporate-tabs .nav-link:hover {
  color: var(--primary);
}

.custom-corporate-tabs .nav-link.active {
  color: #ffffff !important;
  background-color: var(--primary) !important;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3) !important;
}

/* Card Hover Lift & Glow */
.premium-course-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 25px 50px rgba(255, 106, 0, 0.15) !important;
}

.premium-course-card:hover .course-img {
  transform: scale(1.1) !important;
}

/* Arrow Hover Animation */
.premium-course-card .btn-premium:hover i.transition-hover {
  transform: translateX(5px);
}

.transition-hover {
  transition: transform 0.3s ease;
}

/* --- Floating App Store & Play Store Badges (Left & Right) --- */
.floating-badge-container {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.badge-left {
  left: 20px;
}

.badge-right {
  right: 20px;
}

.custom-app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 16px;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  width: 175px;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Badge Left specific styles */
.badge-left .custom-app-badge {
  border-left: 3px solid #ffffff;
}

.badge-left .custom-app-badge:hover {
  transform: scale(1.05) translateX(3px);
  background: rgba(20, 25, 45, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  border-left-color: #ffffff;
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Badge Right specific styles */
.badge-right .custom-app-badge {
  border-right: 3px solid var(--primary);
}

.badge-right .custom-app-badge:hover {
  transform: scale(1.05) translateX(-3px);
  background: rgba(20, 25, 45, 0.95);
  border-color: rgba(255, 106, 0, 0.4);
  border-right-color: var(--primary);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.25), 0 0 20px rgba(255, 106, 0, 0.15);
}

/* Content styles */
.custom-app-badge .badge-icon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.badge-left .custom-app-badge .badge-icon {
  color: #ffffff;
}

.badge-right .custom-app-badge .badge-icon {
  color: var(--primary);
  filter: drop-shadow(0 0 4px rgba(255, 106, 0, 0.4));
}

.custom-app-badge:hover .badge-icon {
  transform: scale(1.1);
}

.custom-app-badge .badge-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.custom-app-badge .badge-tagline {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.custom-app-badge .badge-title {
  font-size: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2px;
}

/* Responsive adjustment for Mobile, Tablets, and standard screens to prevent overlapping content */
@media (max-width: 1499px) {
  .floating-badge-container {
    display: none !important;
  }
}

@media (max-width: 576px) {

  /* Hide side floating badges on mobile because the mobile-brand-bar already has them sticky at the top */
  /* .floating-badge-container {
    display: none !important;
  } */
}

/* --- Cinematic Connection Intro Animation Styles --- */

/* Hands sizing & holographic screen filters */
.intro-hand {
  position: absolute;
  top: 50%;
  width: 60vw;
  /* Expands to cover half screen + crop area */
  height: 520px;
  /* Full view height */
  object-fit: contain;
  pointer-events: none;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
  opacity: 0;
  z-index: 15;
}

.hand-left {
  left: -10vw;
  /* Pulls transparent outer gap off-screen */
  object-position: right center;
  /* Align fingers to meet center line */
  transform: translateY(-50%) translateX(-100%);
}

.hand-right {
  right: -10vw;
  /* Pulls transparent outer gap off-screen */
  object-position: left center;
  /* Align fingers to meet center line */
  transform: translateY(-50%) translateX(100%);
}

/* Phase 1: Hands glide in and target point contact */
.hero-v2.state-start .hand-left {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hero-v2.state-start .hand-right {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Phase 2: Touch snap */
.hero-v2.state-touch .hand-left {
  transform: translateY(-50%) translateX(4px) scale(1.03);
}

.hero-v2.state-touch .hand-right {
  transform: translateY(-50%) translateX(-4px) scale(1.03);
}

/* Phase 3: Retreat and dissolve */
.hero-v2.state-retreat .hand-left {
  opacity: 0;
  transform: translateY(-50%) translateX(-100%) scale(0.95);
}

.hero-v2.state-retreat .hand-right {
  opacity: 0;
  transform: translateY(-50%) translateX(100%) scale(0.95);
}

/* Shockwave and Spark explosion keyframes */
.touch-shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 4px solid #ff6a00;
  box-shadow: 0 0 35px #ff6a00, inset 0 0 35px #ff6a00;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  pointer-events: none;
  z-index: 16;
}

.touch-spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffffff 0%, rgba(255, 106, 0, 0.9) 35%, rgba(0, 210, 255, 0.5) 60%, transparent 75%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  pointer-events: none;
  z-index: 17;
}

.hero-v2.state-touch .touch-shockwave {
  animation: shockwaveAnimate 0.9s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.hero-v2.state-touch .touch-spark {
  animation: sparkAnimate 0.7s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes shockwaveAnimate {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(7.0);
    opacity: 0;
  }
}

@keyframes sparkAnimate {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(4.5);
    opacity: 0;
  }
}



/* Center Robot Image Wrap & Float removed for interactive 3D parallax */
.robot-wrapper.visible {
  opacity: 1 !important;
  transform: scale(1.0) !important;
}

.welcome-robot-img {
  /* Removed auto-float animation as per user request */
  transition: filter 0.3s ease;
}

/* Welcome Overlay Styling */
.welcome-text-overlay {
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Responsive configurations for mobile screens */
@media (max-width: 991px) {
  .intro-hand {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .hero-v2:has(.robot-wrapper) {
    min-height: 90svh !important;
  }

  .hero-v2 .display-1 {
    font-size: 2.5rem !important;
  }

  .robot-wrapper {
    height: 90svh !important;
  }

  .welcome-robot-img {
    height: 90svh !important;
    object-fit: cover !important;
  }

  /* Hide side texts on mobile to prevent vertical overflow and overlap */
  .hud-text-box {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .intro-hand {
    height: 180px;
  }

  .hero-v2:has(.robot-wrapper) {
    min-height: 50svh !important;
  }

  .hero-v2 .display-1 {
    font-size: 2rem !important;
  }

  .robot-wrapper {
    height: 50svh !important;
  }

  .welcome-robot-img {
    height: 55svh !important;
    object-fit: cover !important;
    margin-top: 20px !important;
  }

  .cinematic-title {
    margin-top: 100px !important;
  }
}

/* GTA VI Style Menu CSS */
.gta-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: #12151e;
  /* Match right side */
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
  overflow: hidden;
}

.gta-menu-overlay.active {
  transform: translateY(0);
  visibility: visible;
}

.btn-close-menu {
  position: absolute;
  top: 25px;
  right: 35px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-close-menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.gta-nav-links {
  margin-top: 10px;
  max-width: 500px;
}

.gta-nav-links li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gta-nav-links a {
  color: #dfdfdf;
  text-decoration: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  font-family: 'Oswald', 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
  line-height: 1.2;
}

.gta-nav-links li i {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
}

.gta-nav-links li:hover a {
  color: var(--primary, #ff6a00);
  transform: scale(1.05);
}

.gta-nav-links li:first-child a {
  color: #ff6a00;
  /* slight yellow tint */
}

.gta-nav-links li:first-child:hover a {
  color: var(--primary, #ff6a00);
}

.trending-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.trending-card .btn:hover {
  background-color: #e65f00 !important;
  transform: scale(1.1) !important;
}

.trending-courses-swiper {
  overflow: visible;
}

/* ==========================================================================
   Curely Premium Redesign: Navbar, Wrapper & Hero Showcase
   ========================================================================== */

/* Outer Page Container background tint to highlight the card */
.curely-page-bg {
  background-color: #f8f7fb;
  padding: 24px;
}

@media (max-width: 768px) {
  .curely-page-bg {
    padding: 10px;
  }
}

/* Card Container layout */
.curely-outer-wrapper {
  background: linear-gradient(135deg, #fff2e8 0%, #ffffff 50%, #ffeada 100%);
  border: 1px solid rgba(255, 190, 150, 0.4);
  border-radius: 40px;
  padding: 24px 24px 0 24px;
  margin: 0 auto;
  max-width: 1700px;

  box-shadow: 0 20px 50px rgba(255, 106, 0, 0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .curely-outer-wrapper {
    border-radius: 24px;
    padding: 16px 16px 0 16px;
  }
}

/* Navbar */
.curely-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  width: 100%;
}

.curely-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.3s;
}


.curely-brand img {
  height: 50px;
  width: auto;
  object-fit: cover;
}

.curely-brand-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.curely-nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.curely-nav-link {
  color: #5d5a6f;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.curely-nav-link.active::before {
  content: "•";
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 4px;
}

.curely-btn-download {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.curely-btn-download:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.15);
}

.curely-btn-download .arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.curely-btn-download:hover .arrow-circle {
  transform: translateX(3px);
}

/* Mobile Toggler */
.curely-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

@media (max-width: 991px) {
  .curely-nav-menu {
    display: none;
    /* Collapsed under responsive navbar drawer */
  }

  .curely-btn-download.d-desktop {
    display: none !important;
  }

  .curely-menu-toggle {
    display: block;
  }
}

/* Mobile Nav Overlay/Drawer */
.curely-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.curely-mobile-drawer.open {
  transform: translateX(0);
}

.curely-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.curely-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
}

.curely-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.curely-mobile-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

.curely-mobile-link.active {
  color: var(--primary);
}

/* Hero Section */
.curely-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 15px auto;
  z-index: 10;
  position: relative;
}

@media (max-width: 768px) {
  .curely-hero-content {
    margin: 20px auto 10px auto;
  }
}

.curely-pill-badge {
  display: inline-block;
  border: 1px solid rgba(255, 106, 0, 0.25);
  color: var(--primary);
  background-color: rgba(255, 106, 0, 0.06);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.curely-hero-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #1a162e;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

@media(max-width : 500px){
  .curely-hero-title{
    font-size: 30px;
  }
}

@media(max-width : 416px){
  .curely-hero-title{
    font-size: 25px;
  }
}

.curely-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #5d5a6f;
  max-width: 600px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.curely-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Store Badge Buttons */
.curely-store-btn {
  background-color: #111115;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.curely-store-btn:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.15);
  color: white;
}

.curely-store-btn i {
  font-size: 1.8rem;
}

.curely-store-btn .btn-text-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  line-height: 1.2;
}

.curely-store-btn .btn-text-large {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Device Mockups Showcase */
.curely-device-showcase {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

@media (max-width: 991px) {
  .curely-device-showcase {
    height: 240px;
    align-items: flex-start;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .curely-device-showcase {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 15px;
  }
}

/* iPhone Chassis */
.iphone-mockup {
  width: 250px;
  height: 580px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* .iphone-mockup:hover {
  transform: translateY(-10px);
} */

/* Dynamic Island */
.iphone-dynamic-island {
  width: 90px;
  height: 22px;
  background-color: #000;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

/* Dynamic Island Indicator Light */
.iphone-dynamic-island::after {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #10b981;
  border-radius: 50%;
  opacity: 0.7;
}

/* App Screen Container */
.iphone-screen {
  width: 100%;
  height: 100%;
  padding: 40px 16px 16px 16px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Positions for showcase layout */
.iphone-left {
  transform: translateY(40px) translateX(25px);
  z-index: 2;
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.1);
}

.iphone-center {
  z-index: 5;
  height: 500px;
  width: 260px;
  border-width: 12px;
}

.iphone-right {
  transform: translateY(40px) translateX(-25px);
  z-index: 2;
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .iphone-left {
    width: 200px;
    height: 380px;
    transform: translateY(30px) translateX(15px);
  }

  .iphone-center {
    width: 210px;
    height: 400px;
  }

  .iphone-right {
    width: 200px;
    height: 380px;
    transform: translateY(30px) translateX(-15px);
  }
}

@media (max-width: 767px) {

  .iphone-left,
  .iphone-center,
  .iphone-right {
    transform: none;
    width: 260px;
    height: 480px;
    margin: 0 auto;
  }

  .iphone-center {
    order: -1;
    /* Display main phone first on mobile stacking */
  }
}

/* LEFT PHONE SPECIFIC CONTENT & FLOATING CARDS */
.left-phone-screen {
  background-color: #080610 !important;
  color: white !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.left-phone-chat-bg {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.left-phone-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Floating Happy Clients Card */
.floating-happy-clients {
  position: absolute;
  top: 180px;
  left: -50px;
  background: white;
  color: #1a162e;
  border-radius: 16px;
  padding: 12px;
  width: 180px;
  box-shadow: 0 15px 30px rgba(26, 22, 46, 0.12);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 991px) {
  .floating-happy-clients {
    left: -20px;
    top: 130px;
    width: 140px;
    padding: 8px;
  }
}

@media (max-width: 767px) {
  .floating-happy-clients {
    left: -30px;
    top: 150px;
  }
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}

.avatar-img:first-child {
  margin-left: 0;
}

.happy-clients-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: #5d5a6f;
  line-height: 1.3;
}

/* CENTER PHONE SPECIFIC CONTENT */
.center-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.center-phone-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.center-phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ddd;
  object-fit: cover;
}

.center-phone-user-info {
  display: flex;
  flex-direction: column;
}

.center-phone-user-name {
  font-weight: 700;
  font-size: 0.75rem;
  color: #1a162e;
}

.center-phone-user-loc {
  font-size: 0.6rem;
  color: #888;
}

.center-phone-bell {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #eef0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.75rem;
}

/* Ask AI Doctor Card */
.ai-doctor-card {
  background: linear-gradient(135deg, #161329 0%, #0d0b18 100%);
  border-radius: 16px;
  padding: 16px;
  color: white;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.ai-doctor-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.ai-doctor-desc {
  font-size: 0.65rem;
  opacity: 0.8;
  line-height: 1.4;
  margin-bottom: 12px;
}

.ai-doctor-sparkles {
  position: absolute;
  bottom: -10px;
  right: -10px;
  opacity: 0.15;
  font-size: 4rem;
  color: #ffffff;
}

/* Top Doctors Nearby Section */
.doctors-nearby {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doctors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.doctors-header span {
  font-weight: 700;
  font-size: 0.75rem;
}

.doctors-header a {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 600;
}

.doctor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background-color: white;
  border: 1px solid #f0edf8;
}

.doctor-photo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #eee;
  object-fit: cover;
}

.doctor-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-name {
  font-weight: 700;
  font-size: 0.7rem;
}

.doctor-specialty {
  font-size: 0.58rem;
  color: #888;
}

.doctor-action {
  font-size: 0.75rem;
  color: var(--primary);
}

/* RIGHT PHONE SPECIFIC CONTENT & FLOATING CARDS */
.right-phone-screen {
  background-color: #f6f8fb !important;
}

.right-phone-header {
  margin-bottom: 20px;
}

.right-phone-title {
  font-weight: 700;
  font-size: 1rem;
  color: #1a162e;
}

.heart-tracker-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #f0edf8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heart-rate-title {
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
}

.heart-rate-val {
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.heart-rate-val span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #888;
}

/* Graph Visualization SVG */
.heart-graph-svg {
  width: 100%;
  height: 60px;
  stroke: #ff5574;
  stroke-width: 2.5;
  fill: none;
}

/* Floating tags for right phone */
.floating-tag-video {
  position: absolute;
  top: 150px;
  right: -55px;
  background-color: #6f55ff;
  color: white;
  border-radius: 12px;
  padding: 10px 14px;
  width: 170px;
  box-shadow: 0 10px 25px rgba(111, 85, 255, 0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
}

.floating-tag-service {
  position: absolute;
  top: 210px;
  right: -45px;
  background-color: white;
  color: #1a162e;
  border-radius: 12px;
  padding: 10px 14px;
  width: 160px;
  box-shadow: 0 10px 25px rgba(26, 22, 46, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .floating-tag-video {
    right: -25px;
    top: 120px;
    width: 140px;
    padding: 8px;
    font-size: 0.58rem;
  }

  .floating-tag-service {
    right: -20px;
    top: 170px;
    width: 135px;
    padding: 8px;
    font-size: 0.58rem;
  }
}

@media (max-width: 767px) {
  .floating-tag-video {
    right: -30px;
    top: 140px;
    width: 160px;
    font-size: 0.65rem;
  }

  .floating-tag-service {
    right: -25px;
    top: 195px;
    width: 150px;
    font-size: 0.65rem;
  }
}

.tag-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.floating-tag-video .tag-icon-circle {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.floating-tag-service .tag-icon-circle {
  background-color: rgba(111, 85, 255, 0.1);
  color: #6f55ff;
}

/* ==========================================================================
   Super Charge Career Demo Booking Modal
   ========================================================================== */

.dm-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dm-modal-content {
  background-color: var(--primary);
  width: 90%;
  max-width: 820px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dm-modal-backdrop.active .dm-modal-content {
  transform: scale(1);
}

.dm-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.6);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.dm-modal-close-btn:hover {
  color: #000000;
  transform: scale(1.1);
}

.dm-modal-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  width: 100%;
  min-height: 420px;
}

.dm-modal-left-col {
  background-color: var(--primary);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}

.dm-modal-student-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dm-modal-right-col {
  padding: 50px 45px 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dm-modal-heading-area {
  margin-bottom: 25px;
}

.dm-modal-sub-title {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.dm-modal-title-row {
  display: flex;
  align-items: center;
}

.dm-modal-main-title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.8px;
}

/* Horizontal Speed Lines */
.dm-modal-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  margin-right: 12px;
  width: 75px;
  flex-shrink: 0;
}

.dm-modal-lines span {
  display: block;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}

.dm-modal-lines span:nth-child(1) {
  width: 35px;
}

.dm-modal-lines span:nth-child(2) {
  width: 70px;
}

.dm-modal-lines span:nth-child(3) {
  width: 55px;
}

.dm-modal-lines span:nth-child(4) {
  width: 65px;
}

.dm-modal-lines span:nth-child(5) {
  width: 45px;
}

/* Form Elements */
.dm-modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 360px;
  width: 100%;
}

.dm-modal-form-group {
  width: 100%;
}

.dm-modal-form-input {
  background-color: #ffffff;
  border: none;
  border-radius: 50px;
  height: 48px;
  width: 100%;
  padding: 0 24px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #333333;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.dm-modal-form-input::placeholder {
  color: #8c8c8c;
  font-weight: 400;
}

/* Phone input group custom flex */
.dm-phone-input-group {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  height: 48px;
  overflow: hidden;
  padding: 0 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.dm-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  margin-right: 12px;
  user-select: none;
  flex-shrink: 0;
}

.dm-flag {
  font-weight: 700;
}

.dm-sep {
  color: #dddddd;
  font-weight: 300;
}

.dm-code {
  color: #666666;
}

.dm-phone-field {
  padding: 0 !important;
  box-shadow: none !important;
  height: 100% !important;
}

/* Buttons */
.dm-modal-submit-btn {
  background-color: #eeeeee;
  color: #111111;
  border: none;
  border-radius: 50px;
  height: 48px;
  padding: 0 6px 0 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
}

.dm-modal-submit-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.dm-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.dm-modal-submit-btn:hover .dm-arrow-circle {
  transform: translateX(3px);
}

/* Hanging Discount Sticker */
.dm-modal-discount-sticker {
  position: absolute;
  bottom: 35px;
  right: 40px;
  transform: rotate(-15deg);
  background-color: #ffffff;
  border: 2px dashed var(--primary);
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 10;
  animation: stickerFloat 3s ease-in-out infinite alternate;
}

@keyframes stickerFloat {
  from {
    transform: rotate(-15deg) translateY(0);
  }

  to {
    transform: rotate(-15deg) translateY(-8px);
  }
}

.discount-sticker-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.discount-text-small {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.discount-text-bold {
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: -0.2px;
}

/* Responsiveness media queries */
@media (max-width: 767px) {
  .dm-modal-grid {
    grid-template-columns: 100%;
    min-height: auto;
  }

  .dm-modal-left-col {
    display: none;
  }

  .dm-modal-right-col {
    padding: 50px 30px;
    align-items: center;
  }

  .dm-modal-form {
    max-width: 100%;
  }

  .dm-modal-discount-sticker {
    bottom: 25px;
    right: 25px;
  }
}

@media (max-width: 576px) {
  .dm-modal-discount-sticker {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 20px auto 0 auto;
    transform: rotate(-3deg) !important;
    display: inline-block;
    width: fit-content;
    animation: none;
  }

  .dm-modal-heading-area {
    text-align: center;
  }

  .dm-modal-title-row {
    justify-content: center;
  }
}

/* Placements Section Start */


/* Section Background with Soft Warm Gradient */
.placement-section {
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.05) 0%, rgba(255, 255, 255, 1) 60%);
  background-color: var(--bg-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Ambient Decorative Background Elements */
.placement-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 133, 51, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* Section Badge */
.section-badge {
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.15);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
}

/* Heading Gradient Text */
.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Swiper Slider Outer Container */
.slider-container {
  position: relative;
  padding: 20px 0 20px 0;
}

/* Premium Lite Card Design */
.placement-card {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: none;
  transition: var(--transition-bounce);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 15px 5px;
  /* Spacing for layout */
}

/* Card Top Color Accent on Hover */
.placement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-base);
}

/* Card Hover Effects */
.placement-card:hover {
  transform: translateY(-10px);
  box-shadow: none;
  border-color: rgba(255, 106, 0, 0.2);
}

.placement-card:hover::before {
  opacity: 1;
}

/* Image Container with Rounded Style */
.student-img-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  background-color: #f0f0f0;
}

.student-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* Image Zoom on hover */
.placement-card:hover .student-img {
  transform: scale(1.06);
}

/* Typography */
.student-name {
  color: var(--text-dark);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
  transition: var(--transition-base);
}

.placement-card:hover .student-name {
  color: var(--primary-dark);
}

.course-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 106, 0, 0.06);
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
}

/* Custom Navigation Buttons (Styled to Match Theme) */
.nav-btn {
  width: 50px;
  height: 50px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  transition: var(--transition-base);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-btn:hover {
  background: var(--primary-gradient);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: none;
}

.nav-btn-prev {
  left: -20px;
}

.nav-btn-next {
  right: -20px;
}

/* Custom Pagination Bullets */
.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  transition: var(--transition-base);
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* Adjust Navigation Placement on Smaller Screens */
@media (max-width: 991px) {
  .nav-btn {
    display: none;
    /* Hide arrow navigation on mobile/tablet and rely on swipe gesture */
  }
}

/* Instagram Profile Section Custom Styles */
.ig-profile-section {
  background-color: var(--bg-light);
}
.ig-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.ig-story-ring {
  width: 90px;
  height: 90px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 3px;
}
.ig-story-ring-muted {
  width: 65px;
  height: 65px;
  border: 2px solid #e5e5e5;
  padding: 3px;
}
.ig-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid var(--bg-white);
}
.ig-bio p {
  color: var(--text-dark);
  line-height: 1.4;
}
.ig-link {
  color: var(--primary) !important;
}
.ig-avatars {
  display: flex;
}
.ig-avatar {
  width: 24px;
  height: 24px;
  margin-left: -8px;
  border: 2px solid var(--bg-white);
}
.ig-avatar:first-child {
  margin-left: 0;
  background: #ccc;
  background-image: url('../img/logo.png');
  background-size: cover;
}
.ig-avatar:nth-child(2) {
  background: #ddd;
}
.ig-avatar:nth-child(3) {
  background: #eee;
}
.ig-main-buttons .btn {
  background-color: #efefef;
  color: var(--text-dark);
  border: none;
  font-size: 0.9rem;
  padding: 8px 16px;
}
.ig-main-buttons .btn:hover {
  background-color: #e0e0e0;
  color: var(--text-dark);
}
.ig-action-links .btn {
  background-color: #efefef;
  color: var(--text-dark);
  border: none;
  font-size: 0.75rem;
}
.ig-action-links .btn:hover {
  background-color: #e0e0e0;
  color: var(--text-dark);
}
.ig-highlights::-webkit-scrollbar {
  display: none;
}
.ig-highlights {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ig-highlight-item {
  min-width: 70px;
}

/* Mobile App Showcase & Animation Styles */
.app-showcase-container {
  position: relative;
  background: linear-gradient(135deg, #0b0f19 0%, #171d2c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.app-showcase-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.app-showcase-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(236, 72, 153, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.9) translate(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15) translate(20px, -20px);
    opacity: 0.85;
  }
}

.app-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-app-mockup {
  max-height: 440px;
  width: auto;
  object-fit: cover;
}

@keyframes floatApp {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.app-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  padding: 8px 14px;
  border-radius: 50px;
  animation: floatBadge 5s ease-in-out infinite alternate;
  z-index: 2;
}

.app-stat-badge-top {
  top: 8%;
  left: -15px;
  animation-delay: 0.5s;
}

.app-stat-badge-bottom {
  bottom: 10%;
  right: -15px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.btn-app-store {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-app-store:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

/* Connected Roadmap & Learning Journey Section Styles */
.roadmap-journey-section {
  background-color: #fcfcfc;
  position: relative;
}

.roadmap-grid-wrapper {
  max-width: 1240px;
  position: relative;
}

/* SVG Connector Lines */
.roadmap-svg-connector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Roadmap Cards */
.roadmap-card {
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 18px;
  padding: 24px 18px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;

  /* Full surrounding shadow */
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 3px 8px rgba(0, 0, 0, 0.12),
    0 8px 18px rgba(0, 0, 0, 0.10),
    inset 0 1px 2px rgba(255, 255, 255, 0.493);
}

.roadmap-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 6px 15px rgba(0, 0, 0, 0.15),
    0 12px 25px rgba(0, 0, 0, 0.12);
}

.roadmap-card h5 {
  font-weight: 800;
  font-size: 1.15rem;
  color: #1e293b;
}

.roadmap-card p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
}

.roadmap-icon-box {
  margin-top: auto;
  font-size: 2rem;
  color: #0f172a;
}

/* Desktop Zigzag Offset */
@media (min-width: 992px) {
  .roadmap-grid-wrapper .row {
    min-height: 380px;
    align-items: center;
  }
  
  .roadmap-top {
    transform: translateY(-50px);
  }
  
  .roadmap-bottom {
    transform: translateY(50px);
  }
}

/* Mobile & Tablet Vertical Timeline */
@media (max-width: 991px) {
  .roadmap-grid-wrapper {
    padding-left: 20px;
  }

  .roadmap-col {
    position: relative;
    margin-bottom: 2rem;
  }

  .roadmap-col::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 30px;
    height: 3px;
    background-color: #4a4a4a;
    z-index: 1;
  }

  .roadmap-col::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -15px;
    width: 3px;
    height: calc(100% + 40px);
    background-color: #4a4a4a;
    z-index: 0;
  }

  .roadmap-col:first-child::after {
    top: 50%;
    height: 50%;
  }

  .roadmap-col:last-child::after {
    height: 50%;
  }
}

/* Tools & Technologies Swiper Slider Styles */

.technologies-section{
  padding-top: 40px;
}

.tools-swiper {
  width: 100%;
  padding-bottom: 2.5rem !important;
}

.tools-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.tools-swiper .tool-card {
  width: 100%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 106, 0, 0.15);
}

.tools-swiper .tool-card:hover {
  transform: translateY(-5px);
  border-color: #ff6a00 !important;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
}

.tools-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.tools-swiper-pagination .swiper-pagination-bullet-active {
  background: #ff6a00 !important;
  width: 24px;
  border-radius: 12px;
}

/* ==========================================================================
   Index Page Mobile View Enhancements (Top Fixed Brand Bar)
   ========================================================================== */
@media (max-width: 991px) {
  body {
    padding-top: 60px !important;
  }

  .curely-page-bg {
    padding: 10px !important;
  }

  .curely-outer-wrapper {
    margin-top: 0 !important;
    padding-top: 12px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 767px) {
  .curely-hero-content {
    margin: 10px auto 10px auto !important;
  }

  .curely-device-showcase {
    height: 380px !important;
    overflow: hidden !important;
    gap: 0 !important;
    padding-top: 10px !important;
  }

  .curely-device-showcase .iphone-left,
  .curely-device-showcase .iphone-right {
    display: none !important;
  }

  .curely-device-showcase .iphone-center {
    width: 270px !important;
    height: 480px !important;
    margin: 0 auto !important;
    border-radius: 36px !important;
  }
}

/* ==========================================================================
   Courses Page Tab Buttons Responsive Fix
   ========================================================================== */
.custom-corporate-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  max-width: 100% !important;
}

.custom-corporate-tabs .nav-link {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

@media (max-width: 576px) {
  .custom-corporate-tabs .nav-link {
    font-size: 0.82rem !important;
    padding: 8px 14px !important;
  }

  .custom-corporate-tabs .nav-link i {
    font-size: 0.8rem !important;
    margin-right: 5px !important;
  }
}/* Trending Course Premium Card */
.trending-card-premium {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  background: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: var(--transition-bounce);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.trending-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: rgba(255,106,0,0.2);
}
.trending-card-premium .img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.trending-card-premium .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.trending-card-premium:hover .img-wrapper img {
  transform: scale(1.05);
}
.trending-card-premium .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.trending-card-premium .course-title {
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.trending-card-premium:hover .course-title {
  color: var(--primary);
}
.trending-card-premium .course-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.trending-card-premium .card-footer-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
  margin-top: auto;
}
.trending-card-premium .sessions-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  background: rgba(0,0,0,0.03);
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
}
.trending-card-premium .sessions-badge i {
  color: var(--primary);
}
.trending-card-premium .btn-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
  box-shadow: 0 4px 15px rgba(255,106,0,0.3);
}
.trending-card-premium .btn-arrow:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(255,106,0,0.4);
  color: white;
}
