/*----------- 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%;
    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%);
    }
    
}



/*=============================== Home Section  linear-gradient(#0905364d,rgba(5,4,46,0.7)),================================== */

/*=============================== Home Section  linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)), ================================== */

#about-home{
    background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url('../images/Front_view-1.JPG');
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 5px 10px;
    padding-top: 60px;
}


#about-home h2{
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
      
}



#C_home{
    background-image:linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url('../images/c_program1.jpg');
    width: 100%;
    height: 75vh;
    /* background-size: contain; */
    object-fit: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 5px 10px;
    padding-top: 60px;
}


#C_home h2{
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
      
}

#home p{
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    width: 50%;
    line-height: 25px;
    margin-top: 7px;
}

#home .btn{
    margin-top: 50px;
    padding-left:8px ;

}
#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    margin-left: 9px;
}

#home a.blue_button {
    color: #fff;
    background: var(--h6_color);
    transition: 0.3s ease;
    
}



#home a.blue_button:hover {
    color: var(--h6_color);
    background: #fff;
}

#home a.Yellow_button {
    color: #fff;
    background: var(--orange_color);
    transition: 0.3s ease;
}


#home a.Yellow_button:hover {
    color: var(--h6_color);
    background: #fff;
}


/* -------------------------------------
   Responsive Styles - Tablet View
   ------------------------------------- */
   @media (max-width: 992px) {
    /* Reduce section height for tablet */
    #about-home, #C_home {
        height: 60vh;
        padding-top: 40px;
    }

    /* Adjust heading font size for tablet */
    #about-home h2, #C_home h2 {
        font-size: 2rem;
        text-align: center;
    }

    /* Adjust paragraph width and font for tablet */
    #home p {
        width: 80%;
        font-size: 0.85rem;
        line-height: 22px;
        text-align: center;
    }

    /* Center align buttons on tablet */
    #home .btn {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Reduce button size on tablet */
    #home a {
        font-size: 0.85rem;
        padding: 10px 25px;
        margin-left: 0;
    }
}

/* -------------------------------------
   Responsive Styles - Mobile View
   ------------------------------------- */
@media (max-width: 576px) {
    /* Reduce section height for mobile */
    #about-home, #C_home {
        height: 50vh;
        padding-top: 30px;
    }

    /* Further reduce heading font size for mobile */
    #about-home h2, #C_home h2 {
        font-size: 1.7rem;
        text-align: center;
    }

    /* Adjust paragraph width and font for mobile */
    #home p {
        width: 90%;
        font-size: 0.8rem;
        line-height: 20px;
        text-align: center;
    }

    /* Stack buttons vertically on mobile */
    #home .btn {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    /* Reduce button size on mobile */
    #home a {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}


/*=============================== Features Section  ================================== */

#features{
    padding: 5vw 8vw 8vw;
    text-align: center;

}

#features .fea-base{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap:1rem ;
    margin-top: 50px;
 
}



#features .fea-box{
    background: #F9F9FF;
    text-align: start;
   
}

#features .fea-box i{
    font-size: 2.3rem;
    color: var(--h6_color);
}

#features .fea-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--h6_color);
    padding: 13px 0 7px 0;
}

#features .fea-box p{
  font-size: 1rem;
  font-weight: 400;
  /* color: rgb(70,70,87); */

}


/*=============================== Course Section  ================================== */


#course{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
}

#course .course-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap:1.5rem ;
    margin-top: 50px;
}

#course .courses{
    text-align: start;
    background: #555594;
    height: 100%;
    position: relative;
    cursor: pointer;
}

#course .courses img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position:center;

}

#course .courses .details{
    padding: 15px 15px 0 15px;
}

#course .courses .details i{
   color: var(--icon);
   font-size: .9rem;
}

#course .courses  .cost{
  background: var(--h6_color);
  color: #fff;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 95px;

}


/* -------------------------------------
   Responsive Styles - Tablet View
   ------------------------------------- */
   @media (max-width: 992px) {
    /* Reduce padding for tablet */
    #course {
        padding: 6vw;
    }

    /* Adjust grid gap for tablet */
    #course .course-box {
        grid-gap: 1rem;
        margin-top: 40px;
    }

    /* Tweak course card details padding on tablet */
    #course .courses .details {
        padding: 12px 12px 0 12px;
    }

    /* Slightly reduce icon size in details for tablet */
    #course .courses .details i {
        font-size: 0.8rem;
    }

    /* Resize cost circle on tablet */
    #course .courses .cost {
        width: 60px;
        height: 60px;
        line-height: 60px;
        right: 10px;
        bottom: 85px;
        font-size: 0.9rem;
    }
}

/* -------------------------------------
   Responsive Styles - Mobile View
   ------------------------------------- */
@media (max-width: 576px) {
    /* Reduce padding even more for mobile */
    #course {
        padding: 4vw;
    }
    #course h2{
        font-size: 1rem;
    }

    /* Stack grid items better with smaller gaps */
    #course .course-box {
        grid-gap: 0.8rem;
        margin-top: 30px;
    }

    /* Adjust course card content padding for mobile */
    #course .courses .details {
        padding: 10px 10px 0 10px;
    }

    /* Further shrink icons in details for mobile */
    #course .courses .details i {
        font-size: 0.7rem;
    }

    /* Shrink cost circle more for mobile */
    #course .courses .cost {
        width: 50px;
        height: 50px;
        line-height: 50px;
        right: 8px;
        bottom: 75px;
        font-size: 0.8rem;
    }
}

/*=============================== Course-inner Courses Section  ================================== */
#course-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8vw 8vw;
}
#course-inner .overview{
    width: 70%;
}
#course-inner .overview .course-img{
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
 .course-head{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}



#course-innner .overview .course-head .c-name{
   width: 70%;
}

.c-name h2{
    color: var(--h6_color);
    font-size: 2rem;
}

.c-name .star{
    margin: 6px 0;
}
.c-name .star i{
    color: var(--icon);
    font-size: 0.9rem;
}

.c-name .star p{
     font-size: 15px;
     font-weight: 400;
     color: #000;
}

 .course-head span{
    padding: 16px 13px;
    color: var(--h6_color);
    font-weight: 700;
    font-size: 24px;
}

#course-inner .learn p{
    font-size: 15px;
    padding-bottom:15px ;
    color: #000;
    font-weight: 400;
}

#course-inner h3{
    padding: 35px 0px 25px 0px;
    color: var(--h6_color);
}

#course-inner .learn p i{
    color: var(--h6_color);
    font-weight: 700;
    margin-right: 20px;

}
#course-inner .tutor{
    display: flex;
    /* justify-content: center; */
    align-items:center ;
}

#course-inner .tutor img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

#course-inner .tutor h5{
    font-size: 15px;
    color: var(--h1_color);
}

#course-inner hr{
    height: 1px;
    background: rgba(236,226,229,0.5);
    margin-top: 40px;
}

#course-inner .entroll{
    width: 350px;
    padding: 0px 30px 30px 30px;
    border-radius: 11px;
    box-shadow: 0px 20px 40px 0 rgb(11 2 55 / 8%);
    margin-left: 20px;
}

#course-inner .entroll h3{
    padding-bottom: 10px;
    font-size: 1.5rem;
}
#course-inner .entroll p{
    color: #000;
    font-size: 15px;
    font-weight: 400;   
    margin: 15px 0;
}

#course-inner .entroll p i{
    color: var(--h1_color);
    font-size: 15px;
    font-weight: 500;   
    margin-right: 18px ;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
}

#course-inner .entroll .enroll-btn{
    padding: 25px 0 20px 0;
    margin: auto;
    text-align: center;

}


#course-inner .entroll .enroll-btn a{
    font-size: .8rem;
    padding: 13px 45px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    background-color: var(--h6_color);
}


/*================== Faq Section =============== */

.accordion{
  background-color: white;
  width: 100%;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  border-radius: 8px;
}

.accordion i{
    font-size: 1.6rem;
}

.active ,
.accordion:hover{
    background-color: #f1f7f5;
}

.pannel{
    padding:0 2rem 2.5rem 2rem;
    background-color: white;
    overflow: hidden;
    background-color: #f1f7f5;
    border-radius: 8px;
    display: none;
    
}



.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.faq.active{
    border: none;
}









/*=============================== Profilo Section  ================================== */

#experts{
    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
}

#experts .expert-box{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap:1.5rem ;
    margin-top: 50px;
}

#experts .expert-box .profile{
    background: #fafaf1;
    padding: 30px 10px;

}

#experts .expert-box .profile img{
   height: 200px;
   background-position: center;
   background-size: cover;
   border-radius: 100%;
}

.pro-links{
    margin-top: 10px;
}

.pro-links i{
    padding: 10px 13px;
    border: 1px solid var(--h1_color);
    cursor: pointer;
    border-radius: 3px;
    transition: 0.3s ease;
    
}

.pro-links i:hover{
    background-color: var(--h1_color);
    color: #fff;
}
/*===============================Company-container Course Section  ================================== */

.if{
    text-align: center;
}
#counters{
    width: 100%;
    height: 60vh;
    background-color: var(--side_bar);
    margin-bottom: 20px;

}
/* .counters{
    padding: 8vw 8vw 2vw 8vw;
} */
.counters_box{
     display: flex;
     flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* padding: 8vw 8vw 2vw 8vw; */
    width: 100%;
    height: 60vh;
    background-color: var(--side_bar);
    margin-bottom: 20px;
    /* background-image:url('../images/bg-01.jpg'); */
    background-image: linear-gradient(rgba(99,112,168,0.5),rgba(81,91,233,0.5)),url("../images/Back_View-5.JPG");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.counters_box .counter{
    text-align: center;
    padding: 13px 33px;
    background: rgba(255,225,225,0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
    border-radius: 5px;
    margin: 0 5px 10px 5px;
    width: 280px;
    height: 100px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.counters_box .counter p{
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 8px;
    color: var(--icon);
    
}

.counters_box .counter h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    
}
.counters_box .counter p span {
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 5px;
    color:var(--icon) ;
    text-shadow: 8px 8px 32px 8px rgba(0,0,0,0.37);
    .image-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 30px;
        gap: 20ppx;
        margin: 20px;
    }
    
  
}


/* === Counters Section Responsive Styles === */

/* Tablets (768px – 1023px) */
@media (max-width: 1023px) {
    #counters,
    .counters_box {
      height: auto;
      padding: 40px 20px;
    }
  
    .counters_box .counter {
      width: 40%;
      margin: 10px;
      height: 100px;
    }
  
    .counters_box .counter p {
      font-size: 1.3rem;
    }
  
    .counters_box .counter h3 {
      font-size: 1.1rem;
    }
  }
  
  /* Mobiles (≤767px) */
  @media (max-width: 767px) {
    #counters,
    .counters_box {
      height: auto;
      padding: 30px 15px;
      flex-direction: column;
    }
  
    .counters_box .counter {
      width: 90%;
      height: auto;
      padding: 15px 20px;
      margin: 12px auto;
    }
  
    .counters_box .counter p {
      font-size: 1.2rem;
    }
  
    .counters_box .counter p span {
      font-size: 1.5rem;
    }
  
    .counters_box .counter h3 {
      font-size: 1rem;
    }
  }

/*=============================== Footer Section  ================================== */

/*=============================== 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;

}

#course-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8vw 4vw;

}

#course-inner .overview {
    width: 100%;
}

#course-inner .overview .course-img {
    width: 100%;
    height:100%;

}

#course-inner .entroll {
  margin-top: 15px;
}

}

/*-------- Max-Width:980--------- */

@media (max-width:1200px){
    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;
}


/* Footer */

footer .subscribe {
  margin-top: 15px;
  /* padding: 10px 10px; */
 
}

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;
}



/* Course */


#course-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 8vw 4vw;

}

#course-inner .overview {
    width: 100%;
}

#course-inner .overview .course-img {
    width: 100%;
    height:100%;

}

#course-inner .entroll {
  margin-top: 15px;
}

} 

/*-------- Max-Width:1080--------- */

@media (max-width:1200px){
    nav .navigation ul li{
        list-style: none;
        /* margin-left: 15px ; */
    }    
    nav .navigation ul li{
        padding: 15px 0 15px 30px;
        margin-left: 0;
       }

}

/*-------- Max-Width:475px--------- */


@media (max-width:475px){
    #registration {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
   
    #registration .reminder .time {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    foot{
        flex-direction: column;
        text-align: center;
        align-items: center;
      }
      .footer-col{
        width: 100%;
      }
      .copyright{
        width: 100%;
      }
        .counters_box{
            height: auto;
        }
  .course-head .c-name{
    width: 50%;
  }
  .c-name h2 {
  
    font-size: 22px;
}
.course-head span {

    font-size: 22px;
}
#course-inner .entroll {
   width: 100%;
}
}

@media (max-width:407px){
    #footer .subscribe {
        /* margin-top: 15px; */
        display: flex;
        /* padding: 10px; */
     
       
        /* padding: 10px 10px; */
        /* flex-wrap: wrap; */
    }
    #home .btn {
        display: flex;
        /* flex-wrap: wrap; */
    }
}