/* ==========================================================================
   ONLINE SKILL INDIA (OSI) - LMS & Educational Platform Stylesheet
   Parent Entity: INDOGLOBAL DEFTECH LLP (LLPIN: AAY-6197)
   Theme Colors: Deep Navy (#083358), Tech Orange (#E85A1C), Teal (#0D7C75)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette from Logo */
  --primary-navy: #083358;
  --navy-dark: #041C32;
  --navy-light: #0E477D;
  --accent-orange: #E85A1C;
  --orange-hover: #CF490E;
  --orange-light: #FFF0E6;
  --teal-green: #0D7C75;
  --teal-dark: #095954;
  --teal-light: #E6F4F3;

  /* Neutral Colors */
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --surface-color: #F1F5F9;
  --border-color: #E2E8F0;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 4px rgba(8, 51, 88, 0.04);
  --shadow-md: 0 6px 16px rgba(8, 51, 88, 0.08);
  --shadow-lg: 0 12px 28px rgba(8, 51, 88, 0.12);
  --shadow-orange: 0 8px 20px rgba(232, 90, 28, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s ease-in-out;
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.dis-none{
  display: none;
}
/* Section Spacing */
.section-padding {
  padding: 80px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  background: var(--orange-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   2. BUTTONS & UI COMPONENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: #ffffff !important;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(232, 90, 28, 0.35);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-navy);
  color: var(--primary-navy) !important;

}

.text-w {
  color: #ffffff !important ;
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: #ffffff !important;
}

.btn-teal {
  background-color: var(--teal-green);
  color: #ffffff !important;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-teal {
  background-color: var(--teal-light);
  color: var(--teal-green);
}

.badge-orange {
  background-color: var(--orange-light);
  color: var(--accent-orange);
}

.badge-navy {
  background-color: rgba(8, 51, 88, 0.1);
  color: var(--primary-navy);
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-right a {
  color: #ffffff;
  font-weight: 500;
}

.top-bar-right a:hover {
  color: var(--accent-orange);
}

.company-tag {
  background: rgba(232, 90, 28, 0.2);
  color: var(--accent-orange);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-green);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

.nav-link.active {
  color: var(--accent-orange);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy-dark);
  cursor: pointer;
}

/* ==========================================================================
   4. HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 90px 0 110px 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 90, 28, 0.18) 0%, rgba(8, 51, 88, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--accent-orange);
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title span {
  color: var(--accent-orange);
  position: relative;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: flex;
  gap: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h4 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-card-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.floating-badge-box {
  background: #ffffff;
  color: var(--navy-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.floating-badge-box i {
  font-size: 1.8rem;
  color: var(--accent-orange);
}

/* ==========================================================================
   5. COURSES & SKILL TRACKS
   ========================================================================== */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

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

.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8, 51, 88, 0.2);
}

.course-img-wrap {
  position: relative;
  height: 200px;
  background: var(--surface-color);
  overflow: hidden;
}

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

.course-card:hover .course-img-wrap img {
  transform: scale(1.05);
}

.course-badge-floating {
  position: absolute;
  top: 15px;
  left: 15px;
}

.course-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.course-rating {
  color: #F59E0B;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy-dark);
  line-height: 1.35;
}

.course-title a {
  color: var(--navy-dark);
}

.course-title a:hover {
  color: var(--accent-orange);
}

.course-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-orange);
}

/* ==========================================================================
   6. FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-section {
  background-color: var(--bg-white);
}

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

.feature-card {
  background: var(--bg-light);
  padding: 35px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: var(--bg-white);
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--orange-light);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-card:nth-child(2n) .feature-icon {
  background: var(--teal-light);
  color: var(--teal-green);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. CORPORATE & LEGAL BANNER (ABOUT US & FOOTER)
   ========================================================================== */
.legal-box {
  background: linear-gradient(135deg, var(--teal-light) 0%, #FFFFFF 100%);
  border: 1px solid rgba(13, 124, 117, 0.2);
  border-left: 5px solid var(--teal-green);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  margin: 30px 0;
}

.legal-box h4 {
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.legal-box p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Address Cards */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.address-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-fast);
}

.address-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-navy);
}

.address-type {
  display: inline-block;
  background: var(--primary-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.address-type.reg {
  background: var(--accent-orange);
}

.address-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.address-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   8. TESTIMONIALS & FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

.faq-header i {
  transition: transform 0.3s ease;
  color: var(--accent-orange);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  display: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.faq-item.active .faq-body {
  display: block;
}

/* ==========================================================================
   9. PAGE HEADERS & POLICY CONTENT
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-banner h1 {
  color: #ffffff;
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--accent-orange);
}

.policy-content {
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.policy-content h2 {
  font-size: 1.75rem;
  margin: 30px 0 15px 0;
  color: var(--primary-navy);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px 0;
}

.policy-content p,
.policy-content ul {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.policy-content ul {
  padding-left: 20px;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 8px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrap {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(8, 51, 88, 0.15);
}

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

/* ==========================================================================
   10. FOOTER STYLES
   ========================================================================== */
.site-footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0 0;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 2px;
}

.footer-company-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-top: 15px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-company-info strong {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVE MEDIA QUERIES (Mobile, Tab, Laptop, PC)
   ========================================================================== */

/* Ultra-Wide Desktop & PC (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Laptops & Desktops (1025px to 1399px) */
@media (max-width: 1399px) and (min-width: 1025px) {
  .container {
    max-width: 1140px;
  }

  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets Landscape & Small Laptops (992px to 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    padding: 70px 0 90px 0;
  }

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

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

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Tablets & Mobile Header Drawer (max-width: 991px) */
@media (max-width: 991px) {
  .site-header {
    padding: 4px 0;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(8, 51, 88, 0.15);
    display: none;
    border-top: 2px solid var(--accent-orange);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background-color: var(--orange-light);
    border-left: 4px solid var(--accent-orange);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--surface-color);
    border-radius: var(--radius-sm);
    color: var(--navy-dark);
  }
}

/* Small Tablets & Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 55px 0;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .top-bar {
    padding: 0px;
  }

  .top-bar-inner {
     /* flex-direction: column;
    text-align: center;
    gap: 6px;  */
    display: none;
  }

  .top-bar-info {
    flex-direction: column;
    gap: 4px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-desc {
    font-size: 1.05rem;
  }

  .hero-stats-row {
    gap: 20px;
  }

  .stat-item h4 {
    font-size: 1.65rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 24px 18px;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }
.mobile-v-none{
   display: none;
}
.header-inner {
  padding: 16px;
}
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .brand-name {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
  }

  .stat-item h4 {
    font-size: 1.35rem;
  }

  .stat-item p {
    font-size: 0.72rem;
  }

  .hero-visual-card {
    padding: 20px 16px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

}