@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #aab39652;
  color: black;
  width: 100%;
  overflow-x: hidden;
}

/* ................................Container Style..................................  */

.container {
  width: 95%;
  max-width: 1450px;
  margin: 0 auto;
}

/* ................................Navbar Style.................................  */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #674636;
  padding: 10px 20px;
}

.logo a {
  font-family: "Cinzel Decorative", serif;
  font-weight: 900;
  font-size: 2vw;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 5px;
}

ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2vw;
}

ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul li a {
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2vw;
  font-weight: 300;
  color: white;
  font-family: "Poppins", sans-serif;
}
/* Hover effect on navbar */

ul li a:hover {
  color: #10e590;
}
#menu {
  display: none;
  color: white;
}

/* .....................................  */

.banner {
  width: 100%;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./IMAGES/banner2.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.banner h1 {
  text-align: center;
  color: white;
  font-size: 2.5vw;
  font-family: "Cinzel Decorative", serif;
  width: 74%;
}

.banner h2 {
  text-align: center;
  color: white;
  margin: 0;
  font-size: 2vw;
  margin-bottom: 2vw;
  width: 50%;
  font-family: "Cinzel Decorative", serif;
}

.banner h2:hover {
  color: rgb(223, 87, 171);
}

.banner p {
  width: 80%;
  color: white;
  text-align: center;
  font-weight: 150;
  font-weight: 300;
  font-size: 1vw;
  align-items: center;
}

/* .....................................................  */

.mission-section {
  padding: 10px 0px;
  background: linear-gradient(135deg, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mission-content {
  max-width: 100%;
  background-color: rgb(238, 238, 238);
  padding: 5px 10px;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
}

.mission-content h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

#read-more-btn {
  display: block;
  cursor: pointer;
  color: blue;
}

.mission-content strong {
  color: #007BFF;
}

/* ........................................................  */

.shedow-servises {
  display: block;
}

#services h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.courses {
  text-align: center;
}

.courses-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 0vw 62px;
}

.Services {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ms-office {
  width: 200px;
  height: 200px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
}

.ms-office img {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.office-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}

.office-text p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  margin: 0 auto;
}

.office-text h3 {
  margin-top: 15px;
}

.description {
  max-height: 40px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.read-more {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 20px;
  text-decoration: none;
}

/* .............................................  */

.about h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-top: 10px;
}

.about-us {
  margin-bottom: 50px;
}

.left_right_par {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-us .left-about {
  width: 50%;
  float: left;

}

.about-us .left-about p {
  text-align: start;
}

.about-us .right-about {
  width: 50%;
  float: right;
}

.about-us .right-about img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* ......................................................  */

.why-us h1 {
  text-align: center;
}

.why {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.why .courses {
  width: 20%;

}

.why .courses img {
  width: 30%;
  height: auto;
  border-radius: 20px;
}

/* ...............................................  */
.gallery h1 {
  text-align: center;
}

.gallery .images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px
}

.gallery .images img {
  width: 30%;
  aspect-ratio: 2/1;
  object-fit: cover;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* .....................Top Icon..........................  */
.top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.top img {
  width: 30px;
  height: auto;
  mix-blend-mode: screen;
}

.top img:hover {
  opacity: 0.7;
}

/* .................Contect form css..............................  */
.new_home_web .text-blk.subHeading {
  text-align: center;
  color: #674636;
  max-width: 630px;
}

.new_home_web .text-blk.heading {
  font-size: 36px;
  line-height: 55px;
  font-weight: 600;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.new_home_web .responsive-container-block.textContainer {
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  max-width: 1320px;
  z-index: 50;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-12.wk-ipadp-12 {
  width: 50%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 25px;
  padding-left: 10px;
}

.new_home_web .send:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.new_home_web .send {
  font-size: 18px;
  color: white;
  font-weight: 600;
  background-color: #674636;
  width: 80%;
  text-align: center;
  padding-top: 15px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.new_home_web .container-block.form-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  z-index: 50;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  max-width: 1100px;
}

.new_home_web .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  max-width: 310px;
  padding-top: 0px;
  padding-right: 40px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 30px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  width: 100%;
}

.new_home_web .textinput {
  height: 100%;
  width: 100%;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #a2a2a2;
  border-right-color: #a2a2a2;
  border-bottom-color: #a2a2a2;
  border-left-color: #a2a2a2;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #f1f1f1;
}

.new_home_web .input {
  height: 50px;
  width: 100%;
  border-top-width: 2.5px;
  border-right-width: 2.5px;
  border-bottom-width: 2.5px;
  border-left-width: 2.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #a2a2a2;
  border-right-color: #a2a2a2;
  border-bottom-color: #a2a2a2;
  border-left-color: #a2a2a2;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 16px;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-left: 15px;
  background-color: #f1f1f1;
}

.new_home_web .responsive-container-block.big-container {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.new_home_web .responsive-container-block.container {
  max-width: 1320px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  z-index: 50;
}

.new_home_web .responsive-cell-block {
  min-height: 75px;
}

.new_home_web textarea:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.new_home_web input:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.new_home_web a {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.new_home_web .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}

.new_home_web * {
  font-family: Nunito, sans-serif;
}

.new_home_web .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .left4 {
  width: 50%;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.new_home_web .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.lastPhone {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.new_home_web .orangeText {
  color: #674636;
}

.new_home_web .orangeLine {
  height: 10px;
  width: 160px;
  background-color: #674636;
}

.new_home_web .topHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  margin: 0 0 25px 0;
}

.new_home_web .imgBG {
  position: absolute;
  width: 80%;
  height: 100%;
  left: auto;
  right: 0px;
  top: auto;
  bottom: 0px;
}
/* .............................................  */

.footer {
  width: 100%;
  background: #508D4E;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

/* .............................................  */