/*----------- 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: #016B9D;
    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);
}

.m {
    margin: 0;
    text-align: center;

}

/*=============================== Navigation Section  ================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


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(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;

}



/* ========================== Hero section =============================== */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
  }
  
  .about {
    padding: 50px;
    background-color: #f0f0f0;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #bc6c25;
    text-transform: uppercase;
  }
  
  .about-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
  }
  
  .image-gallery {
    display: grid;
    gap: 30px; /* Increased gap between items */
    grid-template-columns: repeat(4, 1fr); /* 4 items per row on large screens */
    transition: all 0.3s ease;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 250px; /* Fixed height for landscape layout */
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits well while maintaining the landscape */
    transition: transform 0.4s ease-in-out;
    border-radius: 15px;
  }
  
  .gallery-item figcaption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    font-size: 1rem;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover figcaption {
    opacity: 1;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Glassy effect */
  .gallery-item {
    background: rgba(255, 255, 255, 0.2); /* Frosted glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* for Safari */
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .image-gallery {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets */
    }
  }
  
  @media (max-width: 768px) {
    .image-gallery {
      grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets */
    }
  }
  
  @media (max-width: 480px) {
    .image-gallery {
      grid-template-columns: 1fr; /* 1 item per row on mobile */
    }
  }
  
  
  
/* =========================== Youtube videos section =====================*/
.video-section {
    background-color: #ffffff;
    padding: 70px 30px;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #003366;
    border-bottom: 2px solid #003366;
    display: inline-block;
    padding-bottom: 6px;
}

.video-intro {
    font-size: 16.5px;
    color: #555;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================ Missions section ============================*/
.mission-section {
    background-color: #ffffff;
    padding: 70px 30px;
    border-top: 1px solid #ddd;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #2a2a2a;
}

.mission-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #003366;
    text-align: center;
    border-bottom: 2px solid #003366;
    display: inline-block;
    padding-bottom: 6px;
}

.mission-container p {
    font-size: 16.5px;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.mission-list li strong {
    color: #002147;
}


/*----------------------------campus gallery section --------------------------*/
.about-gallery-section {
    background-color: #fdfdfd;
    padding: 70px 30px;
    border-top: 1px solid #ddd;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gallery-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #003366;
    border-bottom: 2px solid #003366;
    display: inline-block;
    padding-bottom: 6px;
}

.gallery-description {
    margin-bottom: 30px;
    font-size: 16.5px;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


/*==================================Management section========================*/

.committee-section {
    padding: 60px 20px;
    background: #f0f4f8;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--h6_color);
  }
  
  .committee-grid {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Force 5 cards in one row on large screens */
  @media (min-width: 1200px) {
    .committee-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  
  .committee-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;  /* Ensures all content is centered */
    text-align: center;   /* Ensures text is centered */
  }
  
  
  .committee-card:hover {
    transform: translateY(-8px);
  }
  
  .profile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--h6_color);
    margin-bottom: 20px;
  }
  
  .name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111827;
    display: inline-block;
    max-width: 100%;
    word-break: break-word;    /* Allows break between words if necessary */
    text-align: center;
  }
  @media (max-width: 480px) {
    .name {
      font-size: 1rem;
    }
  }
    
  
  .designation {
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
  
  .message {
    font-size: 0.9rem;
    color: #374151;
    font-style: italic;
    line-height: 1.5;
  }
  

/*==================================== Rulers section ========================== */
.rulers-section {
    padding: 60px 20px;
    background: #f7fafc;
    text-align: center;
  }
  
  .rulers-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--h6_color);
  }
  
  .rulers-grid {
    display: flex;
    flex-wrap: wrap;             /* allow wrapping to second row */
    justify-content: center;     /* center cards in each row */
    gap: 30px;                   /* consistent spacing */
    max-width: 1600px;
    margin: 0 auto;
  }
      
  .rulers-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 0 1 220px;             /* each card is 220px wide, but can shrink */
    max-width: 220px;            /* cap width so exactly 4 fit in a wide container */
    align-items: center;
    text-align: center;
  }
  .rulers-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .rulers-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--h6_color);
    margin-bottom: 16px;
  }
  
  .rulers-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a202c;
    word-break: keep-all;
  }
  
  .rulers-role {
    color: #4c51bf;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.9rem;
  }
  
  .rulers-quote {
    font-size: 0.85rem;
    color: #4a5568;
    font-style: italic;
    line-height: 1.4;
  }
  
  @media (max-width: 480px) {
    .rulers-name {
      font-size: 1rem;
    }
  }
  
    /* On very wide screens, ensure 4 cards fit per row before wrapping */
    @media (min-width: 1000px) {
        .rulers-card {
          flex: 0 1 calc((100% - 3 * 30px) / 4);
          max-width: calc((100% - 3 * 30px) / 4);
        }
      }
      
      /* Mobile-friendly: make cards full width below 480px */
      @media (max-width: 480px) {
        .rulers-card {
          flex: 0 1 100%;
          max-width: 100%;
        }
      }
      
/*===================================Facilities section======================*/
.facilities-section {
    background-color: #f8fafd;
    padding: 70px 30px;
}

.facilities-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.facilities-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #003366;
    border-bottom: 2px solid #003366;
    display: inline-block;
    padding-bottom: 6px;
}

.facilities-intro {
    font-size: 16.5px;
    color: #555;
    margin-bottom: 40px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.facility-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: left;
    max-width: 320px;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.facility-card h3 {
    font-size: 18px;
    color: #002147;
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/*=========================================gallery============================*/
.ga img {


    height: 250px;
    width: 250px;
    clip-path: circle(50%);

}

.ga {
    animation: rotateX 5s linear infinite;
    padding-top: 50px;
    text-align: center;
}

/*===============================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;
    }
  }

/*=============================== About Section2  ================================== */
.about-section {
    background-color: #f4f7fb;
    padding: 70px 30px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #2d2d2d;
    line-height: 1.9;
}

.about-container h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #003366;
    text-align: center;
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
}

.about-container p {
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}

.about-container strong {
    color: #002147;
}

.about-container em {
    font-style: italic;
    color: #555;
}

/*==============================about closing section=================================*/
.about-closing-section {
    background-color: var(--footer);
    color: #fff;
    padding: 70px 30px;
    text-align: center;
}

.closing-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-closing-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.about-closing-section p {
    font-size: 16.5px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #e0e0e0;
}

.about-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffc107;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: #ffb300;
}

/*=============================== Profilo Section  ================================== */


.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;
}

/*=============================== 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: rgb(241, 240, 245);
    font-weight: 600;
    padding-bottom: 20px;

}

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) {
    footer {
      padding: 5vw 3vw;
      flex-direction: column;
      align-items: flex-start;
    }
  
    footer .footer-col {
      width: 100%;
      margin-bottom: 30px;
    }
  
    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 {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }
  
  /* Mobile (≤767px) */
  @media (max-width: 767px) {
    footer {
      padding: 8vw 4vw;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    footer .footer-col {
      width: 100%;
      padding-bottom: 20px;
    }
  
    footer h3 {
      font-size: 1.3rem;
    }
  
    footer li a {
      font-size: 20px;
    }
  
    footer input {
      width: 100%;
      font-size: 14px;
    }
  
    footer .subscribe {
      width: 100%;
      align-items: center;
    }
  
    footer .subscribe a {
      width: 100%;
      text-align: center;
      margin: 10px 0 0 0;
    }
  
    footer .copyright {
      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;

    }

    #about-container {
        padding: 8vw 4vw 2vw 4vw;
    }

    #about-container .about-img img {

        padding-right: 30px;

    }


}

/*-------- 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;
    }


    /* 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;
    }
}

/*-------- 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;
    }

    #registration .reminder .time {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    #footer .subscribe {

        padding: 10px;

        display: flex;
        /* padding: 10px 10px; */
        /* flex-wrap: wrap; */
    }

    .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) {
    #footer .subscribe {
        /* margin-top: 15px; */
        display: flex;
        /* padding: 10px; */


        /* padding: 10px 10px; */
        /* flex-wrap: wrap; */
    }

    #home .btn {
        display: flex;
        /* flex-wrap: wrap; */
    }

    .counters_box {
        height: auto;
    }

    #counters {
        height: auto;

    }
}