@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --bg-color: #f5f5f5;
  --text-color: #1a1a1a;
  --color-1: rgb(12, 14, 44);
  --color-2: rgba(75, 104, 100, 0.7483368347338936);
  --color-3: rgb(52, 234, 183);
}

body {
  /* background-color: var(--bg-color); */
  --bg-color: #f5f5f5;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

/* Desktop */
/* First Section */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 0px 40px;
  /* background: #1f1e1ebb; */
  max-height: 100px;
  background: -moz-linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.87) 48%,
    #879b95
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.884) 48%,
    #879b95
  );
  background: linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.87) 48%,
    #879b95
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c0e2c",endColorstr="#34eab7",GradientType=1);
}

/* .header-logo {
  width: 120px;
  border-radius: 5%;
} */
.navbar-logo p:nth-child(1) {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.8rem;
  font-family: "Baloo 2", sans-serif;
}

.navbar-logo p:nth-child(1) span {
  color: #00bf24;
}

.navbar-logo p:nth-child(2) {
  font-weight: 600;
  color: #f5f5f5;
  font-family: "Baloo 2", sans-serif;
}

a {
  text-decoration: none;
}

.menu {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  width: 60%;
}

.menu p {
  color: #fff;
}

.menu a {
  color: #fff;
}

.menu p:hover {
  cursor: pointer;
  color: #ffc107;
}

.background-hero {
  width: 100%;
  height: auto;
  background: rgb(12, 14, 44);
  background: -moz-linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.7483368347338936) 48%,
    #6ee7c3
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.7483368347338936) 48%,
    #6ee7c3
  );
  background: linear-gradient(
    90deg,
    rgba(12, 14, 44, 1) 0%,
    rgba(75, 104, 100, 0.7483368347338936) 48%,
    #6ee7c3
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c0e2c",endColorstr="#34eab7",GradientType=1);
  /* background-image: url(./storage/banner/6079758.jpg); */
}

.background-hero {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  align-items: center;
  padding-bottom: 1rem;
}

.left-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

h1 {
  font-size: 2.8rem;
  color: #f5f5f5;
}

h1 span {
  color: #ffc107;
}

.hero-up p {
  font-size: 1rem;
  color: #f5f5f5;
}

.hero-down p {
  font-size: 1.5rem;
  color: #f5f5f5;
}


.hero-down p:nth-child(1), .hero-down p:nth-child(2) {
  font-size: 1.2rem;
}


.hero-btn-group {
  display: flex;
  gap: 2rem;
}

.hero-btn-group button {
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 0.5rem;
  outline: none;
  background-color: #ffc107;
  border: none;
  font-weight: 600;
}

.hero-btn-group button:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.5s;
}

.hero-btn-first {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.hero-btn-second {
  background-color: #ffc107;
  border: none;
  outline: none;
}

.right-hero {
  padding-top: 2rem;
  width: 50%;
}

.right-hero img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* Second Section */

.second-heading {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  text-align: center;
}

.second-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

/* Slides */

.second-para {
  width: 70%;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.slider {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
}

.slider img {
  width: 70%;
  height: auto;
  display: none;
  border-radius: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  cursor: pointer;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: gray;
  margin: 0 5px;
}

.dot.active {
  background-color: black;
}

.button-red {
  background-color: #f44336;
}

#third-section {
  background-color: #b0f1de;
  padding: 2rem 0;
  margin-top: 3rem;
}

.courses-infobox {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
}

/* #Skills {
  display: none;
} */

.pnc-pane {
  display: flex;
  gap: 1rem;
  display: 100%;
}

.pnc-pane img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.course-info-buttons {
  margin: 1rem 0;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 2rem;
}

#button1,
#button2 {
  padding: 1rem 1.5rem;
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
  border-radius: 0.5rem;
}

#button1:hover,
#button2:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.5s;
}

.courses-header {
  font-size: 2.5rem;
}

/* Fourth Section */
#fourth-section {
  background-color: #b61b0f;
}

.banner-fourth {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.top-para {
  display: flex;
  gap: 2rem;
}

.top-para p {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.second-para {
  display: flex;
  justify-content: center;
}

.second-para p {
  font-size: 2rem;
  font-weight: 900;
  color: #ffc107;
}

.image-section {
  width: 100%;
  height: auto;
  display: flex;
  object-fit: contain;
  justify-content: space-around;
}

.image-section img {
  width: 40%;
  height: auto;
  border-radius: 2rem;
}

.contact-address {
  background-color: aliceblue;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  text-align: center;
}

.contact-address p {
  font-size: 1.5rem;
  font-weight: 900;
}

/* Contact Section */

.contact-container {
  width: 40%;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  /* padding: 32px 40px; */
  height: 100px;
}

.footer-details {
  background-color: #0056b3;
  padding: 2rem 1rem;
  color: #f5f5f5;
}

.social-media {
  display: flex;
  justify-content: space-between;
  width: 50%;
  background-color: #fff;
  padding: 0.1rem 1rem;
  align-items: center;
  border-radius: 1rem;
}

.social-media img {
  width: 30px;
}


.footer-box {
  margin-bottom: 32px;
  padding-left: 1rem;
}

.footer-box p:nth-child(1) {
  color: #1751aa;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.8rem;
  font-family: "Baloo 2", sans-serif;
}

.footer-box p:nth-child(1) span {
  color: #00bf24;
}

.footer-box p:nth-child(2) {
  font-weight: 600;
  font-family: "Baloo 2", sans-serif;
}

iframe {
  border: 0;
  border-radius: 1rem;
  width: 100%;
  height: auto;
}

.footer-details {
  display: flex;
  justify-content: space-between;
}

/* Library Page */
.library {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.library h1 {
  font-size: 3rem;
  color: #1a1a1a;
}

.library-image img {
  width: 100%;
  height: auto;
}

/* Hamburger */
 #hamburger {
  display: none;
 }


/* Mobile and Tab */

@media screen and (max-width: 768px) {
  .navbar {
    padding: 0px 10px;
  }

  .navbar-logo p:nth-child(1) {
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 900;
    text-decoration: none;
  }

  .navbar-logo p:nth-child(2) {
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 600;
  }

  .menu {
    gap: 5px;
  }

  .menu p {
    font-size: 0.8rem;
  }

  .about {
    text-align: center;
  }

  .background-hero {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
  }

  .background-hero div {
    width: 100%;
  }

  .left-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-btn-group {
    justify-content: center;
  }

  h1 {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }

  .hero-up p {
    text-align: center;
  }

  .hero-down p {
    font-size: 1rem;
    text-align: center;
  }

  .second-h2 {
    font-size: 1.5rem;
  }

  .second-para {
    font-size: 0.8rem;
  }

  .slider img {
    width: 100%;
  }

  .courses-infobox {
    width: 100%;
  }

  .courses-header {
    font-size: 1.5rem;
    width: 100%;
  }

  .infobox-p {
    font-size: 0.8rem;
  }

  .course-info-buttons {
    gap: 1rem;
  }

  #button1,
  #button2 {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .pnc-pane {
    flex-direction: column;
  }

  .pnc-pane img {
    width: 90%;
  }

  .top-para {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }
  .second-para p {
    text-align: center;
  }

  .banner-fourth {
    padding: 1rem;
  }

  .contact-address p {
    font-size: 1rem;
  }

  .image-section {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
  }

  .image-section img {
    width: 100%;
    border-radius: 0.5rem;
  }

  .contact-container {
    width: 80%;
  }

  .footer-details {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-box p:nth-child(1) {
    font-size: 1rem;
  }
  .footer-box p:nth-child(2) {
    font-size: 0.83rem;
  }
}

/* whatsapp */
.whatsapp-chat {
  position: fixed;
  bottom: 20px; 
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 9999; 
}

.whatsapp-chat img {
  width: 60px;
  margin-right: 10px;
}

