    
    .physicsxpert-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.physicsxpert-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.physicsxpert-section .content {
  flex: 1 1 550px;
  animation: fadeInUp 1.2s ease;
}

.physicsxpert-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.physicsxpert-section h2 span {
  color: #ec7131;
}

.physicsxpert-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e6e6e6;
}

.physicsxpert-section p.highlight {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  margin-top: 10px;
}


.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ec7131, #ffb347);
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: linear-gradient(135deg, #ffb347, #ec7131);
  transform: translateY(-3px);
}

.physicsxpert-section .image {
  flex: 1 1 400px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.physicsxpert-section .image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
}

/* Floating & fade animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .physicsxpert-section .container {
    flex-direction: column;
    text-align: center;
  }

  .physicsxpert-section h2 {
    font-size: 2rem;
  }

  .physicsxpert-section .image img {
    max-width: 300px;
  }
}

    /* ===== WHY PHYSICSXPERT SECTION ===== */
.why-physicsxpert {
  background: linear-gradient(135deg, #0a0a0a, #1b1b1b 40%, #2e2e2e);
  color: #ffffff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.why-physicsxpert .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Image on LEFT side */
.image {
  flex: 1 1 400px;
  position: relative;
  text-align: center;
  animation: float 6s ease-in-out infinite;
  order: 1;
}

.image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* Decorative bottom shape */
.image .shape {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80px;
  background: linear-gradient(135deg, #ec7131, #ffb347);
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  filter: blur(8px);
  z-index: 1;
}

/* Text on RIGHT side */
.text-content {
  flex: 1 1 550px;
  animation: fadeInUp 1.2s ease;
  order: 2;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.text-content h2 span {
  color: #ec7131;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #dcdcdc;
  margin-bottom: 15px;
}

.text-content p.highlight {
  color: #fff;
  font-weight: 500;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 35px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ec7131, #ffb347);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(236, 113, 49, 0.4);
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffb347, #ec7131);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .why-physicsxpert .container {
    flex-direction: column;
    text-align: center;
  }

  .image, .text-content {
    order: unset;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .image img {
    max-width: 320px;
  }
}

/* ===== WHY ACCESS SECTION ===== */

.why-access {
  position: relative;
  background: #f8f9fb;
  /*padding: 100px 20px;*/
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Section Heading */
.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-heading h2 span {
  color: gray;
}

.section-heading p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Content Layout */
.why-content {
  position: relative;
  z-index: 2;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Numbered Items */
.why-item {
  position: relative;
  background: black;
  border-radius: 15px;
  padding: 25px 25px 25px 80px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Number Style */
.why-number {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, black, rgba(0, 0, 0, 0.507));
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Text Content */
.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

/* Right Side Image */
.why-image {
  position: relative;
  text-align: right;
}

.why-image img {
  width: 100%;
  object-fit: cover;
}

/* Decorative Shape Behind Image */
.why-image::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, black, rgba(0, 0, 0, 0.356));
  z-index: -1;
  opacity: 0.2;
}

/* Responsive */
@media (max-width: 991px) {
  .why-image {
    margin-top: 40px;
    text-align: center;
  }

  .why-image::before {
    top: -30px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 26px;
  }
  .why-item {
    padding: 20px 20px 20px 70px;
  }
  .why-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 20px;
  }
}


    .learning-app {
  background: linear-gradient(135deg, #f7f9fb 0%, #ffffff 100%);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.learning-app .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.learning-app .content {
  flex: 1 1 550px;
}

.learning-app h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  margin-bottom: 25px;
}

.learning-app h2 span {
  color: #ec7131;
}

.learning-app p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.learning-app .features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.learning-app .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.learning-app .features i {
  color: #ec7131;
  font-size: 1.2rem;
}

.learning-app .bottom-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.learning-app .image {
  flex: 1 1 450px;
  text-align: center;
}

.learning-app .image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.learning-app .image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .learning-app .container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .learning-app .features li {
    justify-content: center;
  }
}


