/** @format */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(10px, 3vw, 20px) 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 20px) 0;
  position: relative;
  flex-wrap: wrap;
  z-index: 99999;
}

.logo img {
  height: clamp(50px, 8vw, 100px);
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(15px, 2.5vw, 30px);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: clamp(15px, 2.5vw, 30px) clamp(25px, 4vw, 60px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  position: relative;
  z-index: 99999;
}

.nav-links li a {
  text-decoration: none;
  color: #444;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  transition: color 300ms ease-in-out;
  white-space: nowrap;
}

.nav-links li a:hover {
  color: #2563eb;
}

.nav-links li.active a {
  color: #2563eb;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  font-size: clamp(24px, 4vw, 30px);
  cursor: pointer;
  background: white;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-demo {
  background: linear-gradient(90deg, #5c67ff, #42a5f5);
  color: white;
  border: none;
  padding: clamp(12px, 2vw, 25px) clamp(20px, 3vw, 40px);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(14px, 1.8vw, 20px);
  box-shadow: 0 4px 15px rgba(92, 103, 255, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-demo:hover {
  transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: clamp(20px, 4vw, 40px);
  position: relative;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: clamp(2rem, 8vw, 9rem) clamp(1rem, 4vw, 2rem);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 1.6;
  color: #555;
  max-width: 900px;
}

.hero-text .sub-text {
  font-size: clamp(14px, 1.8vw, 18px);
  margin-top: 20px;
}

.hero-image-container {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  position: relative;
}

.g-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.learningprocess {
  margin-left: clamp(0px, 30vw, 80%);
  margin-top: clamp(1rem, 3vw, 3rem);
  position: absolute;
  z-index: 10;
}

/* ===== CHALLENGES SECTION ===== */
.challenges-section {
  padding: clamp(40px, 8vw, 80px) 0;
  background: radial-gradient(circle at top right, #e0f2fe, #ffffff 40%);
  text-align: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-header p {
  color: #64748b;
  max-width: 700px;
  margin: 0 auto clamp(30px, 5vw, 50px);
  font-size: clamp(14px, 1.8vw, 18px);
}

.challenges-slider {
  padding: 20px 20px 50px !important;
}

.challenge-card {
  background: #ffffff;
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
  border-radius: 25px;
  text-align: left;
  min-height: 200px;
  height: 100%;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
}

.icon-box {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.icon-box i {
  font-size: clamp(18px, 2.5vw, 24px);
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.challenge-card h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.challenge-card p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #64748b;
  line-height: 1.5;
}

.swiper-pagination-bullet-active {
  background: #3b82f6 !important;
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-section {
  background-image: url("../assets/images/b4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: clamp(50px, 8vw, 100px) 0;
  color: #ffffff;
  overflow: hidden;
}

.outcomes-layout {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 60px);
  flex-wrap: wrap;
}

.outcomes-text {
  flex: 1;
  min-width: 300px;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.outcomes-text .sub-heading {
  color: #ffffff;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 15px;
  font-weight: 500;
}

.outcomes-text h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outcomes-text p {
  color: #94a3b8;
  line-height: 1.7;
  font-size: clamp(14px, 1.8vw, 18px);
}

.outcomes-grid {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.outcome-card {
  background: #020617;
  padding: clamp(15px, 2.5vw, 22px) clamp(15px, 2.5vw, 21px);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1em;
}

.outcome-card:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: #2563eb;
  transform: translateY(-5px);
}

.outcome-icon-box {
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background-image: url("../assets/images/b4.png");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    0 0 20px rgba(59, 130, 246, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.4);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon-box {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
  background-color: rgba(59, 130, 246, 0.25);
}

.outcome-icon-box i {
  color: #60a5fa;
  font-size: clamp(16px, 2.2vw, 20px);
}

.outcome-info h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.outcome-info p {
  font-size: clamp(12px, 1.6vw, 14px);
  color: #94a3b8;
  line-height: 1.5;
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  background-color: #dbeafe;
  padding: clamp(40px, 8vw, 80px) 0;
  font-family: "Inter", sans-serif;
}

.difference-card-container {
  background: #ffffff;
  border-radius: clamp(30px, 5vw, 40px);
  padding: clamp(20px, 4vw, 60px) clamp(20px, 5vw, 60px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.difference-card-container h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: clamp(30px, 5vw, 50px);
  line-height: 1.1;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th {
  text-align: left;
  padding: clamp(10px, 2vw, 20px) clamp(15px, 2.5vw, 30px);
  font-size: clamp(14px, 1.8vw, 18px);
  color: #334155;
  font-weight: 600;
  border-bottom: 1px solid #f1f5f9;
}

.highlight-column-header {
  background: rgba(219, 234, 254, 0.3);
  border-radius: 20px 20px 0 0;
  color: #1e40af !important;
}

.comparison-table td {
  padding: clamp(15px, 2.5vw, 30px);
  vertical-align: top;
  border-bottom: 1px solid #f1f5f9;
}

.cell-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.cell-content i {
  font-size: clamp(16px, 2vw, 20px);
  color: #3b82f6;
  margin-top: 3px;
  flex-shrink: 0;
}

.cell-content span {
  font-size: clamp(13px, 1.6vw, 16px);
  color: #000;
  line-height: 1.5;
}

.highlight-column {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  position: relative;
  z-index: 1;
}

.highlight-column .cell-content span {
  color: #1e3a8a;
  font-weight: 500;
}

.highlight-column .cell-content i {
  color: #2563eb;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
  padding: clamp(50px, 8vw, 100px) 0;
  background: #ffffff;
  overflow: hidden;
  background-image: url("../assets/images/b5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 40px);
}

.support-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 60px);
  flex-wrap: wrap;
}

.support-content {
  flex: 1;
  min-width: 300px;
}

.cta-badge {
  background: #2563eb;
  color: #ffffff;
  padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 16px);
  border-radius: 50px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-heading {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.support-description {
  font-size: clamp(14px, 1.8vw, 18px);
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 40px;
}

.support-sub-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.support-item {
  display: flex;
  gap: 15px;
}

.support-item i {
  font-size: clamp(18px, 2.2vw, 24px);
  color: #0f172a;
  flex-shrink: 0;
}

.support-item p {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.support-image-wrapper {
  flex: 1;
  min-width: 230px;
}

.support-image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.support-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== DEMO SECTION ===== */
.demo-section {
  background-color: #dbeafe;
  padding: clamp(40px, 8vw, 80px) 0;
}

.demo-banner {
  border-radius: 40px;
  padding: clamp(20px, 4vw, 50px) clamp(20px, 5vw, 50px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 300px;
  background-image: url("../assets/images/b6.png");
  background-size: cover;
  background-position: unset;
  background-repeat: no-repeat;
  flex-wrap: wrap;
}

.blue-glow {
  position: absolute;
  top: -50%;
  left: -10%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(2, 6, 23, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

.demo-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 280px;
}

.demo-content h2 {
  color: #ffffff;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.demo-content p {
  color: #94a3b8;
  font-size: clamp(14px, 1.8vw, 18px);
  max-width: 450px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-demo-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  background: rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.btn-demo-outline:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.demo-image {
  position: relative;
  flex: 1;
  min-width: 250px;
  height: auto;
  z-index: 1;
}

.demo-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: #000000;
  color: #ffffff;
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(40px, 6vw, 80px);
  gap: clamp(30px, 5vw, 50px);
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 500px;
  min-width: 280px;
}

.footer-logo {
  height: clamp(40px, 5vw, 60px);
  margin-bottom: 25px;
  width: auto;
}

.brand-desc {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.6;
  color: #cccccc;
}

.footer-links-grid {
  display: flex;
  gap: clamp(30px, 5vw, 80px);
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #888888;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #bbbfd0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  color: #888888;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffffff;
}

.dot {
  color: #444444;
  font-size: clamp(14px, 1.6vw, 16px);
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
  position: relative;
  z-index: 99999;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 999999;
  border: 1px solid #f1f5f9;
  margin-top: 10px;
}

.dropdown-content a {
  color: #1e293b !important;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 500;
  transition: all 0.3s ease;
}

.dropdown-content a i {
  font-size: clamp(16px, 2vw, 18px);
  color: #4f46e5;
}

.dropdown-content a:hover {
  background-color: #f8fafc;
  color: #4f46e5 !important;
  padding-left: 25px;
}

.dropdown.active .dropdown-content {
  display: block;
  animation: fadeInUp 0.3s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
  .container,
  .custom-container {
    max-width: 1600px;
  }

  .hero-text h1 {
    font-size: 5.5rem;
  }
}

@media (min-width: 2060px) {
  .learningprocess {
    margin-left: clamp(-20px, 20vw, 26%);
  }
  .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 3.5rem);
  }
  .section-header p {
    font-size: clamp(14px, 1.8vw, 1.5rem);
  }

  .challenges-slider {
    padding: 20px 20px 100px !important;
  }

  .challenge-card p {
    font-size: clamp(14px, 1.6vw, 1.5rem);
  }

  .icon-box {
    width: clamp(40px, 5vw, 5rem);
    height: clamp(40px, 5vw, 5rem);
  }
  .icon-box i {
    font-size: clamp(18px, 2.5vw, 2rem);
  }
  .challenge-card h3 {
    font-size: clamp(16px, 2vw, 1.5rem);
  }
  .outcomes-text p {
    font-size: clamp(14px, 1.8vw, 1.5rem);
  }
  .outcome-info p {
    font-size: clamp(12px, 1.6vw, 1.5rem);
  }
  .difference-card-container h2 {
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  }
  .comparison-table th {
    font-size: clamp(14px, 1.8vw, 2rem);
  }
  .cell-content i {
    font-size: 2rem;
  }
  .cell-content span {
    font-size: clamp(13px, 1.6vw, 1.5rem);
  }
  .support-item i {
    font-size: clamp(18px, 2.2vw, 2rem);
  }
  .support-item p {
    font-size: clamp(14px, 1.8vw, 1.8rem);
  }
  .support-description {
    font-size: clamp(14px, 1.8vw, 1.8rem);
  }
  .demo-content p {
    font-size: clamp(14px, 1.8vw, 1.8rem);
  }
}
/* MacBook Pro / Standard Laptop (1280px - 1439px) */
@media (max-width: 1439px) {
  .hero-text h1 {
    font-size: 4.5rem;
  }

  .hero-text p {
    font-size: 20px;
  }

  .nav-links {
    padding: 20px 40px;
  }
}

/* Small Laptop (1024px - 1279px) */
@media (max-width: 1279px) {
  .hero-text h1 {
    font-size: 3.8rem;
  }

  .hero-text p {
    font-size: 18px;
  }

  .nav-links {
    padding: 15px 30px;
    gap: 20px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .btn-demo {
    padding: 15px 25px;
    font-size: 16px;
  }

  .learningprocess {
    margin-left: 10rem;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .navbar {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 10px;
    font-size: 18px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    margin-top: 1.5rem;
  }

  .hero-text {
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-image-container {
    margin-top: 2rem;
  }

  .learningprocess {
    position: relative;
    margin: 2rem auto;
  }

  .outcomes-layout {
    flex-direction: column;
    text-align: center;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .outcome-icon-box {
    margin: 0 auto 20px;
  }

  .difference-card-container {
    padding: 30px;
  }

  .support-wrapper {
    flex-direction: column;
    /* text-align: center; */
  }

  .support-grid {
    justify-items: start;
    max-width: 500px;
    margin: 0 auto;
  }

  .support-item {
    text-align: left;
  }

  .demo-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .demo-content h2 {
    font-size: 32px;
  }

  .demo-content p {
    margin: 0 auto 30px;
  }

  .demo-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links-grid {
    gap: 40px;
    justify-content: space-between;
  }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn-demo {
    display: none; /* Hide on mobile, use mobile menu instead */
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .challenge-card {
    padding: 25px 20px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .outcome-card {
    margin: 0.5em;
  }

  .difference-card-container {
    padding: 20px;
  }

  .difference-card-container h2 {
    font-size: 1.8rem;
  }

  .cell-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .demo-banner {
    padding: 40px 20px;
  }

  .demo-content h2 {
    font-size: 28px;
  }

  .footer-links-grid {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
  }

  .dropdown-content a {
    color: #333 !important;
  }
}

/* Mobile Portrait (up to 479px) */
@media (max-width: 479px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 14px;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    padding: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .challenge-card {
    padding: 20px 15px;
  }

  .challenge-card h3 {
    font-size: 18px;
  }

  .challenge-card p {
    font-size: 14px;
  }

  .outcomes-text .sub-heading {
    font-size: 1.8rem;
  }

  .outcomes-text h2 {
    font-size: 20px;
  }

  .difference-card-container h2 {
    font-size: 1.5rem;
  }

  .comparison-table {
    min-width: 600px; /* Smaller min-width for mobile */
  }

  .cell-content i {
    font-size: 18px;
  }

  .cell-content span {
    font-size: 13px;
  }

  .support-heading {
    font-size: 28px;
  }

  .support-description {
    font-size: 14px;
  }

  .support-item p {
    font-size: 14px;
  }

  .demo-content h2 {
    font-size: 24px;
  }

  .demo-content p {
    font-size: 14px;
  }

  .cta-badge {
    font-size: 10px;
  }

  .learningprocess {
    width: 90%;
    margin: 1rem auto;
  }

  .process-card {
    padding: 10px;
  }

  .float-ui {
    display: none; /* Hide complex UI on very small screens */
  }
}

/* Performance Optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Ultra-wide screens (above 1920px) */
@media (min-width: 1920px) {
  .container,
  .custom-container {
    max-width: inherit; /* Thoda bada container */
  }

  .hero-text h1 {
    font-size: 6rem; /* 96px - thoda bada */
  }

  .hero-text p {
    font-size: 1.5rem; /* 24px */
    max-width: 1000px;
  }

  .difference-card-container {
    padding: 80px 100px;
  }

  .support-heading {
    font-size: 3.5rem; /* 56px */
  }
}

/* 2560px specific optimizations */
@media (min-width: 2500px) {
  .hero-text {
    padding: 10rem 4rem;
  }

  .hero-image-container {
    max-width: 600px; /* Thoda bada image */
  }

  .outcomes-text {
    padding: 6rem 3rem;
  }

  .support-grid {
    gap: 40px; /* Zyada gap */
  }
}
