* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
  background-color: #fcfafaf6;
  overflow-x: hidden;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  overflow-y: scroll;
  scrollbar-width: none;
}
.main-::-webkit-scrollbar {
  width: 100%;
  display: none;
}
#nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0px 6%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo .logo-icon {
  width: 80px;
  height: 80px;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.items ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0px 20px;
}

.items ul li {
  margin: 0px 20px;
}

.items ul li a {
  position: relative;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0px 20px;
  text-decoration: none;
  text-transform: uppercase;
  color: #1580f2ff;
  transition: all 0.5s ease;
}

.items ul li a::before {
  position: absolute;
  content: "";
  background: #020862ff;
  width: 100%;
  height: 1.6px;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.items ul li a:hover {
  color: #0641b8;
}

.items ul li a:hover::before {
  transform: scaleX(1);
}

.icons .user a {
  margin-left: 10px;
}

.user .customPath {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icons .menu {
  display: none;
  cursor: pointer;
}
.menu #menu-icon {
  width: 30px;
  height: 30px;
}

.bg-x {
  transition: all 0.5s ease;
  border-radius: 2px;
}

.items.open {
  right: 2%;
}

#Page1 {
  width: 100%;
}
.content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 50px;
}
.text-content {
  position: relative;
  padding: 60px 2%;
  width: 100%;
  background-color: #052b95ff;
  border-radius:5px;
}
.text {
  color: white;
}

.text h1 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.text button {
  margin-top: 10px;
  background-color: #ceb31cff;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #ffd700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.text button:hover {
  color: #000;
  background-color: #ffc400;
  border-color: #ffc400;
  transform: translateY(-2px);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}
.text button:active {
  transform: translateY(0);
  box-shadow: none;
}
.img-content {
  width: 100%;
  padding: 0px 3%;
}
.img {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 400px;
  border: 3px solid #073eabff;
  transition: all 0.1s ease;
}

.img-src {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 6%;
  right: 10%;
  border: 2px solid rgba(235, 4, 4, 1);
}
.img-src img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#Page1 .details {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 0%;
}

.learn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 20px;
  box-shadow: 0px 0px 3px #000;
  border-radius: 10px;
  cursor: pointer;
}

.learn .texts {
  align-self: flex-start;
}
.learn h2 {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgb(10, 41, 65);
}
.learn p {
  font-size: 1.5rem;
  font-weight: 500;
}

.learn .Graduation {
  width: 28px;
  height: 28px;
  align-self: flex-start;
}
#Page2 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px;
  background: url(./images/background.avif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.content2 {
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 20px 0px;
}
.content2 h1 {
  margin-bottom: 10px;
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #2683eeff;
}
.content2 h5 {
  color: rgba(216, 8, 8, 1);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.content2 p {
  text-align: justify;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
  word-spacing: -5px;
  color: #000;
}
.content2 button {
  margin-top: 15px;
  padding: 16px 18px;
  background-color: rgba(24, 103, 214, 1);
  color: #fff;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.content2 button:hover {
  color: #fff;
  background-color: #020c58;
  transform: translateY(-2px);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}
.content2 button:active {
  transform: translateY(0);
  box-shadow: none;
}

.section-tag {
  padding: 40px 0;
}

.course {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  margin-bottom: 30px;
}

.course h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2b55c8ff;
}

.course ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.course ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #6c757d;
  padding-bottom: 5px;
  transition: color 0.3s, border-bottom 0.3s;
  font-weight: 600;
}

.course ul li:first-child a,
.course ul li a:hover {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

.swiper {
  width: 100%;
}

.swiper {
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  cursor: pointer;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #007aff;
  font-size: 30px;
  display: none;
}
.swiper-wrapper {
  padding: 20px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.swiper-slide {
  min-width: 300px;
  max-width: 345px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:last-child {
  margin-top: 10px; 
}

.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.subjects-content img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.subjects-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
}

.lessons {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 15px 0;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.lessons h4 {
  display: flex;
  align-items: center;
}

.lessons i {
  color: #ffc107;
  margin-right: 5px;
  font-size: 1.2rem;
}

.courses-price {
  flex-grow: 1;
}

.courses-price p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 10px;
}

.courses-price h4 {
  font-size: 1.6rem;
  color: #28a745;
  font-weight: bold;
  margin-top: 5px;
}

.courses-price h4 span {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: normal;
}

.swiper-slide hr {
  border: none;
  height: 1px;
  background-color: #eee;
  margin: 15px 0;
}

.profile-card {
  display: flex;
  align-items: center;
}

.profile-card img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #007bff;
}

.profile-card .info h4 {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

.profile-card .info .rating {
  margin: 0;
  font-size: 0.9rem;
  color: gold;
}

.profile-card .info .rating span {
  color: #555;
  margin-left: 5px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #007bff;
  top: 55%;
}

.swiper-pagination-bullet-active {
  background: #007bff;
}

@media (max-width: 992px) {
  .section-tag {
    padding: 20px 0;
  }

  .course {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 30px;
  }

  .course h1 {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }

  .course ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .course ul li a {
    font-size: 1.1rem;
  }

  .courses-price h4 {
    font-size: 1.4rem;
  }

  .courses-price h4 span {
    font-size: 1rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: #007aff;
    font-size: 30px;
    display: block;
  }
  .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 3%;
    justify-content: center;
    gap: 15px;
  }

  .swiper-slide {
    min-width: 250px;
    max-width: 450px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
}

.sub {
  min-height: 100vh;
  width: 100%;
  background-color: #073eabff;
  padding: 20px 0px;
}
.subjects {
  width: 100%;
  text-align: center;
  color: white;
  padding: 20px 10px 20px 10px;
}
.subjects h1 {
  font-size: 3.4rem;
  margin-bottom: 10px;
}
.subjects p {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.categry {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.categry .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.items .category-icon {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}
.items h4 {
  font-size: 1.4rem;
  font-weight: 500;
}
.All-categry {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}
.All-categry button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffc400;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 20px 20px;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.All-categry button:hover {
  color: #000;
  background-color: #eab405ff;
  border-color: #ffc400;
  transform: translateY(-2px);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}
.All-categry button:active {
  transform: translateY(0);
  box-shadow: none;
}

.All-categry .r-arrow {
  position: absolute;
  top: 5px;
  right: -30px;
  width: 50px;
  height: 50px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.All-categry button:hover .r-arrow {
  right: -40px;
}

Blogs {
  padding: 50px 0; 
  max-width: 1200px; 
  margin: 0 auto; 
}


.artical {
  text-align: center;
  margin-bottom: 40px;
}

.artical h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.artical p {
  font-size: 1.1em;
  color: #666;
}


.learning {
  display: flex;
  gap: 30px; 
  padding: 0 20px; 
}

.src1 {
  flex: 2; 
  display: flex; 
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  border-radius: 8px;
  overflow: hidden; 
}

.src2 {
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 30px; 
}


.src1-img {
  height: 350px; 
  overflow: hidden;
}

.src1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.3s ease;
}

.src1:hover .src1-img img {
  transform: scale(1.05); 
}


.src-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.src-text h1 {
  font-size: 1.8em;
  line-height: 1.3;
  margin: 15px 0;
  color: #333;
}


.time {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: 0.9em;
}

.time h5 {
  font-weight: normal;
  margin: 0;
}


button {
  align-self: flex-start; 
  padding: 10px 20px;
  background-color: #007bff; 
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: auto; 
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0056b3;
}


.src {
  display: flex;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  padding: 10px; 
  align-items: flex-start;
}

.src img {
  width: 120px; 
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0; 
}

.src-text2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.src-text2 .time {
  font-size: 0.8em; 
  margin-bottom: 5px;
}

.src-text2 h1 {
  font-size: 1.2em;
  line-height: 1.3;
  margin: 0 0 10px 0;
  color: #333;
  font-weight: 600; 
}

.src-text2 button {
  padding: 6px 12px;
  font-size: 0.85em;
  margin-top: 5px;
}

.Blogs {
  padding: 50px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.artical {
  text-align: center;
  margin-bottom: 40px;
}

.artical h1 {
  font-size: 2.5em;
  color: #343af3ff;
  margin-bottom: 10px;
}

.artical p {
  font-size: 1.4em;
  color: #666;
  font-weight: 500;
}

.learning {
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.src1 {
  flex: 2;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.src2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.src1-img {
  height: 350px;
  overflow: hidden;
}

.src1-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.src1:hover .src1-img img {
  transform: scale(1.05);
}

.src-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.src-text h1 {
  font-size: 1.8em;
  line-height: 1.3;
  margin: 15px 0;
  color: #333;
}

.time {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: 0.9em;
}

.time h5 {
  font-weight: normal;
  margin: 0;
  font-size: 1.1em;
}

button {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: #f5e828ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: auto;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #caaa0cff;
  color: #000;
}

.src {
  display: flex;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  align-items: flex-start;
}

.src img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.src-text2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.src-text2 .time {
  font-size: 0.8em;
  margin-bottom: 5px;
}

.src-text2 h1 {
  font-size: 1.2em;
  line-height: 1.3;
  margin: 0 0 10px 0;
  color: #333;
  font-weight: 600;
}

.src-text2 button {
  padding: 6px 12px;
  font-size: 0.85em;
  margin-top: 5px;
}

@media (max-width: 1050px) {
  .artical {
    text-align: center;
    margin-bottom: 40px;
  }

  .artical h1 {
    font-size: 2em;
    color: #343af3ff;
    margin-bottom: 10px;
  }

  .artical p {
    font-size: 1.2em;
    color: #666;
    font-weight: 500;
  }
  .learning {
    flex-direction: column;
    gap: 40px;
  }
  .src1 {
    flex: auto;
  }

  .src2 {
    flex: auto;
    gap: 20px;
  }

  .src1-img {
    height: 300px;
  }
  .src-text h1 {
    font-size: 1.5em;
  }
   
}
@media (max-width: 600px) {
  .src {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .src img {
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-bottom: 10px;
  }

  .src-text2 {
   
    padding: 0 10px 10px;
  }

  .src-text2 button {
    align-self: flex-start;
  }
}

.person {
  width: 100%;
  padding: 50px; 
  position: relative;
  background-color: #f4f6f9; 
}
.person .model-head {
  text-align: center;
  padding-bottom: 20px;
}
.person .model-head h1 {
  color: #071ec7ff;
  font-size: 2.8vw; 
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.model-head h1 {
  text-transform: uppercase;
}
.model-head p {
  color: #e91e63; 
  font-size: 1.5vw;
  font-weight: 500;
}
.person .model {
  display: flex;
  align-items: flex-start; 
  justify-content: center;
  gap: 30px; 
  width: 100%;
  padding: 0px 20px;
  cursor:pointer;
}

.person .prs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 30px 20px;
  background-color: #fff; 
  border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
  max-width: 350px; 
}
.person .prs:hover {
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
}

.prs .para {
    width: 100%;
    margin-bottom: 25px;
}


.prs p {
  max-width: 100%;
  text-align: left;
  font-size: 16px; 
  color: #444;
  line-height: 1.6;
}

.prs:nth-child(2) .para p {
  background-color: #0e14d5ff;
  padding: 20px; 
  color: white;
  border-radius: 10px 40px 10px 40px; 
  position: relative;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3); 
}


.prs:nth-child(1) .para p,
.prs:nth-child(3) .para p {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd; 
  color: #444;
  transition: all 0.3s;
}


.prs:nth-child(1) .para p:hover,
.prs:nth-child(3) .para p:hover {
  background: #1219dbff;
  color: white;
  border-color: #0c13d1ff;
  border-radius: 10px 40px 10px 40px; 

}


.prs .prs1-img {
  display: flex;
  flex-direction:column;
  align-items: center;
  justify-content:center;
  width: 100%;
  padding-left: 0; 
  text-align: center;
}
.prs1-img .img2 {

  margin-right: 15px; 
  margin-bottom: 0;

  box-shadow: 0 0 0 2px #fff; 
}
.img2 img {
  width:120px;
  border-radius: 50%;
  object-fit: cover;
}

.prs1-img h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1127cfff;
}
.prs1-img h5 {
  color: #e91e63; 
  font-size: 14px;
  font-weight: 600;
}


.prs .more {
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: center; 
  width: 100%;
}
.more .mors {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}
.mors:hover {
  background-color: #e91e63;
}
.prs:nth-child(2) .mors:nth-child(3) { 
    background-color: #e91e63;
    width: 12px;
    height: 12px;
}
.more .items {
    display: none;
}



@media (max-width: 1050px) {
    .person{
        padding: 0px 20px;
    }
    .person .model-head h1 {
        font-size: 30px;
    }
    .model-head p {
        font-size: 18px;
    }

    .person .model {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-evenly; 
        padding: 0px 0px;
    }

    .person .prs {
        max-width: 45%; 
        padding: 20px;
    }
}

@media (max-width: 768px) {

    .text h1 {
  text-align:center;
  font-size: 2.5rem;
  font-weight: 600;
  
}

.text p {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align:justify;
  
}

.text button {
  text-align:center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 10px 18px;
 
}
    .person .model-head h1 {
        font-size: 26px;
    }
    .model-head p {
        font-size: 16px;
    }

    .person .model {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .person .prs {
        max-width: 100%; 
        width: 100%;
        margin: 0 auto;
        padding: 10px;
    }
    
    .prs1-img h1 {
        font-size: 18px;
    }
    .prs1-img h5 {
        font-size: 14px;
    }

    .prs:nth-child(1) .more,
    .prs:nth-child(3) .more {
        display: none;
    }
}

@media (max-width: 480px) {
    .prs .prs1-img {
        flex-direction: column; 
        text-align: center;
        align-items: center;
    }
    .prs1-img .img2 {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



.form-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 4% 0px 4%;
    display: flex;
    justify-content: space-between;
    background: url(./images/register.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s ease;
    gap: 20px;
}

.form-section .details {
    width: 100%;
    max-width: 50%;
}

.form-section .details p {
    text-align: justify;
    color: #fff;
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

.details h1 {
    text-transform: uppercase;
    font-size: 3.2rem;
    color: white;
    font-weight: 600;
}

.details h1 > span {
    color: #152acaff;
}

.register-form {
    width: 100%;
    max-width: 40%;
    height: 65vh; 
    min-height: min-content; 
    border-radius: 10px;
    box-shadow: 0px 0px 5px #989494ff;
    background-color: #ffff;
    padding: 40px 20px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-box input[type="email"],
.input-box input[type="number"] {
    width: 48%;
    margin-right: 4%;
}

.input-box input[type="number"] {
    margin-right: 0;
}

.btn input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #161cd8ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn input[type="submit"]:hover {
    background-color: #24b62cff;
}

.input-box:nth-of-type(2) {
    display: flex;
    justify-content: space-between; 
}

form input,
textarea {
    font-size: 1.1rem; 
    font-weight: 500;
    background-color: #f7f9fb;
}

@media (max-width: 1050px) {
    .form-section {
        flex-direction: column; 
        align-items: center; 
        min-height: auto; 
        padding: 40px 4%; 
    }
    
    .form-section .details {
        max-width: 90%; 
        margin-bottom: 30px; 
        text-align: center; 
    }

    .details h1 {
        font-size: 2.5rem; 
    }

    .form-section .details p {
        font-size: 1rem; 
        text-align: center; 
    }

   
    .register-form {
        max-width: 90%; 
        width: 100%; 
        padding: 30px 20px; 
    }

    .input-box:nth-of-type(2) {
        flex-direction: column; 
    }

    .input-box input[type="email"],
    .input-box input[type="number"] {
        width: 100%; 
        margin-right: 0; 
        margin-bottom: 15px; 
    }


    form input,
    textarea {
        font-size: 1rem; 
    }
}


.img-content2 {
    width: 100%;
    min-height:80vh;
    padding: 30px 4% 0px 4%; 
    box-sizing: border-box;
    background-color: #f8f8f8; 
}


.img-gallery {
    text-align: center;
    margin-bottom: 30px;
}

.img-gallery h1 {
    text-transform: uppercase;
    font-size: 2.8rem; 
    color: #1a73e8; 
    font-weight: 700;
    margin-bottom: 5px;
}

.img-gallery p {
    color: #555;
    font-size: 1.4rem;
    font-weight: 500;
}



.swiper2 {
    display: flex; 
    overflow-x: scroll; 
    scroll-behavior: smooth; 
    padding: 10px 0; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.swiper2::-webkit-scrollbar {
    display: none;
}

.swiper-wrapper.scroll {
    display: flex;
    flex-wrap: nowrap; 
    gap: 20px; 
    min-width: max-content; 
    padding: 0 10px; 
}

.swiper-slide2 {
    flex-shrink: 0; 
    width: 300px; 
    height: 350px; 
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    background: #fff;
    transition: transform 0.3s ease;
}

.swiper-slide2:hover {
    transform: translateY(-5px); 
}

.swiper-slide2 .imges {
    width: 100%;
    height: 100%;
}

.swiper-slide2 .imges img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
}


.swiper-scrollbar {
    display: none; 
}


@media (max-width: 1050px) {
    .img-content2 {
        padding: 40px 2%; 
    }

    .img-gallery h1 {
        font-size: 2rem; 
    }

    .img-gallery p {
        font-size: 1rem; 
    }

 
    .swiper-slide2 {
        width: 250px; 
        height: 300px;
    }

   
}


@media (max-width: 600px) {
    .swiper-wrapper.scroll {
        padding: 0 15px 0 20px; 
    }
    
    .swiper-slide2 {
        width: 80vw; 
        height: 70vw; 
    }
}


.footer {
    width: 100%;
    min-height:100vh;
    background-color: #1a237e; 
    color: #ffffff;
    padding: 50px 4%; 
    font-family: Arial, sans-serif;
}

.foot-content {
    max-width: 1200px;
    margin: 0 auto;
}

.foot-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.img-logo img {
    height: 80px; 
    width: auto;
    filter: brightness(0) invert(1); 
}

.content-details p {
    font-size: 2rem;
    color: #e0e0e0;
}

.line hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    margin: 20px 0;
}

.list-content {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    gap: 30px; 
}

.list-items1 {
    flex: 1; 
    min-width: 150px;
}

.list-items1 h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.list-items1 h1 a {
    color: #ffffff;
    text-decoration: none;

}

.list-items1 ul {
    list-style: none;
    padding: 0;
}

.list-items1 ul li {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #c0c0c0;
    cursor: pointer;
    font-weight:500;
    transition: color 0.3s;
}

.list-items1 ul li:hover {
    color: #8c9eff; 
}

.list-items1:last-child {
    max-width: 250px; 
}

.list-items1:last-child p {
    font-size: 1rem;
    font-weight:500;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.inp {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    background-color: #ffffff;
}

.inp input[type="email"] {
    flex-grow: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-size: 1rem;
    color: #333;
}

.inp input[type="submit"] {
    background-color: #8c9eff; 
    color: #1a237e;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.inp input[type="submit"]:hover {
    background-color: #b0baf8;
}

.foot-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.3rem;
    color: #c0c0c0;
}



.services {
    display: flex;
    gap: 30px;
    align-items: center;
}

.guide a {
    color: #c0c0c0;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.guide a:hover {
    color: #8c9eff;
}

.option label, .option select {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.option select {
    background-color: #1a237e;
    border: 1px solid #8c9eff;
    padding: 5px;
    border-radius: 4px;
}


@media (max-width: 1050px) {
    .list-content {
        flex-wrap: wrap; 
        justify-content: flex-start; 
        gap: 40px; 
    }

    .list-items1 {
        width: 45%; 
        min-width: 180px; 
    }

    .list-items1:last-child {
        width: 100%;
        max-width: none;
    }

    .foot-end {
        flex-direction: column; 
        align-items: flex-start; 
        gap: 15px;
    }

    .services {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
        width: 100%; 
    }

    .guide a:last-child {
        margin-right: 0; 
    }
}

@media (max-width: 600px) {
    .foot-items {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
    }

    .list-content {
        flex-direction: column; 
        gap: 20px;
    }

    .list-items1 {
        width: 100%; 
        min-width: auto;
    }
}

@media (max-width: 750px) {
  #nav-bar .menu {
    display: block;
  }
}

@media (max-width: 1050px) {
  #nav-bar {
    width: 100%;
    position: relative;
    padding: 0px 4%;
    z-index: 1000;
  }

  #nav-bar.logo-icon {
    width: 68px;
    height: 68px;
  }
  #nav-bar .icons {
    gap: 10px;
  }
  #nav-bar .items {
    position: absolute;
    top: 100%;
    right: -100%;
    padding: 5px 0px;
    background: #000;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    transition: all 0.5s ease;
    z-index: 2000;
  }

  #nav-bar .items ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #nav-bar .items ul li a {
    display: block;
    align-self: flex-start;
    margin: 5px 0;
    padding: 0 25px;
    transition: all 0.5s ease;
    color: #1580f2ff;
  }
  #nav-bar .items a:hover {
    color: #0641b8;
    transform: translateY(3px);
  }
  #nav-bar .items ul {
    gap: 10px;
    margin: 0px 10px;
  }
  #nav-bar .items ul li {
    margin: 0px 10px;
  }
  #nav-bar .items ul li a {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
  }
  #nav-bar .icons .user a {
    margin-left: 10px;
  }

  .user .customPath {
    width: 26px;
    height: 26px;
  }
  .icons .menu {
    display: block;
  }
  .menu #menu-icon {
    width: 26px;
    height: 26px;
  }

  #nav-bar .open {
    right: 2%;
    top: 100%;
  }
  #Page1 .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 5px 4%;
    gap: 20px;
  }
  #Page1 .text-content {
    position: relative;
    padding: 20px 2%;
    width: 100%;
  }

  #Page1 .text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #Page1 .text p {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 8px;
  }

  #Page1 .text button {
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 14px;
  }

  #Page1 .img-content {
    width: 100%;
    padding: 0px 2%;
    margin: 0 auto;
  }
  #Page1 .img {
    position: relative;
    width: 100%;
    max-width: 90%;
  }

  #Page1 .img-src {
    position: absolute;
    top: 6%;
    right: -8%;
  }
  #Page1 .img-src img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #Page1 .details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 1%;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  #Page1 .learn {
    display: flex;
    flex-direction: row;
    /* width:100%; */
    gap: 8px;
    padding: 10px 12px;
    box-shadow: 0px 0px 2px #000;
  }

  #Page1 .learn h2 {
    font-size: 1.1rem;
    font-weight: 400;
  }
  #Page1 .learn p {
    font-size: 1.1rem;
    font-weight: 500;
  }

  #Page1 .learn .Graduation {
    width: 26px;
    height: 26px;
    align-self: flex-start;
  }

  #Page2 {
    display: flex;
    justify-content: center;
    padding: 8px;
  }
  #Page2 .content2 {
    max-width: 600px;
    text-align: center;
    padding: 10px 5px;
  }
  #Page2 .content2 h1 {
    margin-bottom: 9px;
    font-size: 1.7rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #2683eeff;
  }
  #Page2 .content2 h5 {
    color: rgba(216, 8, 8, 1);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
  }
  #Page2 .content2 p {
    text-align: justify;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    word-spacing: -5px;
    color: #000;
  }
  #Page2 .content2 button {
    margin-top: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
  }
  .sub {
    min-height: 100vh;
    background: ;
    width: 100%;
    background-color: #073eabff;
    padding: 20px 0px;
  }
  .subjects {
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 10px 20px 10px;
  }
  .subjects h1 {
    font-size: 2rem;
  }
  .subjects p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .categry {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .categry .items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
  }
  .items .category-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
  }
  .items h4 {
    font-size: 1.1rem;
    font-weight: 500;
  }
  .All-categry {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .All-categry button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffc400;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 14px 12px;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .All-categry button:hover {
    color: #000;
    background-color: #eab405ff;
    border-color: #ffc400;
    transform: translateY(-2px);
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
  }
  .All-categry button:active {
    transform: translateY(0);
    box-shadow: none;
  }

  .All-categry .r-arrow {
    position: absolute;
    top: 0px;
    right: -30px;
    width: 50px;
    height: 50px;
    font-weight: 400;
    transition: all 0.3s ease;
  }

  .All-categry button:hover .r-arrow {
    right: -40px;
  }
}
@media (max-width: 1250px) {
  #nav-bar {
    width: 100%;
    position: relative;
    padding: 0px 5%;
  }

  #nav-bar .logo-icon {
    width: 64px;
    height: 64px;
  }

  #nav-bar .icons {
    gap: 15px;
  }

  #nav-bar .items ul {
    gap: 12px;
    margin: 0px 12px;
  }

  #nav-bar .items ul li {
    margin: 0px 12px;
  }

  #nav-bar .items ul li a {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
  }

  #nav-bar .icons .user a {
    margin-left: 10px;
  }

  #nav-bar .user .customPath {
    width: 26px;
    height: 26px;
  }
  .icons .menu {
    display: none;
    cursor: pointer;
  }
  .menu #menu-icon {
    width: 26x;
    height: 26px;
  }

  .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 16px 4%;
    gap: 30px;
  }
  .text-content {
    position: relative;
    padding: 40px 2%;
    width: 100%;
  }

  .text h1 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .text p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .text button {
    font-size: 1.1rem;
    font-weight: bold;
    padding: 13px 20px;
  }

  .img-content {
    width: 100%;
    padding: 0px 2%;
    margin: 0 auto;
  }
  .img {
    position: relative;
    width: 100%;
    max-width: 90%;
    height: 300px;
  }

  .img-src {
    position: absolute;
    top: 6%;
    right: -10%;
  }
  .img-src img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #Page1 .details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 2%;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .learn {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 15px 16px;
    box-shadow: 0px 0px 2px #000;
  }

  .learn h2 {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .learn p {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .learn .Graduation {
    width: 28px;
    height: 28px;
    align-self: flex-start;
  }
  #Page2 {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
  .content2 {
    max-width: 600px;
    text-align: center;
    padding: 10px 5px;
  }
  .content2 h1 {
    margin-bottom: 9px;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #2683eeff;
  }
  .content2 h5 {
    color: rgba(216, 8, 8, 1);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
  }
  .content2 p {
    text-align: justify;
    line-height: 1.5;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    word-spacing: -5px;
    color: #000;
  }
  .content2 button {
    margin-top: 12px;
    padding: 12px 14px;
    background-color: rgba(24, 103, 214, 1);
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  .content2 button:hover {
    background-color: #020c58;
    transform: translateY(-2px);
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
  }
  .content2 button:active {
    transform: translateY(0);
    box-shadow: none;
  }

  .section-tag .course {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .section-tag .course h1 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }

  .section-tag .course ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .section-tag .course ul li a {
    font-size: 1.2rem;
  }
}
