/* universal styling */

* {
  padding: 0;
  margin: 0;
  font-family: "roboto";
}

body {
  overflow-y: none;
  overflow-x: hidden;
}

/* header Styling starts */
.anchor {
  text-decoration: none;
  /* color: white; */
}

.location,
.location .anchor {
  background-color: #fe723a;
  color: white;
}

.location {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
  width: 45%;
}

.location a {
  text-decoration: none;
}

.before-nav {
  display: flex;
  height: 55px;
  width: 100vw;
  align-items: center;
}

.number-email {
  background-color: #fbf1e3;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 50px;
  color: black;
  column-gap: 70px;
  width: 65%;
}

.number-email a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
}

.number-email a:hover {
  color: #fe725a;
}

.nav {
  padding-left: 50px;
  padding-right: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav .nav-logo img {
  width: 117px;
}

.nav .nav-menu ul {
  display: flex;
  justify-content: center;
  column-gap: 50px;
  list-style-type: none;
  padding-left: 0;
  /* Optional: removes default indentation */
}

.nav .nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: black;
}

.nav .nav-menu a:hover {
  color: #fe723a;
}

.nav .nav-menu a:active {
  color: #fe723a;
}

.nav .nav-menu .menu-item {
  position: relative;
}
.nav .nav-menu .menu-item .dropdown {
  position: absolute;
  top: 200%; /* appear just below the menu item */
  left: -50%;
  background: #fbf1e3;
  color: #333;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  min-width: 200px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px dashed #ff723a;
  
}

.nav .nav-menu .menu-item .dropdown ul {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  gap: 20px;
}

.nav .nav-menu .menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav .nav-menu .menu-item .dropdown ul a {
  font-weight: 400;
}

.nav .demo-class a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.nav .demo-class a:hover {
  background-color: #e75115;
}

.nav .hamburger {
  display: none;
}

.nav .mobile-menu {
  display: none;
}

/* header styling ends */

/* hero-section styling starts */

.hero-section {
  height: 100vh;
  width: 100%;
  background-color: #fbf1e3;
  position: relative;
}

.hero-section .hero-img {
  width: 600px;
  position: absolute;
  left: 5;
  bottom: 0;
}

/* hero-section styling ends */

/* section 2 styling starts */

.section-2 {
  background-color: #fcf7ee;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* text column styling starts*/

.section-2-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-2-text h3 {
  color: #fe723a;
}

.section-2-text h2 {
  color: #1b212f;
  font-size: 35px;
  font-weight: 800;
}

.section-2-text .description {
  color: #868583;
  font-size: 15px;
  line-height: 1.8;
}

/* icons */

.section-2-text .icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 20px; /* space between columns */
  margin-bottom: 20px;
}

.section-2-text .icons .card {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
  column-span: 1;
}

.section-2-text .icons .card .icon {
  height: 72px;
  width: 72px;
  background-color: #fe723a;
  padding: 10px;
  border-radius: 10px;
  color: white;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* icon2 styling */
.section-2-text .icons .card .icon2 {
  background-color: #f8ad12;
}
/* icon3 styling */
.section-2-text .icons .card .icon3 {
  background-color: #88b520;
}
/* icon4 styling */
.section-2-text .icons .card .icon4 {
  background-color: #f96ea0;
}
/* icon5 styling */
.section-2-text .icons .card .icon5 {
  background-color: #7bbfff;
}
/* icon6 styling */
.section-2-text .icons .card .icon6 {
  background-color: #cb98e8;
}

/* card's text styling */
.section-2-text .icons .card .txt {
  font-weight: 800;
  color: #fe723a;
}

/* txt2 styling */
.section-2-text .icons .card .txt2 {
  color: #f8ad12;
}
/* txt3 styling */
.section-2-text .icons .card .txt3 {
  color: #88b520;
}
/* txt4 styling */
.section-2-text .icons .card .txt4 {
  color: #f96ea0;
}
/* txt5 styling */
.section-2-text .icons .card .txt5 {
  color: #7bbfff;
}
/* txt6 styling */
.section-2-text .icons .card .txt6 {
  color: #cb98e8;
}

/* icons ends */

/* button styling (more about us) */

.section-2 .section-2-text .more-about-us a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.section-2 .section-2-text .more-about-us a:hover {
  border: 2px dashed black;
}

/* text column styling ends*/

/* images column styling starts */

.section-2-img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}

/* row1 */
.section-2-img .row1 {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.section-2-img .row1 .img1 {
  width: 35%;
  border: 2px dashed #040303;
  border-radius: 30px;
}

.section-2-img .row1 .img2 {
  width: 65%;
  border: 2px dashed #fe723a;
  border-radius: 30px;
}
/* row1 ends */

/* row2 */
.section-2-img .row2 {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.section-2-img .row2 .img1 {
  width: 65%;
  border: 2px dashed #7a7a7a;
  border-radius: 30px;
}

.section-2-img .row2 .img2 {
  width: 35%;
  border: 2px dashed #88b520;
  border-radius: 50%;
}
/* row2 ends */

/* section 2 styling ends */

/* slider styling starts */

.slider-container {
  padding: 50px;
  display: flex;
  column-gap: 30px;
}

.slider-container .text-arrows {
  width: 30%;
}

.slider-container .text-arrows h2 {
  font-size: 37px;
  color: #e75115;
}

.slider-container .text-arrows p {
  font-size: 16px;
  color: #7a7a7a;
  text-align: justify;
  line-height: 1.6;
}

.slider-container .text-arrows .buttons {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.slider-container .text-arrows .nav-button {
  
  color: #e75115;
  cursor: pointer;
}

.slider-container .text-arrows .nav-button:hover {
  color: #ffe6dd;
}

.slider-container .slider {
  display: flex;
  align-items: center;
  column-gap: 20px;
  width: 70%;
  
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* white-space: nowrap; */
  
}

.slider-container .slider .card {
  background-color: #fbf1e3;
  width: 250px;
  height: 300px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 30px 15px 30px 15px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 20px;
  
}

.slider-container .slider .card .logo i {
  background-color: #ff723a;
  color: white;
  /* display: flex; */
  font-size: 30px;
  padding: 20px;
  border-radius: 50%;
}

.slider-container .slider .card2 .logo i {
  background-color: #f14d5d;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
}

.slider-container .slider .card3 .logo i {
  background-color: #8e66ff;
  
}

.slider-container .slider .card4 .logo i {
  background-color: #00a50c;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
}

.slider-container .slider .card h3 {
  font-size: 25px;
  color: #00000f;
}

.slider-container .slider .card p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.6;
}





/* slider styling ends */

/* section 4 styling starts */

.section-4 {
  display: flex;
  align-items: center;
  padding: 50px;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/play-learn1.webp); */
  background-image: url(../assets/images/play-learn1.webp);
  background-size: cover;
  background-position: center;
}

/* .section-4 .section-4-overlay {
    background-color: #7bbfff;
    padding: 50px;
    opacity: 50%;
} */

.section-4 .col1 {
  width: 45%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.section-4 .col1 h3 {
  font-size: 18px;
  color: #ea7040;
}

.section-4 .col1 h2 {
  font-size: 50px;
  color: white;
}

.section-4 .col1 .description {
  color: white;
  font-size: 16px;
  line-height: 1.8;
}

.section-4 .col1 .get-started a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.section-4 .col1 .get-started a:hover {
  border: 2px dashed black;
}

/* section 4 styling ends */

/* section 5 styling starts */

.section-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  row-gap: 10px;
  background-color: #ffffff;
}

.section-5 h3 {
  color: #ff723a;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 800;
}

.section-5 h2 {
  font-size: 50px;
  color: #1b212f;
  font-weight: 800;
}

.section-5 .filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
  margin-top: 20px;
  flex-wrap: nowrap;
}

.section-5 .filters .filter {
  flex-shrink: 0; /* Prevent shrinking */
}

.section-5 .filters .filter a {
  text-decoration: none;
  background-color: #fff1eb;
  color: #ff723a;
  padding: 15px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
}

.section-5 .filters .filter a:hover {
  color: white;
  background-color: #ff723a;
}

/* Active state */
.section-5 .filters .filter a:active {
  color: white;
  background-color: #ff723a;
}

/* cards's styling */
.section-5 .cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 2 equal columns */
  gap: 30px; /* space between columns */
}

.section-5 .cards .card {
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* horizontal, vertical, blur, color */
  display: flex;
  flex-direction: column;
  
}

.section-5 .cards .card .card-img img {
  width: 320px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  
}

.section-5 .cards .card .card-text {
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
  flex-direction: column;
  
}

.section-5 .cards .card .card-text .price {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 20px;
  margin-top: -35px
}
  

.section-5 .cards .card .card-text .price a {
  color: white;
  text-decoration: none;
  background-color: #e75115;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 5;
}

.section-5 .cards .card .card-text .categories a {
  text-decoration: none;
  background-color: #feedee;
  color: #f14d5d;
  padding: 10px;
  border-radius: 5px;
}

.section-5 .cards .card .card-text .categories a:hover{
  background-color: #e75115;
  color: white;
}

.section-5 .cards .card .card-text .categories .programming {
  background-color: #ffece0;
  color: #ff9f66;
}

.section-5 .cards .card .card-text .title {
  text-decoration: none;
}

.section-5 .cards .card .card-text h3 {
  font-size: 28px;
  color: #00000f;
  text-decoration: none;
  margin-top: 20px;
}

.section-5 .cards .card .card-text h3:hover {
  color: #e75115;
}

.section-5 .cards .card .card-text .periods-levels {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #1b212f;
  margin-top: 20px;
}

.section-5 .cards .card .card-text .description {
  font-size: 16px;
  color: #707070;
  width: 300px;
  line-height: 1.4;
  margin-top: 20px;
}

.section-5 .cards .card .card-text .ceo-info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-5 .cards .card .card-text .ceo-info .ceo {
  display: flex;
  column-gap: 8px;
}

.section-5 .cards .card .card-text .ceo-info .ceo .ceo-img img {
  width: 40px;
  border-radius: 50%;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role a {
  text-decoration: none;
  color: #1b212f;
  font-size: 16px;
  line-height: 1.4;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role a:hover {
  color: #e75115;
}

.section-5 .cards .card .card-text .ceo-info .ceo .name-role .role {
  color: #707070;
  font-size: 14px;
  margin-top: 3px;
}

.section-5 .cards .card .card-text .ceo-info .total-students {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding-left: 20px;
  border-left:1px solid rgb(218, 216, 216);
  font-size: 16px;
}

.section-5 .cards .card .card-text .ceo-info .total-students .numb {
  color: #e75115;

}

/* section 5 styling ends */

/* section 6 styling starts */

.section-6 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-6 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-6 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-6 .cards {
  display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 30px; /* space between columns */
}

.section-6 .cards .card {
  width: 375px;
  padding: 45px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  row-gap: 20px;
}

.section-6 .cards .card .logo {
  font-size: 55px;
}

.section-6 .cards .card h2 {
  font-size: 35px;
}

.section-6 .cards .card  p {
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 10px;
}

.section-6 .cards .card .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
} 

.section-6 .cards .card .button a:hover {
  border: 2px dashed black;
}

/* section 6 styling ends */

/* section 7 styling starts */

.section-7 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-7 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-7 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-7 .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap:20px;
}

.section-7 .cards .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center;
  row-gap: 10px;
  background-color: white;
  width: 212px;
  padding-top: 35px;
  padding-bottom: 35px;
  border-radius: 10px;
}

.section-7 .cards .card .heading {
  text-decoration: none;
  color: #1b212f;
  font-size: 24px;
  line-height: 1.0;
  font-weight: 600;
}

.section-7  .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
}

.section-7  .button a:hover {
  border: 2px dashed black;
}

/* section 7 styling ends */

/* section 8 styling starts */

.section-8 {
  margin-top: 50px;
  background-color: #fbf1e3;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}

.section-8 h3 {
  color: #e75115;
  text-decoration: underline;
  font-size: 18px;
}

.section-8 h2 {
  font-size: 35px;
  color: #1b212f;
}

.section-8 .cards {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.section-8 .cards .container {
  display: flex;
  justify-content: flex-end;

  width: 1110px;
  /* background-color: black; */
}

.section-8 .cards .container2 {
  display: flex;
  justify-content: flex-start;

  width: 1110px;
  /* background-color: black; */
}

.section-8 .cards .container .card {
  
  display: flex;
  justify-content: flex-start;
  padding-left: 75px;
  align-items: center;
  background-color: #f4a21a;
  width: 90%;
  height: 236px;
  position: relative;
  box-sizing: border-box;
  border-radius: 20px;
  border: 2px dashed black;
  text-align: left;
}

.section-8 .cards .container .card2 {
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  background-color: #88b520;
}

.section-8 .cards .container .card3 {
  background-color: #376179;
}



.section-8 .cards .container .card .card-text{
  width: 650px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.section-8 .cards .container .card .card-text .heading {
  font-size: 40px;
  color: #fbf1e3;
  font-weight: 900;
  text-decoration: none;
}

.section-8 .cards .container .card .card-text .heading img {
  width: 40px;
  margin-bottom: -7px;
}

.section-8 .cards .container .card .card-text .description {
  font-size: 14px;
  color: #fbf1e3;
  line-height: 1.8;
}

.section-8 .cards .container .card .card-image {
  position: absolute;
  right: 75px;
  bottom: 0;
}

.section-8 .cards .container .card2 .card-image{
  position: absolute;
  left: 75px;
  bottom: 0;
}

/* section 8 styling ends */

/* section 9 styling starts */

.section-9 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}

.section-9 h2 {
  font-size: 40px;
  color: #1b212f;
  text-transform: capitalize;
}

.section-9 .cards {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
}

.section-9 .cards .card {
  display: flex;
  column-gap: 50px;
  justify-content: center;
  align-items: center;
}

.section-9 .cards .card2 {
  flex-direction: row-reverse;
}

.section-9 .cards .card .card-img img {
  width: 430px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.section-9 .cards .card .card-text {
  width: 510px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
}

.section-9 .cards .card .card-text h3 {
  font-size: 33px;
  font-weight: 800;
  color: #1b212f;
}

.section-9 .cards .card .card-text p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.6;
}

/* section 9 styling ends */

/* section 10 styling starts */

.section-10 {
  background-color: #fff8f5;
  padding: 50px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.section-10 h3 {
  font-size: 20px;
  text-decoration: underline;
  font-weight: 700;
  color: #e75115;
}

.section-10 h2 {
  font-size: 45px;
  color: #1b212f;
}

.section-10 .cards {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap:30px;
  /* justify-content: ; */
}

.section-10 .cards .card {
  width: 324px;
  
}

.section-10 .cards .card-text {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 10px;
}

.section-10 .cards .card .card-img img {
  width: 324px;
  height: 324px;
  border-radius: 5px;
}

.section-10 .cards .card .card-text .name {
  font-size: 24px;
  color: #000009;
}

.section-10 .cards .card .card-text .role {
  font-size: 14px;
  color: #707070;
}

.section-10 .cards .card .card-text .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

.section-10 .cards .card .card-text .social-icons .icon {
  height: 40px;
  width: 40px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}


.section-10 .cards .card .card-text .social-icons .icon a {
  color: #e75115;
}

.section-10 .cards .card .card-text .social-icons .icon a:hover {
  color: white;
}


.section-10 .cards .card .card-text .social-icons .icon:hover 
{
  background-color: #e75115;
}

/* section 10 styling ends */

/* section 11 styling starts */

.section-11 {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 10px;
}

.section-11 h3  {
  font-size: 20px;
  text-decoration: underline;
  color: #e75115;
}

.section-11 h2 {
  font-size: 45px;
  color: #1b212f;
}

.section-11 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.section-11 .cards .card {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 300px;
  padding: 25px 30px 25px 30px;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
}

.section-11 .person-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.section-11 .person-info .person-img img {
  width: 70px;
  object-fit: cover;
}

.section-11 .person-info .person-det {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.section-11 .person-info .person-det .person-name {
  font-size: 24px;
  color: #00000f;
}

.section-11 .person-info .person-det .relation {
  font-size: 16px;
  color: #e75115;
}

.section-11 .cards .card .feedback {
  color: #707070;
  font-size: 16px;
  line-height: 1.6;
}

.section-11 .cards .card .icon i {
  font-size: 35px;
  color: #ea7040;
}

/* section 11 styling ends */

/* section 12 styling starts */

.section-12 {
  padding: 50px;
  background-color: #fdf8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}

.section-12 a {
  text-decoration: none;
}

.section-12 h3 {
  font-size: 20px;
  color: #e75115;
  text-decoration: underline;
  text-align: center;
}

.section-12 h2 {
  color: #1b212f;
  font-size: 45px;
  text-align: center;
}

.section-12 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}

.section-12 .cards .card {
  width: 320px;
  background-color: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  
}

.section-12 .cards .card .card-img img {
  width: 320px;
  border-radius: 15px;
}

.section-12 .cards .card .card-img img:hover {
  transform: scale(1.05); transition: transform 0.3s;
}

.section-12 .cards .card .card-text {
  padding: 20px 25px 20px 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.section-12 .cards .card .card-text .school-skills a {
  font-size: 18px;
  color: #e75115;
}

.section-12 .cards .card .card-text .title a {
  font-size: 24px;
  color: #1b212f;
  font-weight: 600;
  line-height: 1.6;
}

.section-12 .cards .card .card-text .title a:hover {
  color: #e75115;
}

.section-12 .cards .card .card-text .uploading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #707070;
  padding-top: 15px;
  border-top: 1px solid #d8d7d7;
  font-size: 16px;
}

.section-12 .cards .card .card-text .uploading .uploader a {
  color: black;
}

.section-12 .cards .card .card-text .uploading .uploader a:hover {
  color: #e75115;
}

.section-12  .button a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 25px;
  padding-left: 25px;
  border-radius: 25px;
}

.section-12  .button a:hover {
  border: 2px dashed black;
}
/* section 12 styling ends */

/* about page styling starts */

.about-page {
  padding: 50px;
  display: flex;
  justify-content: center;
  
  background-color: #fbf1e3;
}

.about-page h2 {
  font-size: 50px;
  align-items: center;
  color: #1b212f;  
}

/* about page styling ends */

/* price page styling starts */

.pricing-table {
  padding: 50px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}

.pricing-table h3 {
  text-align: center;
  color: #e75115;
  font-size: 18px;
  text-decoration: underline;
}

.pricing-table h2 {
  text-align: center;
  font-size: 44px;
  color: #1b212f;
}

.pricing-table .pricing-container .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  margin: 10px 0px 50px 0px;
}

.pricing-table .pricing-container .buttons .button {
  padding: 15px 30px 15px 30px;
  background-color: #fff1eb;
  border-radius: 27px;
  color: #e75115;
  cursor: pointer;
}

.pricing-table .pricing-container .buttons #monthlyBtn {
  background-color: #ff723a;
  color: white;
}



.pricing-table .pricing-container .buttons .button:focus {
  color: white;
  background-color: #e75115;
}

.pricing-table .pricing-container .cards {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}

.pricing-table .pricing-container .cards .card {
  width: 344px;
  padding: 50px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*row-gap: 15px;*/
  background-color: #8e66ff;
  border-radius: 5px;
}



.pricing-table .pricing-container .cards .card h2{
  color: white;
}

.pricing-table .pricing-container .cards .card p {
  font-size: 20px;
  text-align: center;
}

.pricing-table .pricing-container .cards .card .icon {
  font-size: 50px;
}

.pricing-table .pricing-container .cards .card .price {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 20px 0px 20px 0px;
  border-top: 2px solid #ffffff26;
}

.pricing-table .pricing-container .cards .card .price .original {
  font-size: 30px;
  text-decoration: line-through;
  color: #ffffff26;
}

.pricing-table .pricing-container .cards .card .price .discounted {
  font-size: 40px;
}

.pricing-table .pricing-container .cards .card .month {
  font-size: 16px;
}

.pricing-table .pricing-container .cards .card .list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  margin: 20px 0px 20px 0px;
}

.pricing-table .pricing-container .cards .card .list .row {
  display: flex;
  column-gap: 20px;
}


/* .pricing-table .pricing-container .cards .card .buy-now {
  width: 244px;
  border: 10px solid black;
} */

.pricing-table .pricing-container .cards .card .buy-now  {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px 10px 0px;
  border-radius: 27px;
  text-decoration: none;
  color: white;
  width: 100%;
  border: 2px solid white;
}

.pricing-table .pricing-container .cards .card .buy-now:hover {
  background-color: white;
  color: #8e66ff;
}

.pricing-table .pricing-container .cards .card2 {
  background-color: #ff723a;
}

.pricing-table .pricing-container .cards .card2 .buy-now:hover {
  color: #ff723a;
}

.pricing-table .pricing-container .cards .card3 {
  background-color: #f14d5d;
}

.pricing-table .pricing-container .cards .card3 .buy-now:hover {
  color: #f14d5d;
}

.pricing-table .pricing-container .yearly-cards {
  display: none;
}


/* price page styling ends */

/* newsletter styling starts */

.newsletter {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 50px;
  background-color: #fff8f5;
  margin-top: 2px;
}

.newsletter h2 {
  font-size: 50px;
  color: #1b212f;
  text-align: center;
}

.news-letter .text-box form {
  display: flex;
  flex-direction: column;
}

.newsletter .text-box .row{
  display: flex;
  justify-content: space-between;
  padding: 5px;
  border-radius: 29px;
  width: 558px;
  border: none;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  box-sizing: border-box;
}

.newsletter .text-box .eml {
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 29px;
  
}

.newsletter .text-box .eml:focus {
  outline: none;
}

.newsletter .text-box button {
  background-color: #e75115;
  color: white;
  padding: 18px;
  font-weight: 600;
  border: none;
  border-radius: 27px;
  /* margin-left: -147px; */
  white-space: nowrap;
  cursor: pointer;
}

.newsletter .text-box button:hover {
  background-color: #ea7040;
}

.newsletter .mobile-search {
  display: none;
}

/* newsletter styling ends */

/* course-component-1 styling starts */

.course-component-1 {
  padding: 75px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.course-component-1 h2 {
  color: #1b212f;
  font-size: 40px;
}

.course-component-1 .ceo {
  font-size: 18px;
  color: #707070;
}

.course-component-1 .ceo a {
  text-decoration: none;
  color: #ea7040;
}

/* =========================================================================== */
.course-component-1  .course-img img {
  object-fit: cover;
  width: 70%;
}
.course-component-1  .course-img {
  display: flex;
  gap:20px;
}

.course-component-1 .course-img .lessons {
  width: 30%;
}

@media (max-width: 1024px){
  .course-component-1  .course-img img {
    width: 100%;
  }
  
  .course-component-1  .course-img {
    flex-direction: column;
  }
  
  .course-component-1 .course-img .lessons {
    width: 100%;
  }
}

.course-component-1 .course-img .lessons h3 {
  width: 100%;
  border-bottom: 1px solid #d0d4dd;
  padding-bottom: 10px;
  font-size: 22px;
}

.course-component-1 .course-img .lessons .lessons-content {
  height: 500px;
  overflow-y: auto;
  padding-right: 20px;
}

.course-component-1 .course-img .lessons .lessons-content h4 {
  color: #707070;
  font-size: 16px;
  margin-top: 20px;

}

.course-component-1 .course-img .lessons .lessons-content ul li {
  list-style-type: none;
  line-height: 3.5;
  color: #505050;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-component-1 .course-img .lessons .lessons-content ul li a {
  text-decoration: none;
  color: #505050;
  font-size: 16px;
  
}

/* =========================================================================== */

.course-component-1 .buttons {
  display: flex;
  align-items: center;
  column-gap: 20px;
  height: fit-content;
  margin-top: 10px;
}

.course-component-1 .buttons .btn a {
  text-decoration: none;
  color: #1b212f;
  border: 1px solid #d0d4dd;
  padding: 15px;
  border-radius: 5px;
  white-space: nowrap;
  
}

.course-component-1 .buttons .btn a:hover {
  color: white;
  background-color: #e75115;
  border: 1px solid #e75115;
}

.course-component-1 .buttons .share {
  text-decoration: none;
  color: #1b212f;
  border: 1px solid #d0d4dd;
  padding: 15px 20px 15px 20px;
  border-radius: 25px;
  width: fit-content;
}

.course-component-1 .buttons .share:hover {
  color: white;
  background-color: #e75115;
  border: 1px solid #e75115;
}

.course-component-1 .buttons .price {
  font-weight: 400;
  display: flex;
  column-gap: 10px;
  font-size: 17px;
  white-space: nowrap;
}

.course-component-1 .buttons .price .original {
  color: #707070;
  text-decoration: line-through;
  white-space: nowrap;
}

/* course-component-1 styling ends */


/* course-component-2 styling starts */

.course-component-2 {
  padding: 50px 75px 50px 75px;
  display: flex;
  gap: 20px;
  
}

.course-component-2 .col1 h2 {
  font-size: 28px;
  color: #1b212f;
}

.course-component-2 .col1 {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  width: 70%;
}

.course-component-2 .col1 p {
  font-size: 16px;
  color: #707070;
  line-height: 1.6;
}

.course-component-2 .col1 h3 {
  font-size: 22px;
  color: #1b212f;
}

.course-component-2 .col1 ul li {
  color: #707070;
  line-height: 1.8;
}

.course-component-2 .col1 .rating .row {
  display: flex;
  align-items: center;
  column-gap: 50px;
}

.course-component-2 .col1 .rating .row .stars-stuff {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.course-component-2 .col1 .rating .row .stars-stuff .stars {
  color: #cccccc;
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.course-component-2 .col1 .rating .row .stars-stuff .numbers {
  display: flex;
  column-gap: 10px;
  color: #fecd5c;
}

.course-component-2 .col1 .rating .row .stars-stuff .numbers .button a {
  text-decoration: none;
  color: #fecd5c;
}

.course-component-2 .col1 .rating .row .enrolled {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #e75115;
  font-size: 18px;
}

.course-component-2 .col1 .rating .row .enrolled .total-numb {
  color: #e75115;
}

.course-component-2 .col1 .date-language {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-top: 20px;
}

.course-component-2 .col1 .date-language .container {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 16px;
  color: #1b212f;
}

.course-component-2 .col1 .date-language .container h4 {
  font-weight: 500;
}

.course-component-2 .col1 .meet-teacher {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 50px;
}

.course-component-2 .col1 .meet-teacher h3 {
  font-size: 30px;
  color: #1b212f;
}

.course-component-2 .col1 .meet-teacher .card {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.course-component-2 .col1 .meet-teacher .card .card-img img {
  width: 65px;
  border-radius: 50%;
}

.course-component-2 .col1 .meet-teacher .card .card-text {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.course-component-2 .col1 .meet-teacher .card .card-text .name a {
  text-decoration: none;
  font-size: 20px;
  color: #1b212f;
}

.course-component-2 .col1 .meet-teacher .card .card-text .role {
  color: #e75115;
  font-size: 16px;
}

.course-component-2 .col1 .related-skills {
  margin-top: 50px;
}

.course-component-2 .col1 .related-skills h3 {
  font-size: 30px;
  color: #1b212f;
}

.course-component-2 .col1 .related-skills .links {
  height: max-content;
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  
  padding: 20px 0px 20px 0px;

}

.course-component-2 .col1 .related-skills .links .link a {
  border: 1px solid rgb(231, 231, 231);
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: #1b212f;
  flex-shrink: 0;
  white-space: nowrap;
}

.course-component-2 .col1 .related-skills .links .link a:hover {
  color: white;
  background-color: #e75115;
  border: #e75115;
}

.course-component-2 .col2 {
  width: 30%;
  padding: 30px 20px 30px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: fit-content;
  row-gap: 25px;
}

.course-component-2 .col2 h3 {
  font-size: 25px;
  color: #1b212f;
}

.course-component-2 .col2 .list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.course-component-2 .col2 .list .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.course-component-2 .col2 .list .row .icon {
  color: #ffc00b;
}

.course-component-2 .col2 .list .row .text {
  font-size: 16px;
  color: #1b212f;
}
/* course-component-2 styling ends */

/* footer styling starts */

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 50px 20px 50px;
}

.footer .col1 a img {
  width: 200px;
}

.footer .col1 .sub-text {
  color: #707070;

}

.footer h3 {
  font-size: 20px;
  color: #e75115;
  margin-bottom: 10px;
}

.footer a {
  text-decoration: none;
  color: #707070;
}

.footer ul {
  
}


.footer ul li {
  list-style-type:none;
  line-height: 2.0;
}

.footer .col4  .row {
  display: flex;
  align-items: center;
  column-gap: 10px;
  line-height: 2.0;
}

.footer .col4  .row .icon {
  color: #e75115;
}

.footer .col4 .social {
  margin-top: 10px;
}

.footer .col4 .social a {
  height: 33px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e75115;
  color: white;
  border-radius: 50%;
}

.footer .col4 .social a:hover {
  transform: scale(1.05); transition: transform 0.3s;
}

footer .copyright {
  padding: 20px  0px 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbf1e3;
}

footer .copyright a {
  text-decoration: none;
  color: #e75115;
}

/* footer styling ends */

/* jump to top button styling starts */

.jump-btn a {
  background-color: #e75115;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
}

/* jump to top button styling ends */

.hero-slider {
  position: relative;
}

.hero-slider .prevBtn, .hero-slider .nextBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.hero-slider .nextBtn {
  right: 0px;
}

.hero-slider .slider{
  width: 100%;
  height: 30vh;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-slider .slider .slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  flex-shrink: 0;
}

.hero-slider .slider .slide .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slider .slider .slide .overlay .slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-slider .slider .slide .overlay .slide-content h2{
  color: white;
  /* font-size: 4rem; */
  text-align: center;
}

.hero-slider .slider .slide .overlay .slide-content a {
  text-decoration: none;
  font-weight: 600;
  background-color: #ff723a;
  border: 2px solid #ff723a;
  color: white;
  padding: 15px;
  border-radius: 25px;
}

.hero-slider .slider .slide .overlay .slide-content a:hover {
  border: 2px dashed black;
}



@media (min-width: 640px){
  .hero-slider .slider {
    height: 70vh;
  }

  .hero-slider .slider .slide .overlay .slide-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px){
  .hero-slider .slider {
    height: 90vh;
  }

  .hero-slider .slider .slide .overlay .slide-content h2 {
    font-size: 4rem;
  }
}

/* hero-slider styling ends */

/* empowering section styling starts */

.empowering {
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.empowering .col1 {
  width: 40%;
}


.empowering .col1 img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.empowering .col2 {
  width: 40%;
}

.empowering .col2 .text {
}

.empowering .col2 h3 {
  font-size: 20px;
  color: #ff723a;
  text-decoration: underline;
}

.empowering .col2 h2 {
  font-size: 40px;
  color: #1b212f;
  width: 470px;
  font-weight: 700;
  margin-top: 20px;
}

.empowering .col2 p {
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
  margin-top: 20px;
  width: 470px;
}

/* empowering section styling ends */

/* contact page styling starts */

/* Section Container */
.contact-section {
  /* width: 100%; */
  padding: 80px 50px;
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 50px 5px;
  }
}

.contact-section .contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left Side - Image */
.contact-section .contact-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.contact-section .contact-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Right Side - Contact Info */
.contact-section .contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-section .contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-section .contact-info .contact-description {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Contact Box */
.contact-section .contact-box {
  background: #f9f8ff;
  padding: 20px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.contact-section .contact-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.contact-section .icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #fff;
}

.contact-section .icon.purple {
  background: #6a5acd;
}

.contact-section .icon.red {
  background: #ff4c60;
}

.contact-section .icon.orange {
  background: #ff8c42;
}

.contact-section .contact-details p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-section .contact-box {
    /* justify-content: center; */
    text-align: left;
  }

  .contact-section .contact-info h2 {
    font-size: 2rem;
  }
}


/* section 1 styling ends */

/* ===== Section ===== */
.contact-form-section {
  padding: 80px 50px;
  box-sizing: border-box;
}

.contact-form-section .contact-form-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Title ===== */
.contact-form-section .contact-form-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== Flex Layout ===== */
.contact-form-section .contact-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* ===== Form ===== */
.contact-form-section .contact-form-wrapper {
  width: 50%;
}

.contact-form-section .contact-form {
  background: #f9f8ff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-section .form-group {
  margin-bottom: 20px;
}

.contact-form-section .form-group.double {
  display: flex;
  gap: 20px;
}

.contact-form-section .input-box {
  flex: 1;
}

.contact-form-section .contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form-section .contact-form input,
.contact-form-section .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.contact-form-section .contact-form textarea {
  resize: none;
}

.contact-form-section .submit-btn {
  width: 100%;
  padding: 14px;
  background: #fe723a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ===== Map ===== */
.contact-form-section .contact-map {
  width: 50%;
  height: 600px; /* ✅ FIX: lock the map height */
  border-radius: 15px;
  overflow: hidden;
}

.contact-form-section .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-form-section .contact-flex {
    flex-direction: column;
  }

  .contact-form-section .contact-form-wrapper,
  .contact-form-section .contact-map {
    width: 100%;
    height: auto;
  }

  .contact-form-section .contact-map iframe {
    height: 400px;
  }

  .contact-form-section .form-group.double {
    flex-direction: column;
  }
}


/* contact page styling ends */

@media (max-width: 1024px) {
  /* header styling starts */

  header {
    overflow-x: hidden;
  }

  .before-nav {
    flex-direction: column;
    width: 100vw;
    height: auto;
  }

  .number-email {
    width: 100%;
    justify-content: center;
  }

  .location {
    width: 100%;
  }

  .nav .demo-class {
    margin-right: 50px;
  }

  /* hamburger styling starts */
  .nav .hamburger {
    display: block;
    font-size: 30px;
    position: absolute;
    right: 50px;
    top: 135px;
  }

  .nav .nav-menu {
    display: none;
  }

  .nav .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    background-color: #fff;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 50;
  }

  .nav .mobile-menu ul a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
  }

  .nav .mobile-menu ul li {
    padding: 10px;
  }

  /* hamburger styling ends */

  /* header styling ends */

  /* hero section styling starts */
  .hero-section .hero-img {
    width: 500px;
  }
  /* hero section styling ends */

  /* section 2 styling starts */

  .section-2 {
    flex-direction: column;
  }

  .section-2-text {
    width: 100%;
  }

  .section-2-img {
    width: 100%;
    margin-top: 50px;
  }

  /* section 2 styling ends */

  /* slider styling starts */

  .slider-container {
    flex-direction: column;
  }

  .slider-container .text-arrows {
    width: 100%;
    
    
  }

  .slider-container .text-arrows .text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slider-container .text-arrows .text p {
    width: 70%;
    text-align: center;
    
  }

  .slider-container .slider {
    width: 100%;
  }

  /* slider styling ends */

  /* section 4 styling starts */

  .section-4 .col1 {
    width: 80%;
  }

  .section-4 .col1 h2 {
    font-size: 40px;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 20px; /* space between columns */
  }
  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 330px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 33px;
  }

  /* section 6 styling ends */

  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(4, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container {
    width: 100%;
  }

  .section-8 .cards .container .card .card-text {
    width: 400px;
  }

  .section-8 .cards .container .card, .card2 {
    width: 100%;

  }

  .section-8 .cards .container .card .card-image {
    position: static;
    
  }

  .section-8 .cards .container .card .card-image img {
    width: 150px;
    margin-right: 50px;
  }

  /* section 8 styling ends */

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 360px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  }

  .section-9 .cards .card .card-text {
    width: 422px;
  }

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 .cards {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */

  .section-12 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
  }

  /* section 12 styling ends */


  /* pricing table styling starts */

  .pricing-table .pricing-container .cards {
    display: grid;
    justify-content: center;
    grid-template-columns:  repeat(2, auto);
    gap: 20px;
    
  }
  
  .pricing-table .pricing-container .yearly-cards{
    display: none;

  }

  /* pricing table styling ends */

  /* empowering section styling starts */
  .empowering {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .empowering .col1 {
    width: 100%;
  }
  .empowering .col2 {
    width: 100%;
  }

  .empowering .col2 h2 {
    width: 100%;
    font-size: 32px;
  }

  .empowering .col2 p {
    width: 100%;
  }

  .empowering .col2 .text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* empowering section styling ends */

}

@media (max-width: 768px) {
  /* header styling starts */
  .before-nav {
    display: none !important;
  }

  .nav .hamburger {
    top: 25px;
    right: 50px;
  }

  .nav .demo-class {
    margin-right: 100px;
  }

  /* header styling ends */

  /* section 4 styling starts */

  .section-4 .section-4-overlay {
    display: flex;
    justify-content: center;
  }

  .section-4 .col1 {
    align-items: center;
    /* width: 100%; */
    text-align: center;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 h2 {
    font-size: 36px;
  }
  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-6 .cards .card {
    width: 350px;
    padding-left: 30px;
    padding-right: 30px;
  }

  /* section 6 styling starts */

  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container .card .card-text {
    text-align: center;
  }

  .section-8 .cards .container .card .card-image {
    display: none;
  }

  .section-8 .cards .container .card  {
    padding: 50;
  }

  /* section 8 styling ends */

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 330px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  }

  .section-9 .cards .card .card-text {
    width: 350px;
  }

  .section-9 h2 {
    font-size: 35px;
  }

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 {
    justify-content: center;
    align-items: center;
  }

  .section-10 h2 {
    text-align: center;
    font-size: 27px;
  }

  .section-10 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-11 h3 {
    text-align: center;
  }

  .section-11 h2 {
    font-size: 35px;
    text-align: center;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */

  .section-12 h2 {
    font-size: 40px;
  }

  .section-12 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-2 {
    flex-direction: column;
  }

  .course-component-2 .col1 {
    width: 100%;
  }

  .course-component-2 .col2 {
    width: 100%;
  }

  /* courses page styling ends */

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  
  /* footer styling ends */
  
}

@media (max-width: 640px) {
  .section-2 {
    text-align: center;
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-2-text h2 {
    font-size: 26px;
  }

  .section-2 .description {
    font-size: 15px;
  }

  .section-2 .section-2-text .icons .card {
    flex-direction: column;
    row-gap: 20px;
  }

  .section-2 .section-2-text .icons .icon {
    height: 40px;
    width: 40px;
    font-size: x-large;
  }

  .section-2-text .more-about-us {
    font-size: 15px;
  }

  /* section 4 styling starts */

  .section-4 {
    padding-right: 0;
    padding-left: 0;
  }

  .section-4 .col1 {
    width: 90%;
  }

  .section-4 .col1 h3 {
    font-size: 16px;
  }

  .section-4 .col1 h2 {
    font-size: 28px;
  }

  .section-4 .col1 .description {
    font-size: 15px;
  }

  .section-4 .col1 .get-started a {
    font-size: 15px;
  }

  /* section 4 styling ends */

  /* section 5 styling starts */
  .section-5 h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-5 h3 {
    text-align: center;
  }

  .section-5 {
    align-items: center; /* <- Allow child to take full width */
  }

  .section-5 .filters {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: nowrap;
    width: 100%; /* critical for scroll */
    scrollbar-width: none;
  }

  .section-5 .filters .filter {
    flex-shrink: 0;
  }

  .section-5 .filters .filter a {
    font-size: 14px;
    min-width: 120px;
    text-align: center;
  }

  /* cards styling */

  
  .section-5 .cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 equal columns */
    gap: 20px; /* space between columns */
  }
  /* section 5 styling ends */


  /* section 7 styling starts */

  .section-7 .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* section 7 styling ends */

  /* section 9 styling starts */

  .section-9 h2 {
    font-size: 28px;
    text-align: center;
  }

  .section-9 .cards .card {
    flex-direction: column;
    row-gap: 50px;
  }

  

  .section-9 .cards .card .card-text {
    width: 100%;
  }

  .section-9 .cards .card .card-text h3 {
    font-size: 24px;
  }

  .section-9 .cards .card .card-text p {
    font-size: 14px;
  }

  /* section 9 styling ends */

  /* section 11 styling starts */

  .section-11 h2 {
    font-size: 30px;
  }

  /* section 11 styling ends */

  /* courses page styling starts */

  .course-component-1 {
    padding: 50px;
  }

  .course-component-2 {
    padding: 50px;
  }

  /* courses page styling ends */

  /* about page styling starts */


  .about-page h2 {
    font-size: 40px;
  }

  /* about page styling ends */

  

  /* newsletter styling starts */

  .newsletter h2 {
    font-size: 35px;
  }

  .newsletter .text-box form .row {
    width: 420px;
    padding: 3px;
  }


  .newsletter .text-box form .row button {
    padding: 15px;
  }

  /* newsletter styling ends */

  /* pricing table styling starts */

  .pricing-table h2 {
    font-size: 35px;
  }

  .pricing-table .pricing-container .cards {
    display: grid;
    grid-template-columns:  repeat(1, auto);
    gap: 20px
  }
  
  .pricing-table .pricing-container .yearly-cards{
    display: none;

  }

  /* pricing table styling ends */

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* footer styling ends */
    
}

@media (max-width: 550px) {
  .hero-section .hero-img {
    width: 400px;
  }

  .section-8 .cards .container .card  {
    width: 100vw;
  }

  .section-8 .cards .container .card .card-text .heading {
    font-size: 27px;
  }

  .section-8 .cards .container .card .card-text .description {
    font-size: 14px;
  }

  /* section 12 styling starts */

  .section-12 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-12 h2 {
    font-size: 35px;
  }


  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-1 .buttons {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3,1fr);
    row-gap:40px;
  }

  /* courses page styling ends */

  /* newsletter styling starts */

  .newsletter .text-box form .row {
    width: 300px;
  }

  .newsletter .text-box .desktop-search {
    display: none;
  }

  .newsletter .mobile-search {
    display: block;
  }

  /* newsletter styling ends */
}

@media (max-width: 469px) {
  .nav {
    padding: 5px;
  }

  .nav .hamburger {
    right: 50px;
  }

  /* slider styling starts */

  .slider-container .text-arrows .text p {
    width: 90%;
  }

  /* slider styling ends */

  /* section 6 styling starts */

  .section-6 h2 {
    font-size: 26px;
  }

  .section-6 .cards .card {
    width: 330px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 33px;
  }

  /* section 6 styling ends */

  /* section 7 styling starts */

  .section-7 h2 {
    font-size: 26px;
  }

  .section-7 .cards {
    grid-template-columns: repeat(1, 1fr);
  }

  /* section 7 styling ends */

  /* section 8 styling starts */

  .section-8 .cards .container .card .card-text{
    height: 200px;
    row-gap: 0;
  }

  .section-8 .cards .container .card{
    height: 200px;
  }

  /* section 8 styling ends */

  /* section 11 styling starts */



  .section-11 h3 {
    font-size: 15px;
  }

  .section-11 h2 {
    font-size: 25px;
  }

  /* section 11 styling ends */

  .about-page h2 {
    font-size: 35px;
  }

  .pricing-table h2 {
    font-size: 25px;
  }

  /* footer styling starts */
  
  .footer {
    grid-template-columns: repeat(1, 1fr);
  }
  
  /* footer styling ends */

  .empowering {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media (max-width: 400px) {
  .hero-section .hero-img {
    width: 350px;
  }

  /* slider styling starts */

  .slider-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-container .text-arrows .text p {
    width: 100%;
  }

  /* slider styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 300px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-6 .cards .card h2 {
    font-size: 26px;
  }

  /* section 6 styling ends */

  /* section 11 styling starts */

  .section-11 {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* section 11 styling ends */

  /* section 12 styling starts */
  .section-12 h3 {
    font-size: 15px;
  }

  .section-12 h2 {
    font-size: 30px;
  }
  /* section 12 styling ends */

  /* courses page styling starts */

  .course-component-1 {
    padding: 50px 25px 50px 25px;
  }

  .course-component-1 h2 {
    font-size: 30px;
  }

  
  .course-component-1 .buttons {
    grid-template-columns: repeat(2,1fr);
  }

  .course-component-2 {
    padding: 50px 25px 50px 25px;
  }

  .course-component-2 .col1 h2 {
    font-size: 25px;
  }

  .course-component-2 .col1 .rating .row {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 10px;
  }

  .course-component-2 .col1 .date-language {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 10px;
  }

  /* courses page styling ends */
}

@media (max-width: 369px) {
  .nav .demo-class {
    font-size: 10px;
    padding: 10px;
  }

  .nav .nav-logo img {
    width: 80px;
  }

  

  .section-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* section 9 styling starts */

  .section-9 .cards .card .card-img img {
  width: 260px;
  height: 250px;
  
  }

  

  /* section 9 styling ends */

  /* section 10 styling starts */

  .section-10 {
    padding: 20px;
    
  }

  /* section 10 styling ends */

  /* section 11 styling starts */

  .section-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-11 .cards .card {
    width: 280px;
  }

  /* section 11 styling ends */
}

@media (max-width: 320px) {
  .hero-section .hero-img {
    width: 300px;
  }

  /* section 5 styling starts */

  .section-5 .cards .card .card-img img {
  width: 290px;
  
  }

  .section-5 .cards .card .card-text .description {
  width: 280px;
  }

  /* section 5 styling ends */

  /* section 6 styling starts */

  .section-6 .cards .card {
    width: 280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* section 6 styling ends */

  /* section 10 styling starts */

  .section-10 .cards .card {
    width: 280px;
  }

  .section-10 .cards .card .card-img img {
    width: 280px;
  }

  /* section 10 styling ends */

  /* section 12 styling starts */
  
  .section-12 {
    padding-left: 0;
    padding-right: 0;
  }
  /* section 12 styling ends */

  /* pricing table styling starts */

  .pricing-table .pricing-container .cards .card {
    padding: 50px 20px 50px 20px;
  }
  /* pricing table styling ends */
}




/* Container */
.blog-container {
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured Image inside content */
.blog-container .featured-image {
  margin-top: 40px;
}

.blog-container .featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Blog Content */
.blog-container .blog-content {
  margin: 40px 0;
}

.blog-container .blog-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.blog-container .blog-meta {
  color: #777;
  margin-bottom: 20px;
}

.blog-container .blog-content p {
  margin-bottom: 20px;
}

.blog-container .blog-content h2 {
  margin: 30px 0 15px;
}

.blog-container blockquote {
  border-left: 4px solid #fe723a;
  padding-left: 20px;
  font-style: italic;
  margin: 30px 0;
}

/* Author Card */
.blog-container .author-card {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-container .author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Social Share */
.blog-container .social-share {
  margin: 40px 0;
}

.blog-container .social-buttons a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  color: white;
  background: #fe723a;
  padding: 10px 20px;
  border-radius: 6px;
}

/* Related Posts */
.blog-container .related-posts {
  margin: 60px 0;
}

.blog-container .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-container .related-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.blog-container .related-card:hover {
  transform: translateY(-5px);
}

.blog-container .related-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Comments Section */
.blog-container .comments-section {
  margin: 60px 0;
}

.blog-container .comments-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.blog-container .comment-form,
.blog-container .comments-display {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
}

.blog-container .comment-form h3,
.blog-container .comments-display h3 {
  margin-bottom: 20px;
}

.blog-container .comment-form input,
.blog-container .comment-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.blog-container .comment-form button {
  background: #fe723a;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.blog-container .comment {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-container .comment h4 {
  margin-bottom: 5px;
}

.blog-container .comment-date {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-container {
    padding: 0 5px;
  }

  .blog-container .comments-wrapper {
    flex-direction: column;
  }

  .blog-container .comment-form,
  .blog-container .comments-display {
    width: 100%;
  }
}


/* ============================================= */

/* ===== Container & Layout ===== */
.container {
  display: flex;
  position: relative;
  transition: margin-left 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Sidebar ===== */
.container .sidebar {
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 100;
  overflow-y: auto;
}

.container.active .sidebar {
  left: 0;
}

/* ===== Sidebar Search ===== */
.container .sidebar .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #f9fafc;
}

.container .sidebar .search input {
  width: 80%;
  padding: 10px 5px;
  border: none;
  outline: none;
  background-color: #f9fafc;
}

.container .sidebar .search a {
  font-size: 20px;
  color: #442e66;
  font-weight: 300;
}

/* ===== Modules ===== */
.container .sidebar .modules {
  padding: 10px;
}

.container .module .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}

.container .module-dropdown {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.container .module-dropdown .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.container .module-dropdown .row:hover {
  background: #f1f1f1;
}

.container .module-dropdown .row .div {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.container .module-dropdown .row i {
  font-size: 15px;
  color: #feba16;
}

.container .module-dropdown .row .lock i {
  color: #442e66;
}

.container .module-dropdown .row p {
  font-weight: 500;
  color: #1b212f;
}

/* ===== Main Content ===== */
.container .main {
  flex: 1;
  margin-left: 0;
  transition: margin-left 0.3s ease;
}

.container.active .main {
  margin-left: 300px;
}

/* ===== Header ===== */
.container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #442e66;
  color: white;
}


.container .header .sidebar-toggle,
.container .header .toggle2 {
  font-size: 30px;
  cursor: pointer;
  padding: 20px;
  background-color: #6a5acd;
}

.container .header-content h2 {
  margin: 0;
  font-size: 1.5rem;
}

/* ===== Body & Video ===== */
.container .body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.container .video-container {
  width: 100%;
  margin-bottom: 30px;
}

.container .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.container .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Lesson Description ===== */
.container .lesson-content {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.container .lesson-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.container .lesson-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.container .key-points {
  list-style: disc;
  padding-left: 20px;
}

.container .key-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ===== Form ===== */
.container .form {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.container .form h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.container .form p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.container .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.container .name-email {
  flex: 1;
  min-width: 0;
}

.container input[type=text],
.container input[type=email],
.container textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}

.container textarea {
  resize: none;
  min-height: 120px;
  margin-bottom: 15px;
}

.container button {
  padding: 12px 25px;
  border-radius: 6px;
  background: #fe723a;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.container button:hover {
  background: #e45e28;
}

/* ===== Next/Prev Buttons ===== */
.container .next-prev {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.container .next-prev .btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #442e66;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.container .next-prev .btn i {
  font-size: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .container .form-row {
    flex-direction: column;
  }

  .container .header-content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .container .body {
    padding: 15px;
  }

  .container .lesson-title {
    font-size: 1.4rem;
  }

  .container .lesson-description {
    font-size: 0.9rem;
  }

  .container button {
    width: 100%;
  }
}

/* lesson stylings */
/* ===== Lesson Description Styled ===== */
.container .lesson-content {
  background: #f9f9fb; /* light subtle background */
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.container .lesson-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.container .lesson-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  border-left: 4px solid #fe723a; /* subtle accent */
  padding-left: 15px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
}

.container .key-points {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.container .key-points li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.container .key-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fe723a;
  font-weight: bold;
}

/* ===== Styled Checkbox ===== */
.container .form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #555;
}

.container .form .checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #fe723a; /* modern checkbox color */
  margin-top: 2px; /* align with text */
  flex-shrink: 0;
}

.container .form .checkbox p {
  margin: 0;
  line-height: 1.4;
}



/* ======================cart's styling============================= */

/* Container */
.checkout-section {
  padding: 3rem 1rem;
}

.checkout-section .container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start; /* ✅ prevents right column stretching */
}

@media (min-width: 992px) {
  .checkout-section .container {
    grid-template-columns: 2fr 1fr;
  }
}

/* Headings */
.checkout-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Sign-in Form */
.checkout-section .signin form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-section label {
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.checkout-section input[type="email"],
.checkout-section input[type="password"],
.checkout-section textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.checkout-section textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-section .remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-section .remember .left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.checkout-section .lost {
  font-size: 0.9rem;
  text-decoration: none;
  color: #fe723a;
}

.checkout-section .signup-text {
  font-size: 0.95rem;
}

.checkout-section .signup-text a {
  color: #fe723a;
  text-decoration: none;
}

/* ✅ Payment Card */
.checkout-section .payment-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid #e3e3e3;
}

.checkout-section .payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.checkout-section .payment-header h3 {
  font-size: 1.2rem;
}

.checkout-section .secure {
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.checkout-section .payment-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.checkout-section .payment-note {
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.checkout-section .place-order {
  background: #fe723a;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.checkout-section .place-order:hover {
  background: #e8622e;
}

/* Order Summary */
.checkout-section .order-summary {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: auto; /* ✅ content-based height */
}

.checkout-section .order-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-section .order-img {
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 4px;
}

.checkout-section .order-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.checkout-section .order-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.checkout-section .price {
  font-weight: bold;
}

.checkout-section .order-total {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.checkout-section .line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.checkout-section .line.total {
  font-weight: bold;
  font-size: 1.2rem;
}
