﻿/* ============================================
   TAKWIN.DZ - MAIN STYLES
   Clean and Organized CSS for the Platform
   ============================================ */

/* Fonts and Icons */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('courses-styles.css');
@import url('course-details-styles.css');
/*@import url('add-course-styles.css');*/
@import url('manage-teachers-styles.css');
@import url('add-teacher-styles.css');
@import url('pdf-library-styles.css');
@import url('videos-library-styles.css');
@import url('student-register-styles.css');
@import url('student-login-styles.css');
@import url('course-request-styles.css');
@import url('teacher-schedule-styles.css');
/*@import url('teacher-login-styles.css');*/
/*@import url('teacher-dashboard-styles.css');
@import url('teacher-course-styles.css');*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Primary colors from logo */
  --takwin-primary: #2E7CE4; /* Vibrant blue from logo circle */
  --takwin-secondary: #4CAF50; /* Bright green from logo elements */
  --takwin-accent: #66BB6A; /* Lighter green accent */
  /* Supporting colors */
  --takwin-light: #f8f9fa; /* Clean light background */
  --takwin-dark: #212529; /* Dark text/elements */
  --takwin-white: #ffffff; /* Pure white from logo background */
  --takwin-gray: #6c757d;
  --takwin-border: #dee2e6;
  /* Status colors */
  --takwin-success: #4CAF50; /* Using the green from logo */
  --takwin-info: #2E7CE4; /* Using the blue from logo */
  --takwin-warning: #FF9800; /* Complementary orange */
  --takwin-error: #f44336; /* Keep existing error color */
  /* Additional brand colors */
  --takwin-blue-light: #E3F2FD; /* Light blue tint */
  --takwin-green-light: #E8F5E8; /* Light green tint */
  --takwin-blue-dark: #1976D2; /* Darker blue shade */
  --takwin-green-dark: #388E3C; /* Darker green shade */
  /* Layout properties */
  --header-height: 80px;
  --border-radius: 12px;
  --box-shadow: 0 4px 12px rgba(46, 124, 228, 0.1);
  --transition: all 0.3s ease;
  /* Gradients inspired by logo */
  --gradient-primary: linear-gradient(135deg, #2E7CE4 0%, #4CAF50 100%);
  --gradient-light: linear-gradient(135deg, #E3F2FD 0%, #E8F5E8 100%);
  --gradient-secondary: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
  --gradient-blue: linear-gradient(135deg, #2E7CE4 0%, #1976D2 100%);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  /*font-family: 'Noto Sans Arabic', sans-serif;*/
  direction: rtl;
  background-color: #f8f9fa;
}

/* Page content wrapper approach */
.page-content-wrapper {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.main-content {
  padding: 2rem 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  /* Remove: margin-top: var(--header-height); */
}

/* Remove other conflicting margins */
.courses-page {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  /* Remove: padding-top: var(--header-height); */
}

.bread-crumb {
  /* Remove: margin-top: var(--header-height); */
  background: var(--gradient-primary);
  padding: 2rem 0;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .page-content-wrapper {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .page-content-wrapper {
    padding-top: 65px;
  }
}

.takwin-homepage {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background-color: #f5f5f5;
}

/* ============================================
   LAYOUT STRUCTURE
   ============================================ */
.page {
  position: relative;
  min-height: 100vh;
}

.main-content {
  margin-top: var(--header-height);
  padding: 2rem 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - var(--header-height));
}

  .main-content > *:first-child {
    margin-top: 0 !important;
  }

  .main-content .rz-card:first-child {
    margin-top: 0 !important;
  }

/* ============================================
   FIXED HEADER
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(46, 124, 228, 0.1);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

  .main-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(46, 124, 228, 0.15);
  }

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

/* ============================================
   LOGO
   ============================================ */
.header-logo {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.main-header.scrolled .logo-img {
  opacity: 0.9;
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--takwin-primary);
  margin: 2px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--takwin-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  background: var(--takwin-blue-light);
  font-weight: 500;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

  .nav-link:hover,
  .nav-link.active {
    background: var(--takwin-primary);
    color: white;
    transform: translateY(-2px);
  }

  .nav-link i {
    font-size: 20px;
  }

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown-toggle {
  position: relative;
}

  .dropdown-toggle.active {
    background: var(--takwin-blue-light);
    color: var(--takwin-primary);
  }

.dropdown-arrow {
  font-size: 18px !important;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

  .dropdown-arrow.rotated {
    transform: rotate(180deg);
  }

.nav-item.has-dropdown .nav-link::after,
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(46, 124, 228, 0.15);
  z-index: 1001;
  min-width: 280px;
  padding: 0;
  margin: 8px 0 0 0;
  list-style: none;
  border: 1px solid var(--takwin-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

.dropdown-item {
  margin: 0;
  padding: 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--takwin-dark);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
}

  .dropdown-link:last-child {
    border-bottom: none;
  }

  .dropdown-link:hover {
    background: var(--takwin-blue-light);
    color: var(--takwin-primary);
    padding-right: 25px;
  }

  .dropdown-link i {
    color: var(--takwin-primary);
    font-size: 18px;
  }

.click-outside-handler {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: transparent;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 1002;
  box-shadow: -4px 0 20px rgba(46, 124, 228, 0.15);
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  height: var(--header-height);
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--takwin-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

  .mobile-close-btn:hover {
    background: var(--takwin-blue-light);
  }

  .mobile-close-btn i {
    font-size: 24px;
  }

.mobile-nav-list {
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-item {
  margin-bottom: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--takwin-dark);
  text-decoration: none;
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

  .mobile-nav-link:hover {
    background: var(--takwin-blue-light);
    color: var(--takwin-primary);
  }

  .mobile-nav-link i {
    color: var(--takwin-primary);
    font-size: 20px;
  }

.mobile-dropdown-toggle {
  justify-content: space-between;
}

.mobile-link-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-link-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-dropdown-arrow {
  transition: transform 0.3s ease;
  color: var(--takwin-primary);
  font-size: 20px;
}

.mobile-dropdown-menu {
  background: var(--takwin-blue-light);
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item:has(.mobile-dropdown-menu) .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-item {
  margin: 0;
  padding: 0;
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  color: var(--takwin-dark);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

  .mobile-dropdown-link:hover {
    background: var(--takwin-light);
    color: var(--takwin-primary);
  }

  .mobile-dropdown-link i {
    color: var(--takwin-primary);
    font-size: 16px;
  }

.mobile-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--gradient-primary);
  color: white;
  border-radius: 15px !important;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 400px;
}

.slider-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  height: 100%;
}

.info-section {
  flex: 1;
  text-align: center;
  z-index: 2;
}

.info-text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.info-text2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.register-button {
  padding: 12px 30px !important;
  font-size: 1.1rem !important;
  border-radius: 25px !important;
  background: var(--takwin-accent) !important;
  border-color: var(--takwin-accent) !important;
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3) !important;
}

  .register-button:hover {
    background: var(--takwin-green-dark) !important;
    border-color: var(--takwin-green-dark) !important;
    transform: translateY(-2px);
  }

.slider-images {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

  .slider-image.active {
    opacity: 0.3;
  }

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
  background: white;
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.stat-box {
  padding: 2rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-align: center;
}

.stat-box1 {
  background: var(--takwin-green-light);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.stat-box2 {
  background: var(--takwin-blue-light);
  border: 1px solid rgba(46, 124, 228, 0.2);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(46, 124, 228, 0.15);
}

.stat-icon {
  font-size: 48px !important;
  color: var(--takwin-primary);
  margin-bottom: 1rem;
}

.stat-title {
  color: var(--takwin-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.stat-count {
  color: var(--takwin-primary);
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}

/* ============================================
   PLATFORM INTRODUCTION
   ============================================ */
.platform-intro {
  background: white;
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.platform-logo img {
  width: 100%;
  max-width: 300px;
}

.platform-header h2 {
  color: var(--takwin-primary);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.platform-header hr {
  border: 2px solid var(--takwin-accent);
  width: 100px;
  margin: 0;
}

.platform-description {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

.platform-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-icon {
  color: var(--takwin-success) !important;
  font-size: 24px !important;
  margin-left: 12px;
}

.feature-item span {
  color: var(--takwin-dark);
  font-weight: 500;
  font-size: 1.1rem;
}

/* ============================================
   SERVICES MENU
   ============================================ */
.services-menu {
  background: white;
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.service-card {
  border-radius: 15px !important;
  transition: var(--transition);
  border: 1px solid var(--takwin-border);
  height: 100%;
  cursor: pointer;
}

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(46, 124, 228, 0.15);
    border-color: var(--takwin-primary);
  }

.service-content {
  text-align: center;
  padding: 1.5rem;
}

.service-icon-button {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  margin-bottom: 1rem !important;
  background: var(--takwin-blue-light) !important;
  border: 2px solid var(--takwin-primary) !important;
}

  .service-icon-button .rz-button-icon {
    color: var(--takwin-primary) !important;
    font-size: 24px !important;
  }

.service-title {
  color: var(--takwin-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   INTEROPERABILITY SECTION
   ============================================ */
.interop-section {
  background: white;
  border-radius: 15px !important;
  box-shadow: var(--box-shadow);
}

.section-header h3 {
  color: var(--takwin-primary);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-description {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.interop-card {
  border-radius: 15px !important;
  border: 1px solid var(--takwin-border);
  transition: var(--transition);
  height: 100%;
}

  .interop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 124, 228, 0.1);
    border-color: var(--takwin-primary);
  }

.interop-content {
  text-align: center;
  padding: 1.5rem;
}

.interop-logo {
  width: 82px;
  height: auto;
  margin-bottom: 1rem;
}

.interop-title {
  color: var(--takwin-primary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.interop-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.contact-section,
.links-section,
.ministry-section {
  padding: 1.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.section-icon {
  color: var(--takwin-primary) !important;
  font-size: 24px !important;
  margin-left: 10px;
}

.section-header h5 {
  color: var(--takwin-primary);
  font-weight: 600;
  margin: 0;
}

.section-divider {
  border: 1px solid var(--takwin-light);
  width: 50%;
  margin: 1rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
}

  .contact-item:last-child {
    border-bottom: none;
  }

  .contact-item p {
    margin: 0;
    color: var(--takwin-dark);
    font-weight: 500;
  }

.contact-icon {
  color: var(--takwin-primary) !important;
  font-size: 20px !important;
}

.location-link {
  color: var(--takwin-primary);
  text-decoration: none;
  font-weight: 500;
}

  .location-link:hover {
    text-decoration: underline;
    color: var(--takwin-secondary);
  }

.social-media {
  margin-top: 1.5rem;
}

.social-button {
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  background: var(--takwin-blue-light) !important;
  border: 1px solid var(--takwin-primary) !important;
}

  .social-button .rz-button-icon {
    color: var(--takwin-primary) !important;
  }

  .social-button:hover {
    background: var(--takwin-primary) !important;
  }

    .social-button:hover .rz-button-icon {
      color: white !important;
    }

.useful-links {
  margin-top: 1rem;
}

.link-item {
  margin-bottom: 1rem;
}

.useful-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--takwin-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

  .useful-link:hover {
    color: var(--takwin-secondary);
    text-decoration: underline;
  }

.link-arrow {
  color: var(--takwin-primary) !important;
  font-size: 16px !important;
}

.ministry-section {
  text-align: center;
}

.republic-stamp {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.ministry-text {
  color: var(--takwin-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.more-services-button {
  margin-top: 1.5rem;
  background: var(--takwin-primary) !important;
  border-color: var(--takwin-primary) !important;
  border-radius: 25px !important;
  padding: 10px 20px !important;
  box-shadow: 0 4px 12px rgba(46, 124, 228, 0.3) !important;
}

  .more-services-button:hover {
    background: var(--takwin-secondary) !important;
    border-color: var(--takwin-secondary) !important;
    transform: translateY(-2px);
  }

/* ============================================
   MAIN FOOTER
   ============================================ */
.main-footer {
  background: var(--takwin-dark);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-content p {
  margin: 0;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

  .footer-link:hover {
    text-decoration: underline;
    color: var(--takwin-accent);
  }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* ============================================
   MATERIAL ICONS
   ============================================ */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   RTL SPECIFIC ADJUSTMENTS
   ============================================ */
[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}

[dir="rtl"] .useful-link {
  flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
  right: auto;
  left: 0;
}

/* ============================================
   RADZEN COMPONENT OVERRIDES
   ============================================ */
.rz-card {
  border: none !important;
  box-shadow: var(--box-shadow) !important;
}

.rz-button-primary {
  background: var(--takwin-primary) !important;
  border-color: var(--takwin-primary) !important;
}

  .rz-button-primary:hover {
    background: var(--takwin-secondary) !important;
    border-color: var(--takwin-secondary) !important;
    transform: translateY(-2px);
  }

.rz-button-success {
  background: var(--takwin-success) !important;
  border-color: var(--takwin-success) !important;
}

  .rz-button-success:hover {
    background: var(--takwin-green-dark) !important;
    border-color: var(--takwin-green-dark) !important;
  }

.rz-button-info {
  background: var(--takwin-info) !important;
  border-color: var(--takwin-info) !important;
}

  .rz-button-info:hover {
    background: var(--takwin-blue-dark) !important;
    border-color: var(--takwin-blue-dark) !important;
  }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-overlay {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .main-content {
    margin-top: 70px;
    padding: 1rem;
  }

  .logo-img {
    height: 50px;
  }

  .slider-content {
    flex-direction: column;
    text-align: center;
  }

  .info-text {
    font-size: 1.4rem;
  }

  .info-text2 {
    font-size: 1rem;
  }

  .platform-header h2 {
    font-size: 1.5rem;
  }

  .stat-count {
    font-size: 1.5rem;
  }

  .section-header h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 65px;
  }

  .mobile-nav {
    width: 100%;
  }

  .main-content {
    margin-top: 65px;
    padding: 0.5rem;
  }

  .logo-img {
    height: 45px;
  }
}
