* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: "Poppins", sans-serif;

  color: #333;

  line-height: 1.6;

  overflow-x: hidden;

}



/* Header Styles */

.header {

  background: #000;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

  position: sticky;

  top: 0;

  z-index: 1000;

}



.nav-container {

  max-width: 1400px;

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 1rem 2rem;

}



.logo img {

  height: 50px;

}



.nav-menu {

  display: flex;

  list-style: none;

  gap: 2rem;

  align-items: center;

}



.nav-menu a {

  text-decoration: none;

  color: #fff;

  font-weight: 500;

  transition: color 0.3s;

}



.nav-menu a:hover {

  color: #9333ea;

}



.cta-buttons {

  display: flex;

  gap: 1rem;

  align-items: center;

}



.whatsapp-btn {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  padding: 11px 15px;

  background: #25d366;

  color: white;

  text-decoration: none;

  border-radius: 5px;

  font-weight: 500;

  font-family: 'Sora';

}

.whatsapp-btn:hover{color: #fff; box-shadow: 0px 0px 5px #f1f1f1;}

.whatsapp-btn img {

  width: 20px;

  height: 20px;

}



.apply-btn {

  padding: 0.75rem 1.5rem;

  background: #9333ea;

  color: white;

  border: 0px;

  text-decoration: none;

  border-radius: 5px;

  font-weight: 500;

  transition: background 0.3s;

  font-family: 'Sora';

}



.apply-btn:hover {

  background: #7c3aed;

  color: #fff;

}



.mobile-menu-toggle {

  display: none;

  flex-direction: column;

  gap: 4px;

  cursor: pointer;

}



.mobile-menu-toggle span {

  width: 25px;

  height: 3px;

  background: #333;

  border-radius: 2px;

}



/* Hero Section */

.hero-section {

  text-align: center;

  padding: 4rem 2rem 2rem;

  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);

}



.hero-section h1 {

  font-size: 2.5rem;

  color: #7c3aed;

  margin-bottom: 1rem;

  font-weight: 700;

}



.hero-section h2 {

  font-size: 1.8rem;

  color: #9333ea;

  margin-bottom: 3rem;

  font-weight: 600;

}



/* Main Content Container */

.content-wrapper {

  max-width: 1400px;

  margin: 0 auto;

  padding: 3rem 2rem;

}



/* Section Styles */

.comparison-section {

  margin-bottom: 4rem;

}



.section-title {

  text-align: center;

  font-size: 2rem;

  color: #9333ea;

  margin-bottom: 3rem;

  font-weight: 700;

}



.comparison-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;

  margin-bottom: 2rem;

}



.comparison-card {

  background: white;

  border-radius: 15px;

  padding: 2rem;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  transition:

    transform 0.3s,

    box-shadow 0.3s;

}



.comparison-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.2);

}



.card-header {

  text-align: center;

  padding: 1rem;

  border-radius: 10px;

  margin-bottom: 1.5rem;

  font-weight: 600;

  font-size: 1.1rem;

}



.traditional-learning {

  background: #fee2e2;

  color: #dc2626;

}



.disclaimer {

  background: #fee2e2;

  color: #dc2626;

  font-size: 12px;

}



.pixelpop-value {

  background: #dbeafe;

  color: #2563eb;

}



.advantage-students {

  background: #d1fae5;

  color: #059669;

}



.card-content {

  color: #666;

  font-size: 0.95rem;

  line-height: 1.8;

}



.card-content p {

  margin-bottom: 1rem;

}



.card-content strong {

  color: #333;

}



.highlight-box {

  background: #f9fafb;

  border-left: 4px solid #9333ea;

  padding: 1rem;

  margin: 1rem 0;

  border-radius: 5px;

}



/* Footer Styles */

.footer {

  background: #1f2937;

  color: white;

  padding: 3rem 2rem 1rem;

}



.footer-container {

  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.5fr;

  gap: 3rem;

  margin-bottom: 2rem;

}



.footer-logo img {

  height: 50px;

  margin-bottom: 1rem;

}



.footer-tagline {

  font-size: 1.2rem;

  margin-bottom: 1.5rem;

  font-weight: 600;

}



.newsletter-form {

  display: flex;

  gap: 0.5rem;

  margin-top: 1rem;

}



.newsletter-form input {

  flex: 1;

  padding: 0.75rem;

  border: none;

  border-radius: 5px;

}



.newsletter-form button {

  padding: 0.75rem 1.5rem;

  background: #9333ea;

  color: white;

  border: none;

  border-radius: 5px;

  cursor: pointer;

  font-weight: 600;

}



.footer-section h4 {

  margin-bottom: 1rem;

  font-size: 1.1rem;

}



.footer-links {

  list-style: none;

}



.footer-links li {

  margin-bottom: 0.5rem;

}



.footer-links a {

  color: #d1d5db;

  text-decoration: none;

  transition: color 0.3s;

}



.footer-links a:hover {

  color: #9333ea;

}



.footer-bottom {

  border-top: 1px solid #374151;

  padding-top: 1.5rem;

  text-align: center;

  color: #9ca3af;

  font-size: 0.9rem;

}



/* Responsive Design */

@media (max-width: 1024px) {

  .comparison-grid {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }



  .footer-container {

    grid-template-columns: 1fr 1fr;

    gap: 2rem;

  }

}



@media (max-width: 768px) {

  .nav-menu {

    display: none;

  }



  .mobile-menu-toggle {

    display: flex;

  }



  .hero-section h1 {

    font-size: 1.8rem;

  }



  .hero-section h2 {

    font-size: 1.3rem;

  }



  .section-title {

    font-size: 1.5rem;

  }



  .nav-container {

    padding: 1rem;

  }



  .cta-buttons {

    display: none;

  }



  .footer-container {

    grid-template-columns: 1fr;

  }



  .content-wrapper {

    padding: 2rem 1rem;

  }

}



@media (max-width: 480px) {

  .hero-section h1 {

    font-size: 1.5rem;

  }



  .hero-section h2 {

    font-size: 1.1rem;

  }



  .comparison-card {

    padding: 1.5rem;

  }

}



/* =========================

   Submenu / Dropdown Styles

========================= */



/* Parent menu item */

.nav-menu li {

  position: relative;

}



/* Dropdown container */

.submenu {

  position: absolute;

  top: 120%;

  left: 0;

  min-width: 220px;

  background: #222222;

  color: white;

  list-style: none;

  border-radius: 8px;

  padding: 0.5rem 0;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);



  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  transition: all 0.25s ease;

  z-index: 999;

}



/* Show on hover */
 @media(min-width: 992px){

.nav-menu li:hover > .submenu {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}
}



/* Submenu items */

.submenu li {

  width: 100%;

}



/* Submenu links */

.submenu a {

  display: block;

  padding: 0.65rem 1.2rem;

  font-size: 0.95rem;

  color: #fff;

  font-weight: 500;

  transition:

    background 0.2s,

    color 0.2s;

}



/* Hover effect */

.submenu a:hover {

  background: #f3e8ff;

  color: #9333ea;

}



/* ========================= Mobile Dropdown ======================== */



@media (max-width: 768px) {

  .submenu {

    position: static;

    box-shadow: none;

    background: #f9fafb;

    border-radius: 6px;

    padding-left: 1rem;

    display: none;

    opacity: 1;

    visibility: visible;

    transform: none;

  }



  .nav-menu li.active > .submenu {

    display: block;

  }

}

