/*----------- Goole Font Link------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
/*==================================== Default Styles ==================================== */

:root {
  --h1_color: #016B9D;
  --h6_color: #004366;
  --nav_color: rgb(21, 21, 100);
  --orange_color: #E84911;
  --lato: "Lato", sans-serif;
  --icon: #F48829;
  --footer: #003F62;
  --side_bar: rgba(5, 69, 104, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color:rgb(255, 204, 0); ;
  overflow-x: hidden;
}

/*----Global Tags---- */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--h6_color);
}

span {
  font-size: .9rem;
  color: #757373;
}

h6 {
  font-size: 1.1rem;
  color: var(--h6_color);
}


/*=============================== Navigation Section  ================================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}


nav {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  width: 100%;
  background-color: #fff;
  justify-content: space-between;
  padding: 1vw 8vw;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

.scrolled nav {

  display: flex;
  flex-direction: row;
  margin-top: 50px;
  width: 100%;
  background-color: #fff;
  justify-content: space-between;
  padding: 1vw 8vw;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);

}

nav img {
  width: 200px;
  cursor: pointer;
}

nav .navigation {
  display: flex;
}

#menu-btn {
  width: 30px;
  height: 30px;
  display: none;
}

#menu-close {
  display: none;
  cursor: pointer;
}

nav .navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav .navigation ul li {
  list-style: none;
  margin-left: 30px;
}

nav .navigation ul li a {
  font-size: 16px;
  color: var(--nav_color);
  font-weight: 500;
  transition: 0.3s ease;
  gap: 9px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

}

nav .navigation ul li a i {
  color: var(--orange_color);
}

nav .navigation ul li a.active,
nav .navigation ul li a:hover {
  color: var(--h1_color);
}

nav .navigation ul li a.active::after {
  color: var(--orange_color);
  width: 100%;
  bottom: -1px;
}

nav .navigation ul li a:hover:after {
  color: var(--orange_color);
  width: 100%;
  bottom: -1px;
}

/* nav .navigation ul li a.active, */
nav .navigation ul li a:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 0%;
  background-color: var(--orange_color);
  top: 100%;
  left: 0%;
  border-radius: 5px;
  transition: all 0.5s;
  text-decoration: none;
  margin-top: 7px;
}

.top_bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 50px;
  position: absolute;
  top: 0;
  background-color: transparent;
  padding: 5px 10px;
}

.top_bar h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--h6_color);
  margin-right: 7px;
  cursor: pointer;
}

.top_bar h3:hover {
  color: #FFF;
}

.top_bar h3 i {
  margin-right: 5px;
  color: var(--h1_color);
}

.top_bar h3 i:hover {
  color: #FFF;
}


/*---------Scroll Navbar --------*/

.scrolled {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  transition: 0.9 ease-in;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  scroll-behavior: smooth;
  animation: animate 1.2s ease-in-out;
  z-index: 999;


}


@keyframes animate {
  0% {
    transform: translateY(-100%);
  }

}





/*============================= SYLLABUS section ================================= */
.leadership-overview {
  padding: 60px 20px;
  background-color: rgb(255, 204, 0);
  text-align: center;
}

.leadership-overview h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--h6_color);
}

.leadership-overview h2::after {
  content: "";
  display: flex;
  width: 60px;
  height: 3px;
  background-color: var(--h6_color);
  margin: 10px auto 0;
  border-radius: 2px;
}


    .container{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
    }
    .card{
        background: #fff;
        padding: 30px;
        width: 240px;
        height: 320px;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,1);
    }
 .card h3{
        text-align: center;
        font-family:"Poppins", sans-serif;
        background-color:#e09b00;
        border-radius: 12px;
        margin-bottom: 5px;
 } 
  .row{
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 8px 0;
        margin-bottom: 10px;
    }  
   .row p{
        margin: 0;
        font-family:"Poppins", sans-serif;
        font-size: 18px;
        font-weight: bold;
    }
   .btn{
  background: #3498db;
  color: white;
  border:none;
  padding:5px 10px;
  border-radius: 15px;
  font-size: 15px;
  cursor: pointer;
   }

    .btn:hover{
        background: #9de463;
    }
    .btns{
      background: #ec6d46;
      color: white;
      border: none;
      padding: 12px 35px;
      cursor: pointer;
      font-size: 15px;
      font-weight: bold;
      border-radius: 12px;
    }
/* Responsive for tablets and below */
@media (max-width: 768px) {
  .leadership-cards {
    flex-direction: column;
    align-items: center;
  }
}


/*=============================== Developer Section =============================== */
.developer-section {
  text-align: center;
  padding: 8vw 8vw 8vw 8vw;
  background-color: #fff;
  box-sizing: border-box;
  background-color: var(--h6_color);
}

.developer-section h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: rgba(255, 204, 0, 0.908);
}

.developer-section p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 1.2em;
}

/* Developer container grid layout */
.developer-team {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 204, 0, 0.908);
  ;
  background-color: var(--footer);
}

.developer-team h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.developer-team h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff9900;
  margin: 10px auto 0;
  border-radius: 2px;
}

.developer-team .appreciation {
  font-size: 1rem;
  color: #dbd8d8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.member-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 220px;
  text-align: center;
}

.member-card:hover {
  transform: translateY(-10px);

}

.member-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.member-card h3 {
  margin: 10px 0 5px;
  color: var(--h6_color);
  font-size: 1.1em;
}

.member-card p {
  padding: 2px;
  font-size: 0.9em;
  color: #777;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin: 0 5px;
  display: inline-block;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: transform 0.2s, opacity 0.2s;
}

.social-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* Responsive for .developer-section & .developer-team (no changes to .member-card) */

/* Tablets & small desktops */
@media (max-width: 1024px) {
  .developer-section h1 {
    font-size: 2rem;
  }

  .developer-section p {
    font-size: 1.1em;
    text-align: justify;
    /* Justify main paragraph for better reading */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .developer-team h2 {
    font-size: 1.8em;
  }

  .developer-team .appreciation {
    font-size: 0.9rem;
    max-width: 600px;
    text-align: justify;
  }

  .team-members {
    gap: 20px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .developer-section {
    padding: 6vw 4vw 6vw 4vw;
  }

  .developer-section h1 {
    font-size: 1.6em;
  }

  .developer-section p {
    font-size: 1em;
    padding: 0 10px;
  }

  .developer-team h2 {
    font-size: 1.6em;
  }

  .developer-team .appreciation {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .team-members {
    gap: 16px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .developer-section {
    padding: 4vw 2vw 4vw 2vw;
  }

  .developer-section h1 {
    font-size: 1.4em;
  }

  .developer-section p {
    font-size: 0.95em;
    padding: 0 8px;
    text-align: justify;
  }

  .developer-team h2 {
    font-size: 1.4em;
  }

  .developer-team .appreciation {
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .team-members {
    gap: 12px;
  }
}


/*=============================== Footer Section  ================================== */

footer {
  padding: 4vw;
  background-color: var(--footer);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

footer .footer-col {
  padding-bottom: 40px;
}

footer h3 {
  color: #ff9900;
  font-weight: 600;
  padding-bottom: 20px;

}

footer h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-left: 15px;
  background-color: #ff9900;
  border-radius: 2px;
}

footer li a {
  color: #ffffff;
  padding: 10px 0;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;

}

footer li a:hover {
  color: rgb(51, 0, 255);
}

footer p {
  color: #7b838a;
}

footer .subscribe {
  margin-top: 20px;
}

footer input {
  width: 220px;
  padding: 15px 12px;
  background: var(--h1_color);
  border: none;
  outline: none;
  color: #fff;
  border-radius: 5px;
}

footer input::placeholder {
  color: #7b838a;
  font-size: 15px;
}

footer .subscribe a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 15px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
  margin-left: 9px;
}

footer .subscribe a.Yellow_button {
  color: var(--h1_color);
  background: var(--icon);
  transition: 0.3s ease;
}


footer .subscribe a.Yellow_button:hover {
  color: var(--footer);
  background: #fff;
}

footer .copyright {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;

}

footer .copyright p {
  color: #fff;
}

footer .copyright .pro-links {
  margin-top: 0px;
}

footer .copyright .pro-links i {
  background-color: #5f7185;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s ease;
  border: none;

}

footer .copyright .pro-links i:hover {
  background-color: var(--icon);
  color: #fff;
  color: var(--footer);
}


/* === Footer Responsive Styles === */

/* Tablets (768px – 1023px) */
@media (max-width: 1023px) {
  @media (max-width: 1023px) {
    footer {
      padding: 5vw 3vw;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* 2 columns */
      gap: 20px;
      align-items: start;
    }

    footer h3::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ff9900;
      border-radius: 2px;
    }

    footer .footer-col {
      width: 100%;
      margin-bottom: 0;
    }

    footer input {
      width: 100%;
      margin-bottom: 10px;
    }

    footer .subscribe {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    footer .subscribe a {
      margin-left: 0;
      margin-top: 10px;
    }

    footer .copyright {
      grid-column: span 2;
      /* make copyright full width */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 20px;
    }
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  footer {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column grid */
    gap: 20px;
    padding: 8vw 4vw;
    text-align: center;
    align-items: center;
  }

  footer .footer-col {
    width: 100%;
    padding-bottom: 0;
  }

  footer h3 {
    font-size: 1.3rem;
  }

  footer h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 10px auto 0;
    background-color: #ff9900;
    border-radius: 2px;
  }

  footer li a {
    font-size: 18px;
  }

  footer input {
    width: 100%;
    font-size: 14px;
  }

  footer .subscribe {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  footer .subscribe a {
    width: 100%;
    text-align: center;
  }

  footer .copyright {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  footer .copyright .pro-links {
    margin-top: 10px;
  }
}


/*=============================== @media Query Section  ================================== */

/*-------- Max-Width:769--------- */
@media (max-width:769px) {
  body {
    width: 100%;
  }

  /* -----Header------- */

  nav {
    padding: 15px 20px;
    width: 100%;
    margin-top: 0;
    z-index: 999;
    overflow: hidden;
  }

  nav img {
    width: 160px;
  }

  #menu-btn {
    display: initial;
    z-index: 999;

  }

  #menu-close {
    display: initial;
    font-size: 1.6rem;
    color: var(--icon);
    padding: 30px 0px 20px 20px;
    font-weight: 500;
    cursor: pointer;
    z-index: 999;
    z-index: 999;

  }

  nav .navigation ul {
    position: absolute;
    top: 0;
    /* right: -300px; */
    right: 0;
    display: none;
    width: 220px;
    height: 100vh;
    background: var(--side_bar);
    backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 225, 225, 0.25);
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    scroll-behavior: smooth;
    animation: Sidebar 0.5s ease-in;
  }

  @keyframes Sidebar {
    0% {
      transform: translateX(100%);
    }

  }


  nav .navigation ul.active {
    /* right: 0; */
    display: flex;
  }

  nav .navigation ul li {
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }

  nav .navigation ul li a {
    color: #fff;
  }

  #Contect_Info {
    display: block;
  }

  .top_bar h3 {
    display: none;
  }

  .scrolled nav {
    margin-top: 0;
    z-index: 999;
  }


  /* ------Home------- */
  #home h2 {
    color: #fff;
    font-size: 2rem;
    width: 60%;
    letter-spacing: 1px;
  }

  #home p {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    width: 100%;
    line-height: 20px;
    margin-top: 7px;
  }



  /* Register */

  #registration {
    padding: 6vw 4vw 6vw 4vw;
    height: auto;
  }

  #registration .reminder .time {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  /* Footer */

  footer .subscribe {
    margin-top: 15px;


  }

  footer .subscribe input {
    margin-bottom: 10px;
  }

  footer .copyright {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

  }

  footer .copyright .pro-links {
    margin-top: 15px;
    text-align: center;
  }

  #features {
    padding: 8vw 4vw 0px 4vw;
  }

  #course {
    padding: 8vw 4vw 0px 4vw;

  }

}

/*-------- Max-Width:980--------- */

@media (max-width:980px) {
  body {
    width: 100%;
  }

  nav img {
    width: 180px;
  }

  /* -----Header------- */
  nav {
    padding: 15px 30px;
    width: 100%;
    /* margin-top: 0; */
    z-index: 999;
  }

  #menu-btn {
    display: initial;
    z-index: 999;

  }

  #menu-close {
    display: initial;
    font-size: 1.6rem;
    color: var(--icon);
    padding: 30px 0px 20px 20px;
    font-weight: 500;
    cursor: pointer;
    z-index: 999;

  }

  nav .navigation ul {
    position: absolute;
    top: 0;
    /* right: -300px; */
    right: 0;
    width: 220px;
    height: 100vh;
    background: var(--side_bar);
    backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 225, 225, 0.25);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    scroll-behavior: smooth;
    animation: Sidebar 0.5s ease-in;
  }

  @keyframes Sidebar {
    0% {
      transform: translateX(100%);
    }

  }

  nav .navigation ul.active {
    right: 0;

    display: flex;
  }

  nav .navigation ul li {
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }


  nav .navigation ul li a {
    color: #fff;
  }

  nav .navigation ul #Contect_Info {
    display: block;
  }

  .scrolled nav {
    margin-top: 50;
    top: 0;
    z-index: 9999;

  }

  /* ------Home------- */

  #home h2 {
    color: #fff;
    font-size: 1.8rem;
    width: 60%;
    letter-spacing: 0.5;
  }

  #home p {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: 100%;
    line-height: 20px;
    margin-top: 7px;
  }



  /* Register */

  #registration {
    height: auto;
  }



  /*-------- Max-Width:1080--------- */

  @media (max-width:1080px) {
    nav .navigation ul li {
      list-style: none;
      margin-left: 15px;
    }
  }

  /*-------- Max-Width:475px--------- */


  @media (max-width:475px) {
    #registration {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }



    .foot {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .footer-col {
      width: 100%;
    }

    .copyright {
      width: 100%;
    }

    .counters_box {
      height: auto;
    }

    #counters {
      height: auto;

    }

    #about-container {
      flex-direction: column-reverse;
    }

    #about-container .about-img {
      width: 100%;
    }

    #about-container .about-img img {
      width: 100%;
      height: auto;
      padding-right: 0px;
    }

    #about-container .about-text {
      width: 100%;
      padding-bottom: 20px;
    }
  }

  @media (max-width:407px) {

    #home .btn {
      display: flex;
      /* flex-wrap: wrap; */
    }

    .counters_box {
      height: auto;
    }


  }
}