@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
}

.course-main {
  width: 100%;
  height: auto;
  /* background-color: yellow; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 30px;
}


.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;
}


/* ===================== */
/*          Nav                */
/* ===================== */

.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%;
  }
}

/* =================== */
/*       Conatct       */
/* =================== */

/*.course-contact-main {*/
/*  width: 90%;*/
/*  height: auto;*/
  /* background-color: yellowgreen; */
/*  background: url(course-seprated-img/bk.jpg) !important;*/
/*   background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  background-attachment: scroll;*/
/*  background-size: cover;*/
/*  margin-top: 100px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: 50px;*/
  /* padding: 40px 0; */
/*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
/*}*/
.course-contact-main {
  width: 100%;
  height: 600px;
  background: url('course-seprated-img/bk.jpg') no-repeat center center;
  background-size: cover; /* Ensures image fills the entire div */
  /*margin-top: 100px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.course-contact-img {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.29);
}

.course-contact-img img {
  width: 100%;
}

.course-form-brochure-main {
  /* background-color: aquamarine; */
  /* padding: 5px; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 50px;
  margin-top: 100px;
}

.course-contact-form-main {
  width: 40%;
  height: 285px;
  background-color: rgba(255, 255, 255, 0.365);
  box-shadow: 0 0px 22px 0 rgb(0 0 0 / 20%);
  /* border: 1px solid rgba(128, 128, 128, 0.258); */
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-contact-form-head {
  width: 100%;
  height: 40px;
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  color: #A75519;
}

.course-contact-form-head span {
  color: #09717A;
}

.course-contact-form-inputs {
  width: 100%;
  height: 300px;
  /* background-color: turquoise; */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.course-contact-form-inputs input {
  width: 90%;
  height: 30px;
  border: 1px solid rgba(128, 128, 128, 0.405);
  outline: none;
  font-size: 15px;
  padding: 0 10px;
  font-family: "Montserrat", sans-serif;
}

.course-contact-form-inputs select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 90%;
  height: 33px;
  border: 1px solid rgba(128, 128, 128, 0.405);
  outline: none;
  font-size: 15px;
  padding: 0 10px;
  color: black;
  font-family: "Montserrat", sans-serif;
}

.course-contact-form-inputs textarea {
  width: 90%;
  height: 90px;
  border: 1px solid rgba(128, 128, 128, 0.405);
  outline: none;
  font-size: 15px;
  padding: 10px;
}

.course-contact-form-inputs textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #888;
}

.course-contact-form-inputs button {
  width: 90% !important;
  height: 40px;
  border: none;
  background-color: #09717A;
  color: white;
  border-radius: 30px;
}

@keyframes bounceHighlight {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* @keyframes shimmerBorder {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
} */

.brochure-btn {
  width: 160px;
  height: 42px;
  background-color: #A75519;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: bounceHighlight 2.5s infinite ease-in-out;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* .brochure-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(120deg, #09717A, #A75519, #c4a189, #09717A);
  background-size: 400% 100%;
  animation: shimmerBorder 4s linear infinite;
  z-index: -1;
  border-radius: 10px;
  filter: blur(2px);
} */

/* .brochure-btn:hover {
  background-color: #c4a189;
  color: #fff;
  transform: scale(1.05);
} */





@media (max-width:1100px) {
  /* .course-contact-main {
    flex-direction: column;
    gap: 20px;
  }

  .course-contact-img {
    width: 90%;
  } */

  .course-contact-form-main {
    width: 75%;
  }
}

@media (max-width:500px){
    .course-contact-form-main{
        width: 100%;
    }
}


/* =================== */
/*     Course desc     */
/* =================== */

.course-desc-main {
  width: 90%;
  height: auto;
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.course-desc-img-main {
  width: 45%;
  height: auto;
  /* background-color: violet; */
}

.course-desc-img-main img {
  width: 100%;
  /* height: 100%; */
}

.course-desc-content {
  width: 50%;
  height: auto;
  /* background-color: #09717A; */
  /* padding: 0 20px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-desc-content-head h1 {
  color: #A75519;
}

.course-desc-content-head h3 {
  color: #09717A;
}

.course-desc-content p {
  text-align: justify;
}

@media (max-width:950px) {
  .course-desc-main {
    flex-direction: column;
    gap: 20px;
  }

  .course-desc-img-main {
    width: 100%;
  }

  .course-desc-content {
    width: 100%;
  }
}

/* =================== */
/*     IQJITA desc     */
/* =================== */

.course-iqjita-desc-main {
  width: 88%;
  height: auto;
  background-color: rgba(233, 234, 234, 0.466);
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 10px;
}

.course-iqjita-desc-main h2 {
  color: #A75519;
}

.course-iqjita-desc-main p {
  text-align: justify;
}

/* =================== */
/*      what learn     */
/* =================== */

.course-learn-main {
  width: 90%;
  height: auto;
  /* background-color: turquoise; */
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.course-learn-main h2 {
  color: #09717A;
}

.course-learn-main p {
  text-align: justify;
  color: rgb(128, 126, 126);
}

.course-learn-points {
  margin-top: 15px;
}

.course-learn-points h3 {
  color: #A75519;
  margin-bottom: 10px;
}

.course-learn-points ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 28px;
  color: #555;
}

.course-learn-points b {
  color: #09717A;
}

/* =========================== */
/*      course information     */
/* =========================== */

.course-information-syllabus-main {
  width: 90%;
  height: auto;
  /* background-color: thistle; */
  /* padding: 30px; */
  border: 1px solid #808080a2;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
}

.course-information-main {
  width: 97%;
  height: auto;
  /* background-color: yellow; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid #808080a2;
}

.course-information-main h2 {
  color: #A75519;
}

.course-information-content {
  line-height: 30px;
}

.course-syllabus-main {
  width: 97%;
  height: auto;
  /* background-color: yellow; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-syllabus-main h2 {
  color: #A75519;
}

.course-syllabus-content {
  margin-left: 30px;
  line-height: 30px;
}

/* =================== */
/*      placement      */
/* =================== */

.course-placement-main {
  width: 90%;
  margin: auto;
  /* background-color: yellowgreen; */
  padding: 40px 0;
  color: #A75519;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.course-placement-card-main {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* scroll-snap-type: x mandatory; */
  scroll-behavior: smooth;
  padding-bottom: 10px;
  /* -webkit-overflow-scrolling: touch; */
}

.course-placement-card-main::-webkit-scrollbar {
  height: 8px;
}

.course-placement-card-main::-webkit-scrollbar-thumb {
  background-color: #09717A;
  border-radius: 4px;
  cursor: pointer;
}

.course-placement-card-main::-webkit-scrollbar-track {
  background-color: #ddd;
}

.course-placement-card {
  flex: 0 0 auto;
  width: 300px;
  height: 350px;
  border: 1px solid black;

}

/* =================== */
/*    cirtificate      */
/* =================== */

.course-certificate-main {
  width: 90%;
  height: auto;
  /* background-color: springgreen; */
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #A75519;
}

.course-certificate-img {
  width: 320px;
  height: 400px;
  /* background-color: yellow; */
}

.course-certificate-img img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Fullscreen Modal */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

.close-btn:hover {
  color: red;
}

/* =================== */
/*      why iqjita     */
/* =================== */

.why-iqjita-course-main {
  width: 90%;
  height: auto;
  /* background-color: violet; */
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-iqjita-course-main h2 {
  color: #09717A;
}

.why-iqjita-course-content {
  width: 100%;
  text-align: justify;
}

.why-iqjita-course-boxes-main {
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.why-iqjita-course-box {
  width: 250px;
  height: auto;
  padding: 0px 20px;
  border-left: 4px solid #c4a189;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px 2px;
  display: flex;
  gap: 15px;
  align-items: center;
  /* justify-content: center; */
}

.why-iqjita-course-box i {
  font-size: 20px;
  color: #09717A;
}

.why-iqjita-course-box p {
  font-size: 17px;
}