@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.icons-main{
  width: 50px;
  /* background-color: turquoise; */
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icons-main a{
  text-decoration: none;
}

.phone-main{
  width: 40px;
  height: 40px;
  background-color: #A75519;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
}

.insta-main{
  width: 40px;
  height: 40px;
  background: #A75519;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
}

.whatsapp-main{
    width: 40px;
  height: 40px;
  background: #A75519;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
}


/* ----------------------------------------------------------- Navbar ------------------------------------------------------------------- */


.navbar-main {
  width: 100%;
  height: 80px;
  position: fixed;
  background-color: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-main.scrolled {
  background-color: #ffffff;
  /* Change to your preferred solid color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  width: 80%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  width: 7rem;
}

.nav-pages {
  width: 700px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-pages ul {
  display: flex;
  gap: 30px;
  list-style-type: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.nav-pages a {
  cursor: pointer;
  color: #A75519;
  text-decoration: none;
}

.nav-pages a:hover {
  color: #09717A;
}

.nav-menu {
  display: none;
  align-items: center;
  justify-content: end;
}

.nav-menu i {
  cursor: pointer;
  font-size: 27px;
  color: #A75519;
}

.nav-menu i:hover {
  color: #09717A;
}

/* Slide menu */
.slide-menu {
  position: fixed;
  top: 80px;
  right: -250px;
  width: 250px;
  height: auto;
  background-color: #09717A;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 999;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-menu.active {
  right: 10px;
}

.slide-menu ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  /* justify-content: center; */
  align-items: center;
}

.slide-menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.slide-menu ul li a:hover {
  color: #A75519;
}

/* Responsive */
@media (max-width: 850px) {
  .nav-pages {
    display: none;
  }

  .nav-menu {
    display: flex;
  }

  .navbar-content {
    width: 90%;
  }
}



/* ------------------------------------------------------------------------------- home ------------------------------------------------------------- */

.home-main {
  width: 100%;
  height: auto;
  /* background-color: aqua; */
  padding-top: 80px;
  padding-bottom: 30px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}

.home-content-main {
  width: 90%;
  height: auto;
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.home-content-text {
  width: 50%;
  height: auto;
  /* background-color: rgb(255, 255, 117); */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-content-text-head {
  font-size: 30px;
  color: #A75519;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.home-content-text-descrption {
  width: 85%;
  text-align: justify;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  color: gray;
  /* background-color: yellowgreen; */
}

.home-content-text button {
  width: 180px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background-color: #A75519;
  color: white;
}

.home-content-img {
  width: 45%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width:1100px) {
  .home-content-main {
    flex-direction: column;
    padding-top: 30px;
    gap: 40px;
  }

  .home-content-text {
    width: 80%;
    align-items: center;
  }

  .home-content-text-descrption {
    width: 100%;
  }

  .home-content-img {
    width: 80%;
    height: auto;
    /* background-color: #09717A; */
  }
}

@media (max-width:600px) {
  .home-content-text-head {
    font-size: 25px;
  }

  .home-content-img {
    width: 100%;
  }
}

@media (max-width:400px) {
  .home-content-text-head {
    font-size: 22px;
  }
}

/* ----------------------------------------------------------------- about --------------------------------------------------------- */

.about-main {
  width: 100%;
  height: auto;
  /* background-color: yellowgreen; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.about-content-box {
  width: 90%;
  height: auto;
  background-color: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
}

.about-content-img {
  width: 47%;
  height: auto;
  /* background-color: violet; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content-img img {
  width: 100%;
}

.about-contnet-text {
  width: 50%;
  height: auto;
  /* background-color: aqua; */
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  line-height: 25px;
}

.about-contnet-text h3 {
  font-size: 23px;
  color: #09717A;
}

.about-contnet-text p {
  text-align: justify;
}

@media (max-width:1200px) {
  .about-content-box {
    flex-direction: column;
    gap: 30px;
  }

  .about-content-img {
    width: 100%;
  }

  .about-contnet-text {
    width: 100%;
  }
}

@media (max-width:500px) {
  .about-content-box {
    width: 98%;
  }
}


/* --------------------------------------------------------------------- Placement ---------------------------------------------------- */

.placement-main {
  width: 100%;
  height: auto;
  background-color: #04676d;
  /* padding-bottom: 30px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.placement-head {
  width: 100%;
  /* height: 250px; */
  /* background-color: yellow; */
  padding-top: 30px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  gap: 20px;
  text-align: center;
}

.placement-head button {
  width: 150px;
  height: 38px;
  font-weight: bold;
  color: #09717A;
  border: none;
  font-size: 17px;
  border-radius: 20px;
  cursor: pointer;
}

.placement-img-main {
  width: 100%;
}

.placement-img-main img {
  width: 100%;
}

@media (max-width:700px) {
  .placement-head {
    font-size: 55px;
  }
}

@media (max-width:600px) {
  .placement-head {
    font-size: 50px;
  }
}

@media (max-width:500px) {
  .placement-head {
    font-size: 45px;
  }
}

/* ------------------------------------------------------------------------------ why iqjita ---------------------------------------------------------- */

.why-main {
  width: 100%;
  height: auto;
  /* background-color: yellow; */
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  gap: 20px;
}

.why-maiin-head {
  width: 90%;
  height: 50px;
  /* background-color: #09717A; */
  font-size: 25px;
  color: #A75519;
}

.why-content-main {
  width: 87%;
  height: auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-content-main h3 {
  color: #09717A;

}

.why-content-main p {
  font-size: 15px;
  text-align: justify;
  line-height: 22px;
}

.why-content-boxes {
  width: 100%;
  height: auto;
  /* background-color: yellowgreen; */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px 0;
  justify-content: center;
}

.feature-card {
  background-color: #04676d;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  border: 1px solid #e0e0e0;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card i {
  font-size: 28px;
  color: #ffffff;
  /* Your preferred primary color */
  margin-bottom: 10px;
  display: block;
}

.feature-card p {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* --------------------------------------------------------------------------------------------- course ---------------------------------------- */

.course-section {
  width: 100%;
  height: auto;
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-content-main {
  width: 90%;
}

.course-heading h4 {
  color: #09717A;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-heading h2 {
  font-size: 32px;
  color: #A75519;
  font-weight: bold;
  margin-bottom: 40px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.course-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 6px solid #09717A;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.course-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.course-info h3 {
  font-size: 18px;
  color: #09717A;
  margin: 0;
}

.course-info p {
  margin: 5px 0 0;
  color: #333;
  font-weight: 500;
}


/* ----------------------------------------------------------------------- testimonial ----------------------------------------------------------- */

.testimonial-section {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.testimonial-section h2 {
  color: #09717A;
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  width: 300px;
  flex-shrink: 0;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  text-align: left;

}

.testimonial-head {
  display: flex;
  gap: 20px;
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin: 5px 0;
  color: #A75519;
}

.testimonial-card span.course {
  font-size: 14px;
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.stars {
  color: #FFB400;
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Scrollbar Styling */
.testimonial-carousel::-webkit-scrollbar {
  height: 8px;
}

.testimonial-carousel::-webkit-scrollbar-thumb {
  background-color: #09717A;
  border-radius: 4px;
}

.testimonial-carousel::-webkit-scrollbar-track {
  background-color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 24px;
  }

  .testimonial-card {
    min-width: 260px;
    padding: 20px;
  }
}

/* <!-- ------------------------------------------------------------------------------ contact ---------------------------------------------------------------------- --> */

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Montserrat", sans-serif;
}

.contact-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-header .label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #09717A;
  margin-bottom: 4px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #A75519;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease;
}

.info-card-a{
    text-decoration: none;
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #09717A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #09717A;
}

.info-content p {
  font-size: 14px;
  color: #888888;
  line-height: 1.4;
}

.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 32px 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #09717A;
  border-radius: 8px;
  font-size: 14px;
  color: #444444;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #A75519;
  box-shadow: 0 0 0 3px rgba(167, 85, 25, 0.15);
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  align-self: flex-start;
  background-color: #A75519;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background-color: #8C4118;
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------------------ footer ----------------------------------------------------------- */

.footer {
  background-color: #066a73;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-column p {
  line-height: 1.6;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff9933;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  background-color: #a75519;
  color: #ffffff;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.footer-socials a:hover {
  background-color: #ff9933;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.grecaptcha-badge {
    visibility: hidden !important;
    display: none!important;
    opacity: 0 !important;
}