/* Global Reset */
* {
  padding: 0;
  margin: 0px;
  /* box-sizing: border-box; */
}

/* Navbar Styles */
/* General navbar styles */
.navbar {
  height: 60px;
  display: flex;
  background-color: #ffffff;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-head h1 {
  margin-left: 20px;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  color: #333;
}

ul {
  display: flex;
  align-items: center;
  margin-right: 20px;
  list-style: none;
}

ul li {
  margin-left: 20px;
}

.navbar ul li a {
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  font-family: "Arial", sans-serif;
  padding: 10px;
  transition: color 0.3s ease;
}

/* Hover effect */
.navbar ul li a:hover {
  color: #f8183b;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-right: 20px;
  color: #333;
}

@media screen and (max-width: 786px) {
  .navbar-head h1 {
    font-size: 18px;
  }
  .navbar ul {
    display: none;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar ul li {
    text-align: center;
    margin: 10px 0;
  }

  .navbar ul li a {
    font-size: 20px;
    padding: 12px 20px;
  }

  /* Show hamburger menu on small screens */
  .hamburger {
    display: block;
  }

  /* Show the navbar links when hamburger icon is clicked */
  .navbar ul.active {
    display: flex;
  }
  .navbar ul li a:hover {
    color: rgb(4, 104, 104);
  }
}

/* Main Section Styles */
.main1 {
  background-image: url(image/bg_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 630px;
  width: auto;
}

.main1 div {
  position: absolute;
  top: 200px;
  right: 315px;
}

.main1 div h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 36px;
  text-align: center;
}

.btn {
  height: 50px;
  width: 150px;
  padding: 10px;
  border-radius: 7px;
  border: 1px solid rgb(248, 245, 245);
}

.main1-para {
  position: absolute;
  top: 400px;
  right: 200px;
}
.main1-para p {
  color: rgb(3, 108, 108);
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#button1 {
  background-color: rgb(5, 78, 75);
}

#button1 a {
  color: white;
}

.btn a {
  font-size: 20px;
  text-decoration: none;
}
@media screen and (max-width: 786px) {
  .main1 div {
    position: absolute;
    top: 178px;
    right: 6px;
    width: 193px;
    height: 83px;
    justify-content: center;
    align-items: center;
  }

  .main1 div h1 {
    font-size: 18px;
  }
  .btn {
    margin-top: 20px;
    width: 80px;
    margin: 7px;
    margin-right: 5px;
  }
  .btn a {
    font-size: 10px;
  }
  .main1-para {
    position: absolute;
    top: 400px;
    right: 2px;
    height: 200px;
    width: 200px;
    font-size: 12px;
  }
}

/* WhatsApp Button */
.WhatsApp {
  max-width: 190px;
  height: 40px;
  width: auto;
  border: 2px solid green;
  background-color: green;
  border-radius: 20px;
  position: fixed;
  bottom: 10px;
  right: 50px;
  z-index: 100;
  transition: all 0.1s ease-in;
}

.WhatsApp i {
  font-size: 30px;
  color: white;
  margin: 10px;
}
.WhatsApp a {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
 
  
}

.WhatsApp a span {
  text-decoration: none;
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  
  padding-right: 14px;
}
@media screen and (max-width: 786px) {
  * {
    padding: 0;
    margin: 0;
  }

  .WhatsApp {
    position: fixed;
    bottom: 10px;
    left: 0px;
    height: 44px;
    width: 40px;
  } 
  .WhatsApp i{
    rotate: 270deg;
  }

  .WhatsApp a {
    flex-direction: column-reverse;
    height: 100%;
    row-gap: 10px;
  }
  .WhatsApp a span {
    transform: rotate(270deg);
    display: none;
  }

  .WhatsApp:hover{
    height: 140px;
  }
  .WhatsApp:hover a span{
    display: inline;
    margin-top: 10px;
  }
  .WhatsApp:hover i{
    position: relative;
    bottom: -17px;
  }
}

/* Section 1 - Courses */
.section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  flex-wrap: wrap;
}

.section1-course {
  height: 200px;
  width: 200px;
  border-radius: 200px;
  margin: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 15px grey;
}

.section1 h3 {
  color: rgb(12, 12, 12);
  margin-top: 205px;
  margin-left: 27px;
}

/* Video Section */
.video {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.video iframe {
  height: 200px;
  width: 400px;
}

/* Section 2 - Stats */
.section2 {
  position: relative;
  z-index: -1;
  background-attachment: fixed;
  margin-top: 90px;
  background-image: url(image/bg_4.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 380px;
}

.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.container {
  position: relative;
  margin: 30px;
  text-align: center;
  margin-top: 90px;
}

.container h2 {
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(5, 149, 89);
}

.container span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: rgb(68, 137, 79);
}
@media screen and (max-width: 786px) {
  .section2 img {
    height: 480px;
    width: auto;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    position: relative;
    margin-top: 100px;
  }
  .container {
    margin: 10px;
    margin-top: 30px;
  }
}

/* Testimonial Section */

.section3 {
  width: auto;
  margin: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box1 {
  height: 400px;
  position: relative;
  top: 50px;
  left: 10px;
  z-index: +2;
}

.text {
  margin-left: 20px;
  margin-bottom: 70px;
}

.text h1 {
  color: rgb(3, 97, 180);
  font-size: 35px;
}

.text h2 {
  font-family: sans-serif;
  font-size: 25px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  margin: 8px;
  /* justify-content: center; */
  /* align-items: center; */
  /*box-shadow: 0px 0px 15px grey;*/
}

.box-container {
  height: 230px;
  width: 180px;
  padding: 10px;
  /* border: 2px solid rgb(135, 134, 134);   */
  background-color: aliceblue;
  border-radius: 17px;
  margin: 16px;
  resize: both;
  overflow: auto;
  box-shadow: 0px 0px 15px grey;
}

.star i {
  margin-top: 8px;
  font-size: 20px;
  color: orangered;
}

.box-container p {
  color: rgb(93, 93, 92);
  margin-top: 10px;
  font-size: 15px;
  font-family: sans-serif;
}

.box-container h4 {
  margin-top: 20px;
  font-size: 25px;
  font-family: sans-serif;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 1108px) {
  .section3 {
    margin-left: 10px;
    width: auto;
    margin-bottom: 50px;
  }
  .box1 {
    flex-direction: column;
  }
  .box {
    margin-right: 20px;
    flex-direction: column;
  }
  .box-container {
    width: 220px;
    margin-left: 10px;
  }

  .text {
    margin-bottom: 30px;
    margin-right: 10px;
  }
  .text h1 {
    font-size: 18px;
  }
  .text h2 {
    font-size: 18px;
  }
}

/* Section 4 - Features */
.section4 {
  display: flex;
  margin-top: 160px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.education {
  height: 240px;
  width: 180px;
  /* border: 1px solid rgb(112, 111, 111); */
  padding: 20px;
  border-radius: 20px;
  margin: 30px;
  /* text-align: center; */
  box-shadow: 0px 0px 15px grey;
}

.education img {
  height: 60px;
  width: 60px;
  margin-left: 21px;
}

.education h3 {
  margin-top: 10px;
  font-family: sans-serif;
}

.education p {
  margin-top: 10px;
  font-family: sans-serif;
  color: rgb(93, 92, 91);
}
@media screen and (max-width: 1108px) {
  .section4 {
    flex-direction: column;
    margin-top: 1200px;
  }
  .education {
    margin: 5px;
  } 
}
/* Footer Styles */
.footer {
  height: 300px;
  background-color: rgb(142, 49, 49);
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.Copyright {
  position: relative;
  top: 220px;
}

.Copyright1 {
  font-family: sans-serif;
  font-size: 22px;
  color: white;
}

.footer2 {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  text-align: center;
}
#footer-image1 {
  width: 250px;
  height: 100px;
}

#footer-image2 {
  width: 150px;
  height: 100px;
}

.footer2 h3 {
  margin-top: 50px;
  font-family: sans-serif;
  font-size: 19px;
  color: rgb(208, 209, 209);
}
@media screen and (max-width: 786px) {
  .footer {
    height: 400px;
  }
  .Copyright1 {
    font-size: 19px;
  }
  .footer2 {
    font-size: 19px;
  }
  .footer2 h3 {
    font-size: 12px;
  }

  .footer1 {
    font-size: 10px;
  }
  #footer-image1 {
    width: 170px;
    height: 100px;
  }

  #footer-image2 {
    width: 100px;
    height: 100px;
  }
}

/* about section */
.section1-about {
  position: relative;
  /* z-index: -1; */
  background-attachment: fixed;
  height: 650px;
}
.section1-about img {
  max-width: 1600px;
}

.About1 {
  position: absolute;
  top: 500px;
  right: 600px;
}

.About1 p a {
  text-decoration: none;
  font-size: 20px;
  color: rgb(76, 75, 75);
  margin: 10px;
}

.About1 p a:hover {
  text-decoration: none;
  font-size: 20px;
  color: rgb(216, 41, 166);
  margin: 10px;
}

.About1 h2 {
  font-size: 40px;
  color: rgb(76, 75, 75);
  font-family: sans-serif;
}
@media screen and (max-width: 786px) {
  .About1 {
    right: 100px;
  }
  .section1-about img {
    width: auto;
  }
}

/* section2 */

.section2-about {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0px 0px 15px grey */
}

.section2-image {
  height: 600px;
  width: 490px;
  margin: 50px;
  border-radius: 20px;
  /* border: 2px solid grey; */
  box-shadow: 0px 0px 19px grey;
}

.section2-box1 {
  width: 480px;
  padding: 40px;
  margin-top: 20px;
  margin-left: 90px;
}

.section2-box1 h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
}

.section2-box1 p {
  font-family: sans-serif;
  font-size: 20px;
  color: rgb(83, 83, 83);
  /* justify-content:space-between; */

  text-align: justify;
}

@media screen and (max-width: 786px) {
  .section2-about {
    flex-direction: column;
  }
  .section2-image {
    width: 360px;
    margin: 20px;
  }
  .section2-box1 {
    padding: auto;
    width: 360px;
    margin-left: 10px;
  }
}

/* course */

.section1-course1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.section1-course2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section1-course3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section1-box {
  height: 350px;
  width: 400px;
  /* border: 2px solid black; */
  justify-content: space-between;
  margin: 20px;
  box-shadow: 0px 0px 15px grey;
}
.section1-image {
  height: 230px;
  width: 397px;
}

.section1-box span {
  height: 100px;
  width: 120px;
  background-color: rgb(57, 110, 244);
  border: 2px solid rgb(23, 74, 242);
  border-radius: 6px;
  position: relative;
  padding: 5px;
  top: -10px;
  left: 20px;
  color: white;
  font-size: 20px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.section1-box h2 {
  font-family: sans-serif;
  font-size: 20px;
  margin: 20px;
  color: rgb(74, 73, 73);
}
@media screen and (max-width: 786px) {
  .section1-course1 {
    flex-direction: column;
  }
  .section1-course2 {
    flex-direction: column;
  }
  .section1-course3 {
    flex-direction: column;
  }
  .section1-box {
    height: 370px;
    width: 310px;
    margin: 5px;
  }
  .section1-image {
    width: 308px;
  }
  .section1-box h2 {
    margin: 8px;
    font-size: 15px;
  }
}

/* countact */
.Section2-Contact {
  display: flex;
}

.contact-container {
  height: 550px;
  width: 400px;
  margin-left: 50px;
  margin-top: 100px;
  border-radius: 20px;
  /* border: 2px solid rgb(56, 123, 210); */
  background-color: rgb(99, 150, 237);
  box-shadow: 0px 0px 15px rgb(70, 69, 69);
}

.Contact-box1 {
  margin: 30px;
  margin-left: 20px;
}

.Contact-box1 h2 {
  color: white;
  font-size: 40px;
  font-family: sans-serif;
}

.Contact-box1 h5 {
  color: white;
  font-size: 20px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.Contact-box {
  display: flex;
  margin-left: 25px;
  margin: 20px;
}

.Contact-box i {
  height: 28px;
    width: 30px;
  font-size: 30px;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px;
  background-color: rgb(5, 177, 245);
}

.Contact-box p {
  color: white;
  font-size: 17px;
  margin-top: 10px;
  margin-left: 10px;
}

.google-map {
  margin-top: 100px;
  margin-left: 40px;
}
@media screen and (max-width: 786px) {
  .Section2-Contact {
    flex-direction: column;
  }
  .Contact-box {
    margin-left: 3px;
  }
  .contact-container {
    width: 310px;
    margin-left: 10px;
  }
  .google-map {
    width: 300px;
    margin-top: 40px;
    margin-left: 10px;
  }
  .google-map iframe {
    width: 300px;
    height: 300px;
  }
}
