* {
  font-family: "Libre Bodoni", serif;

  /* font-size: 20px; */
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}


:root {
  --primary-color:  #f8b435;
    --secondary-color: #182628;
    --ternary-color: #F1F5F9;
    --forth-color:
    --features-background: #F0F0F0;


}

/*  =======================nav bar===========================================*/
nav { 
    
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: transparent;
  transition: background-color 0.3s;
  z-index: 1000;
  padding: 20px;
  font-family: "Playfair Display", serif;

}



nav div img {
  height: 80px;
  /* Adjusted height for the logo */
}

nav ul {
  display: flex;
  gap: 20px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-scrolled {
  background-color: var(--secondary-color) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-hb-clicked {
  background-color: var(--secondary-color) !important;
}

.navbar-hb-clicked a {
  color: var(--primary-color) !important;
}

#navbar a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-scrolled a {
  color: var(--primary-color) !important;
}


.white-button {
  background-color: var(--secondary-color);
  color: white;
}

.white-button::before {
  background: white;
  color: var(--primary-color);
}



.hamburger {
  display: none;
  cursor: pointer;
  background-color: transparent;

}

.bar {
  height: 3px;
  width: 25px;
  margin: 5px;
  background-color: var(--primary-color);
  display: block;
}

.hamburger:hover .bar {
  background-color: var(--primary-color);
}

@media (max-width: 1024px) {
  .hamburger {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      background-color: var(--secondary-color);
      position: absolute;
      width: 100%;
      top: 120px;
      left: 0;
      transition: background-color 0.3s ease-in-out;
      padding: 20px;

  }

  .nav-links li a {
      color: var(--primary-color);
  }

  .nav-links.show {
      display: flex;
  }


}

/* ui verse button */
.cssbuttons-io {
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: var(--secondary-color);
  color: ghostwhite;
  overflow: hidden;
}


.cssbuttons-io span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  padding: 0.4em 1.2em 0.4em 1.05em;
}

.cssbuttons-io span a {
  color: white !important;
}

.cssbuttons-io::before,
.cssbuttons-io::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cssbuttons-io::before {
  content: "";
  background: var(--primary-color);
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.cssbuttons-io:hover::before {
  transform: translate3d(100%, 0, 0);
}

.cssbuttons-io:active {
  transform: scale(0.95);
}
/* contact========================================================== */

.contact {
  position: relative;
  min-height: 110vh;
  padding: 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(bg.jpg);
  background-size: cover;
  padding-top: 120px;

}

.contact .content {
  max-width: 800px;
  text-align: center;
}

.contact .content h2 {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
}

.contact .content p {
  font-weight: 400;
  color: #fff;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.contactInfo {
  width: 40%;
  display: flex;
  flex-direction: column;
}

.container .contactInfo .box {
  position: relative;

  margin: 20px;
  display: flex;
}

.container .contactInfo .box .icon {
  min-width: 50px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  font-size: 20px;
}

.icon i {
  line-height: 50px;
}

.container .contactInfo .box .text {
  display: flex;
  margin-left: 22px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}

.container .contactInfo .box .text h3 {
  font-weight: 700;
  color: #fff;
  line-height: 50px;
}

.container .contactInfo .box .text span {
  font-weight: 450;
  color: var(--primary-color);
  margin: 10px 0;
}

.contactform {
  width: 35%;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
}

.contactform h2 {
  font-size: 30px;
  color: #333;
  font-weight: 500;
}

.contactform .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
  text-align: center;

}

.contactform .inputBox input,
.contactform .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contactform .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contactform .inputBox input:focus~span,
.contactform .inputBox input:valid~span,
.contactform .inputBox textarea:focus~span,
.contactform .inputBox textarea:valid~span {
  font-size: 12px;
  transform: translateY(-20px);
}

.contactform .inputBox input[type="submit"] {
  width: 100px;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  background-color: var(--primary-color);
}

@media (max-width: 1024px) {
  .container {
    justify-content: space-between;
  }


}

@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
  }

  .contactform {
    width: 80%;
  }

  .contactInfo {
    width: 80%;
  }

}

.sectionB {
  padding-block: 10vh;
  width: 100vw;
  height: fit-content;
  text-align: center;
  background-color: #130f40;
  background-image: linear-gradient(315deg, #130f40 0%, #000000 74%);
  display: block;
}

.sectionB:hover {
  background-color: #211e46;
  background-image: linear-gradient(315deg, #1c1b2d 0%, #181839 74%);
}

.sectionB h3 {
  color: #fff;
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}

.grids {
  background-color: rgb(255, 255, 255);
  margin-inline: 20vw;
  border-radius: 4rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.707);
  transition: all 0.6s ease;
  align-items: center;
  text-align: center;
}

.grids:hover {

  transform: scale(1.1);
  background-color: #FE693E;
  ;
}

.grids img {
  width: 3vw;
  margin-top: 5vh;
  color: #FE693E;
  ;
}

.grids h4 {
  font-size: 2vw;
  margin-top: 2vh;
  margin-bottom: 10vh;
  padding-bottom: 4vh;
}

/* connect */
#connect {
  display: flex;
  justify-content: center;
  color: white;
  /* background-color: bisque */
  /* background-color: #fff; */
  /* background: linear-gradient(135deg, #00c6ff, #0072ff); */
  /* background: linear-gradient(135deg, #FE693E, #F1F5F9); */
  /* background: linear-gradient(135deg, #1A1F71, #F1F5F9); */
  /* background: linear-gradient(135deg, #FE693E, #FFA726); */
  /* background: linear-gradient(135deg, #1A1F71, #5A67D8); */
  /* background: linear-gradient(135deg, #F1F5F9, #F0F0F0); */
  /* background: linear-gradient(135deg, #FE693E, #FFC371); */

  /* background: linear-gradient(135deg, #ff6338, #2e5fca); */
  /* background: linear-gradient(135deg, #F1F5F9,); */



  /* background: linear-gradient(135deg, #1A1F71, #3A416F); */
  background: linear-gradient(90deg, #65CCB8,  #182628 );
}

.connect-container {
  display: flex;
  flex-direction: column;
  padding: 60px 0;
  gap: 30px;
}

.connect-container h1 {
  text-align: center;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-links li {
  list-style: none;

}

.social-links li a {
  text-decoration: none;

  width: 50px;
  height: 50px;
  display: inline-flex; /* Use flexbox to center the icon */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  
  border-radius: 50%; /* Make it round */
  transition: background-color 0.3s ease; /* Optional hover effect */
}

.social-links li a i {
  font-size: 24px; /* Icon size */
  color: white;

}
a:has(.fa-facebook-f) {
  background-color: #0861F2;
}
a:has(.fa-instagram) {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);

}
a:has(.fa-youtube) {
  background-color:  #FF0000;
}



.bottomcontainer {
  display: flex;
  margin-top: 8vh;
  padding-bottom: 4vh;
  margin-inline: 5vw;
  justify-content: space-between;
  border-bottom: 2px solid rgb(224, 224, 224);

}

.bottomcontainer p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.logo {
  padding: 2vh 0 2vh 5vw;
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
  width: 30vw;
}

.navdiv ul {

  display: flex;
  margin-inline: 2vw;
  justify-content: space-evenly;
  width: auto;

}

.navdiv li {
  display: none;
  font-size: 10px;
}

li a {
  text-decoration: none;

  font-size: 1.5vw;
  transition: all 1s;
  color: rgb(253, 151, 151);
}

.button {
  margin-top: -2vh;
  color: -webkit-link;
  cursor: pointer;
  text-decoration: none;
  padding: 1vh 2vw;
  position: relative;
  top: -0.5vh;
  width: 30vw;
  font-size: 2.5vw;
}

/* technique */
#techniques-section {
  display: grid;
  place-items: center;


}

.techniques {

  width: 90%;
  height: fit-content;


}

.techniques h2 {
  font-size: 30px;
  font-weight: 650;
  color: #000000;
  /* padding-top: 30px; */
  margin: 20px;
  text-align: center;
}

.learn_list {
  width: 100%;
  height: fit-content;
  display: flex;

}

.list-container {
  width: 65%;
  height: fit-content;
  padding-top: 90px;
}

#techniques-list li i {
  color: var(--primary-color);
  font-size: 30px;


  position: relative;
  /* padding-left: 36px; */
}

#techniques-list li span {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

#techniques-list li {
  list-style: none;


}
#techniques-list li::before {
  font-family: "Font Awesome 5 Free"; /* Use the Font Awesome font */
  content: "\f00c"; /* Icon's unicode (e.g., check mark) */
  position: absolute;
  left: 20px;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-color); /* Set custom color */
}

.guimage {
  border-radius: 5px;
  background: url(DSC_0060.JPG);
  background-size: cover;
  width: 35%;
  height: 400px;

}

@media (max-width: 768px) {
  .learn_list {
    flex-direction: column-reverse;
  }

  .guimage {
    width: 100%;
    height: 500px;
  }

  .list-container {
    width: 100%;
  }
}


/* footer ==============================================================================================================*/
footer {
  background-color: var(--secondary-color);
  color: white;
}

.footer-container {
  width: 90%;
  text-align: center;
  margin: auto;
}

.flex-container {
  display: flex;


}

/* .col{
  display: flex;
  flex-direction: column;
  flex: 0 0 25%;
  align-items: center;
} */
.logo-container {
  display: flex;
  align-items: center;
}
.logo-container img{
  height: 80px;
}

.footer-links-container {
  flex: 0 0 75%;
  display: flex;
}

.footer-links-container>div {
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-form-container {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.col>h3 {
  padding-top: 15px;
  font-size: 1.5rem;
}
.col>a{
  text-decoration: none;
  color: white;
}
.form-group textarea {
  min-height: 50px;
  max-height: 150px;
  color: white;

}

.form-group button {
  width: 80%;
  border: none;
}

.form-group input,
textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid white;
  outline: none;
  width: 80%;
}

.icon-wrapper {
  display: flex;

}

.icon-wrapper i {
  font-size: 1.5rem;
  margin: 10px 10px;
}

.icon-wrapper span {
  display: flex;
  text-align: left;
}

.col span a {
  text-decoration: none;
  color: white;
  width: 40px;
  height: 40px;
  display: inline-flex; /* Use flexbox to center the icon */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
 
  border-radius: 50%; /* Make it round */
  transition: background-color 0.3s ease; /* Optional hover effect */
}

.float-icon-container{
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.float-icon-container a {
  height: 40px;
  width: 40px;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;

}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  /* line-height: 50px; */
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button i {
  color: white;
  vertical-align: middle;
  line-height: 50px;
}

@media (max-width: 1024px) {
  .logo-container {
    display: none;
  }

  .flex-container {
    flex-direction: column;
  }

  .footer-links-container {
    flex: 0 0 100%;

  }

  .footer-form-container {
    flex: 0 0 100%;
    margin-top: 20px;
  }

}

@media (max-width: 768px) {
  .footer-links-container {
    flex-direction: column;
  }
  .footer-links-container>div {
    width: 100%;
}
  .col {
    margin-top: 20px auto;
  }
}



/* override boootstarp */
.techniques-list {
  padding-left: 0;
}