/* ========================================== */
/* FILE: css/index.css */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.active {
  color: #b53c40;
}

/* .fa-solid:hover{
  color: #b53c40 !important;
} */

/* *********************** NAV BAR */


.nav-bar-container {
  /* width: auto; */
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  width: 100%;
  /* full width karne ke liye */
  margin: 0;
  /* extra margin remove */
  padding: 0;
  /* extra padding remove */
  left: 0;
  /* left side chipkao */
  right: 0;
  /* right side chipkao */
  background: rgba(255, 255, 255, 0.1);
}

.nav-bar {
  width: 1152px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}

nav .main-nav {
  height: 90px;
  display: flex;
  gap: 30px;
}

.logo {
  height: 90px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

.main-nav li:last-child:hover {
  background-color: rgba(111, 111, 112, 0.212);
}

nav a {
  height: 100%;
  /* padding: 0 30px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: black; */
  color: #003366;
  font-size: 20px;
}

nav a:hover {
  color: #b53c40;
}

nav li:first-child {
  margin-right: auto;
}

/* *************** SIDE BAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  transition: right 1s ease;
  z-index: 999;
  /* backdrop-filter: blur(10px); */
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  border-radius: 12px;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

/* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

.menu-btn {
  display: none;
}

/*************** NAV Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  color: #003366;
  font-size: 20px;
  padding: 2px 0px;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-btn:hover {
  color: #b53c40;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfbfb;
  min-width: 200px;
  z-index: 1;
  margin: 0px 10px 0px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
  color: #003366;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Show main dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.nav-bars-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar content */
.sidebar-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.sidebar-btn {
  display: block;
  width: 200px;
  padding: 10px;
  margin: 20px 0;
  background-color: #f0ecec60;
  color: #003366;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.sidebar-btn:hover {
  background-color: #fafafa;
}


/* TOP VIDEO SECTION */
.top-video {
  position: relative;
  width: 100%;
  height: 70vh;
  /* adjust height if needed */
  overflow: hidden;
}

.top-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark transparent overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.video-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.video-overlay a {
  font-size: 18px;
  color: white;
  background-color: #b53c40;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.video-overlay a:hover {
  background-color: #922c2f;
  transition: all 0.3s ease-in-out;

}


/*<!-- ********************* HERO SECTION ***************************** -->*/

/* HERO SECTION */
.hero-section-container {
  background-color: #003366;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* margin-top: 60px; */
}

.hero-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 20px;
  box-sizing: border-box;
  gap: 40px;
}

.hero-text {
  flex: 1 1 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-section h1 {
  font-size: 40px;
  color: white;
  line-height: 1.1;
  margin: 0;
}

.hero-section h1 span {
  color: #b53c40;
}

.hero-section h3 {
  /* font-size: 1.8rem; */
  color: white;
  font-weight: normal;
  margin: 0;
}

.hero-section h3 span {
  color: #b53c40;
  font-weight: bold;
  text-align: justify;

}

.hero-section p {
  /* font-size: 1.2rem;  */
  color: white;
  font-weight: normal;
  text-align: justify;
  margin: 0;
}

.hero-btn {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.hero-btn a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  background-color: #b53c40;
  border-radius: 12px;
  text-align: center;
  transition: background 0.3s;
}

.hero-btn a:hover {
  background-color: #922c2f;
}

.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-image img {
    max-width: 350px;
  }
}

@media (max-width: 600px) {
  /* .hero-section h1 {
    font-size: 2.5rem;
  } */

  /* .hero-section h2 {
    font-size: 1.4rem;
  } */

  /* .hero-section h4 {
    font-size: 1rem;
  } */

  .hero-btn {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn a {
    width: 100%;
  }
}



/*<!-- ********************* Mission & Vision SECTION***************************** -->*/


.discription {
  width: 1440px;
  margin: 0 auto;
  padding-top: 50px;
  /*padding-bottom: 100px;*/

  display: flex;
  flex-direction: column;
  /*gap: 40px;*/
}

.discription span {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
}

.discription h1 {
  width: 1146px;
  margin: 0 auto;
  font-size: 28px;
  color: #003366;
}

.discription h3 {
  width: 1146px;
  margin: 0 auto;
  /*font-size: 28px;*/
  /*color: #003366;*/
}

.discription p {
  width: 1146px;
  margin: 0 auto;
  /*font-size: 24px;*/
  /*color: #003366;*/
  /* letter-spacing: 1px; */
  text-align: justify;
  padding-bottom: 20px;

}






/* OUR FACULTY */

/* ============  Faculty Profile  Start ============== */

.faculty-section {
  padding: 60px 20px;
  /* background: linear-gradient(135deg, #22293C 100%, #D8702B); */
  color: #fff;
  text-align: center;
}

.faculty-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #003366;
}

.faculty-slider {
  max-width: 1100px;
  margin: auto;
}

.swiper-slide {
  height: 100%;
}

.faculty-card {
  display: flex;

  /* flex-direction: column; */
  .page-ourteam .faculty-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    background: #003366;
    color: #003366;
    color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .faculty-left {
    flex: 1;
    min-width: 280px;
    /* background: #f3f3f3; */
    padding: 10px;
    text-align: center;
  }

  .faculty-left img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #b53c40;
    /* margin-bottom: 15px; */
  }

  .faculty-left h3 {
    /* margin: 10px 0 5px; */
    font-size: 1.5rem;
    color: #ffffff;
  }

  .faculty-left p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
  }

  .faculty-right {
    flex: 2;
    min-width: 280px;
    padding: 20px;
    text-align: left;
  }

  .faculty-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: #fff;
    text-align: justify;
  }

  /* Swiper custom navigation */
  .faculty-section .swiper-button-next,
  .faculty-section .swiper-button-prev {
    color: #fff;
    width: 32px;
    height: 32px;
    background: rgba(181, 60, 64, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.9;
    top: 50%;
    transform: translateY(-50%);
  }

  .faculty-section .swiper-button-next:hover,
  .faculty-section .swiper-button-prev:hover {
    background: rgba(181, 60, 64, 0.95);
    opacity: 1;
  }

  .faculty-section .swiper-button-next:after,
  .faculty-section .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
  }

  /* Fixed pagination positioning */
  .faculty-section .swiper-pagination {
    position: absolute;
    bottom: 15px !important;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .faculty-section .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
  }

  .faculty-section .swiper-pagination-bullet-active {
    background: #b53c40;
    opacity: 1;
  }

  /* ============  Faculty Profile  End ============== */











  /*<!-- ********************* IMG SECTION***************************** -->*/

  .img {
    width: 1440px;
    margin: 0 auto;
    display: flex;
  }

  .img img {
    width: 1171px;
    margin: 0 auto;
  }


  /* <!--**************************** FOOTER SEction**********************************  --> */

  .size-5 {
    width: 24px;
    height: 24px;
  }

  footer {
    background-color: #003366;
  }

  .data {
    width: 1156px;
    height: 336px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
  }

  footer .data .row-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row-1 label {
    width: 199px;
    height: 24px;
    color: White;
    font-size: 18px;
    font-weight: bold;
  }

  footer .data .row-1 p {
    width: 261px;
    height: 138px;
    font-size: 16px;
    line-height: 1.3;
    color: white;
  }

  footer .data .row-1 .social-icons {
    display: flex;
    gap: 10px;
    /* justify-content: space-around; */
  }

  footer .data .row-1 .social-icons .f-icon {
    width: 24px;
    height: 24px;
    padding: 12px;
    color: white;
    background-color: #b53c40;
    cursor: pointer;
    border-radius: 22.5px;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    -ms-border-radius: 22.5px;
    -o-border-radius: 22.5px;
  }

  footer .data .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row h2 {
    font-size: 18px;
    color: white;
  }

  footer .data .row li {
    list-style: none;
  }

  footer .data .row li a {
    list-style: none;
    text-decoration: none;
    color: white;
    font-size: 15px;
  }

  .bottom-footer {
    text-align: center;
    padding: 10px 0;
    /* background-color: #002244; */
    color: white;
    font-size: 14px;
  }

  .bottom-footer p {
    margin: 0;
    font-size: 16px;
  }

  /* **************************** RESPONSIVE */

  @media (max-width: 2560px) {
    .hero-section-container {
      min-height: 60vh;
    }
  }


  @media (max-width: 1440px) {

    /* Nav Bar */
    .nav-bar-container {
      width: auto;
      margin: 0 auto;
    }

    nav a {
      font-size: 20px;
    }

    .dropdown-btn {
      font-size: 20px;
    }

    /* Welcome */

    .welcome {
      width: 1200px;
      margin: 0 auto;
    }

    .welcome img {
      width: 850px;
      height: 350px;
      margin-left: 90px;
      /* position: relative; */
      /* left: 190px; */
    }

    /* Discription */
    .discription {
      width: 1200px;
      /*height: 1200px;*/
      margin-top: 0px;
    }

    /* Img Section */

    .img {
      width: 1200px;
    }

    .img img {
      width: 1000px;
    }

    /* FOoter */
    footer .data {
      width: 1100px;
    }
  }

  @media (max-width: 1200px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 992px;
  height: 110px;
  margin: 0 auto; */
      max-width: 1200px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: auto;
    }

    nav a {
      font-size: 16px;
    }

    .dropdown-btn {
      font-size: 16px;
    }

    /* Discription */

    .discription {
      width: 992px;
      /*height: 1100px;*/
      margin: 0 auto;
      /*padding-top: 100px;*/
    }

    .discription h1 {
      width: 980px;
      /*font-size: px;*/
    }

    .discription h3 {
      width: 980px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 980px;
    }



    /* IMG Section */

    .img {
      width: 992px;
    }

    .img img {
      width: 800px;
    }


    /* FOoter */
    footer .data {
      width: 892px;
    }
  }

  /* MEDIA QUERIES */
  @media (max-width: 1024px) {
    .hero-section h1 {
      font-size: 2.8rem;
    }

    .hero-section h2 {
      font-size: 1.5rem;
    }

    .hero-section h4 {
      font-size: 1rem;
    }
  }

  @media (max-width: 992px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 700px;
    margin: 0 auto; */
      max-width: 992px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 700px;
      margin: 0 auto;
    }

    .hideonMobile {
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bars-icon {
      display: none;
    }

    .dropdown {
      display: none;
      /* margin-right: 300px; */
    }

    .dropdown-btn {
      padding-left: 0px;
    }

    .side {
      display: block;
    }



    .join {
      width: 600px;
      margin: 0 auto;
      height: 200px;
      background-position: 100%;
      background-size: cover;
    }

    /* Discription */

    .discription {
      width: 730px;
      /*height: 1200px;*/
      margin: 0 auto;
      padding-top: 100px;
    }

    .discription h1 {
      width: 730px;
      /*font-size: 34px;*/
    }

    .discription h3 {
      width: 730px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 730px;
    }


    /* IMG */

    .img {
      width: 768px;
    }

    .img img {
      width: 660px;
    }

    /* STORIES */
    .stories {
      width: 768px;
    }

    .stories h1 {
      font-size: 52px;
    }

    .stories .stories-data {
      width: 768px;
      margin: 0 auto;
    }

    .stories .imgs .one {
      width: 200px;
      height: 160px;
    }

    .stories .imgs .two {
      width: 300px;
      height: 260px;
    }

    .stories .imgs .three {
      width: 200px;
      height: 160px;
    }

    /* FOoter */
    footer .data {
      width: 700px;
      height: auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      row-gap: 40px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 768px) {

    /* Nav Bar */
    .nav-bar-container {
      max-width: 768px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .sidebar {
      width: 100%;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }


    .nav-bar {
      width: 468px;
      margin: 0 auto;
    }

    .dropdown {
      margin-right: 150px;
    }

    /* Hero */

    .hero-section-container {
      background-color: #003366;
      min-height: 0vh;
      display: flex;
      align-items: center;
    }

    .hero-section h1 {
      font-size: 2.2rem;
    }

    .hero-section h2 {
      font-size: 1.2rem;
    }

    .hero-section h4 {
      font-size: 0.95rem;
    }

    .hero-btn {
      flex-direction: row;
      /* align-items: flex-start; */
    }

    .hero-btn a {
      width: 100%;
      text-align: center;
    }

    /* Discription */

    .discription {
      width: 468px;
      /*height: 1600px;*/
      margin: 0 auto;
      padding-top: 40px;
    }

    .discription h1 {
      width: 430px;
      /*font-size: 28px;*/
    }

    .discription h3 {
      width: 430px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 430px;
    }


    /* IMG */

    .img {
      width: 468px;
    }

    .img img {
      width: 400px;
    }




    /* FOoter */
    footer .data {
      width: 468px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
      padding-left: 10px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 468px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 320px;
    margin: 0 auto; */
      max-width: 468px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 320px;
      margin: 0 auto;
      /* gap: 40px; */
    }

    nav .main-nav {
      gap: 0px;
    }

    .dropdown {
      margin-right: 50px;
    }

    .dropdown-content {
      min-width: 100px;
    }

    .dropdown-content a {
      font-size: 12px;
    }

    .sub-dropdown-content {
      min-width: 100px;
    }

    /* HERO SECTION */

    .hero-section {
      padding: 20px 15px;
    }

    .hero-section h1 {
      font-size: 1.8rem;
    }

    .hero-section h2 {
      font-size: 1rem;
    }

    .hero-section h4 {
      font-size: 0.9rem;
    }

    .hero-btn {
      flex-direction: row;
      align-items: stretch;
    }

    .hero-btn a {
      width: 100%;
      padding: 8px 8px;
    }

    /* Discription */

    .discription {
      width: 345px;
      /*height: 1200px;*/
      margin: 0 auto;
      padding-top: 30px;
      overflow: hidden;
      /*gap: 10px;*/
      /* padding-bottom: 100px; */
    }

    .discription h1 {
      width: 300px;
      /*font-size: 28px;*/
    }

    .discription h3 {
      width: 300px;
    }

    .discription p {
      /*font-size: 16px;*/
      /*color: #003366;*/
      width: 300px;
    }




    /* FACULTY SECTION */

    .faculty-section .swiper-button-next,
    .faculty-section .swiper-button-prev {
      display: none;
    }


    .faculty-section .swiper-button-next:after,
    .faculty-section .swiper-button-prev:after {
      display: none;
      font-size: 14px;
      font-weight: bold;
      color: #fff;
    }







    .single-img img {
      width: 300px;
    }

    /* IMG */

    .img {
      width: 335px;
    }

    .img img {
      width: 320px;
    }





    /* FOoter */
    footer .data {
      width: 330px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 20px;
      padding-left: 10px;
      padding-bottom: 40px;
      padding-top: 20px;
      /* justify-content: space-between; */
    }


    footer .data .row-1 p {
      height: 60px;
    }

  }

  /* ========================================== */
  /* FILE: css/about.css */
  /* ========================================== */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  /* *********************** NAV BAR */
  .active {
    color: #b53c40;
  }

  .nav-bar-container {
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    width: 100%;
    /* full width karne ke liye */
    margin: 0;
    /* extra margin remove */
    padding: 0;
    /* extra padding remove */
    left: 0;
    /* left side chipkao */
    right: 0;
    /* right side chipkao */
    background: #fff;
    /* background dena zaroori hai */
  }

  .nav-bar {
    width: 1152px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 80px;
  }

  nav .main-nav {
    height: 90px;
    display: flex;
    gap: 30px;
  }

  .logo {
    height: 90px;
  }

  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  nav li {
    height: 50px;
  }

  .main-nav li:last-child:hover {
    background-color: rgba(111, 111, 112, 0.212);
  }

  nav a {
    height: 100%;
    /* padding: 0 30px; */
    text-decoration: none;
    display: flex;
    align-items: center;
    /* color: black; */
    color: #003366;
    font-size: 20px;
  }

  nav a:hover {
    color: #b53c40;
  }

  nav li:first-child {
    margin-right: auto;
  }

  /* *************** SIDE BAR */
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    transition: right 1s ease;
    z-index: 999;
    /* backdrop-filter: blur(10px); */
    background-color: rgb(255, 255, 255);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  .sidebar li {
    width: 100%;
  }

  .sidebar a {
    width: 100%;
  }

  /* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

  .menu-btn {
    display: none;
  }

  /*************** NAV Dropdown */

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-btn {
    color: #003366;
    font-size: 20px;
    padding: 2px 0px;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .dropdown-btn:hover {
    color: #b53c40;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfbfb;
    min-width: 200px;
    z-index: 1;
    margin: 0px 10px 0px 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

  }

  .dropdown-content a {
    color: #003366;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
  }

  /* Show main dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Sub-dropdown setup */
  .sub-dropdown {
    position: relative;
  }

  .sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fcfbfb;
    min-width: 180px;
    text-align: left;
    border-radius: 10px;
  }

  /* Show sub-dropdown on hover */
  .sub-dropdown:hover .sub-dropdown-content {
    display: block;
  }

  /* ********************** SIDE NAV BAR LOGIN Portal */

  /* Sidebar container */
  .off-canvas-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /*Hideinitially*/
    width: 300px;
    height: 35vh;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 1s ease;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  /* Show sidebar when active */
  .off-canvas-sidebar.active {
    right: 0;
  }

  .nav-bars-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Sidebar content */
  .sidebar-content {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

  .sidebar-btn {
    display: block;
    width: 200px;
    padding: 10px;
    margin: 20px 0;
    background-color: #f0ecec60;
    color: #003366;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .sidebar-btn:hover {
    background-color: #fafafa;
    right: 0;
    height: 100vh;
    width: 300px;
    transition: right 1s ease;
    z-index: 999;
    /* backdrop-filter: blur(10px); */
    background-color: rgb(255, 255, 255);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  .sidebar li {
    width: 100%;
  }

  .sidebar a {
    width: 100%;
  }

  /* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

  .menu-btn {
    display: none;
  }

  /*************** NAV Dropdown */

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-btn {
    color: #003366;
    font-size: 20px;
    padding: 2px 0px;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .dropdown-btn:hover {
    color: #b53c40;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfbfb;
    min-width: 200px;
    z-index: 1;
    margin: 0px 10px 0px 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

  }

  .dropdown-content a {
    color: #003366;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
  }

  /* Show main dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Sub-dropdown setup */
  .sub-dropdown {
    position: relative;
  }

  .sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fcfbfb;
    min-width: 180px;
    text-align: left;
    border-radius: 10px;
  }

  /* Show sub-dropdown on hover */
  .sub-dropdown:hover .sub-dropdown-content {
    display: block;
  }

  /* ********************** SIDE NAV BAR LOGIN Portal */

  /* Sidebar container */
  .off-canvas-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /*Hideinitially*/
    width: 300px;
    height: 35vh;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 1s ease;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  /* Show sidebar when active */
  .off-canvas-sidebar.active {
    right: 0;
  }

  .nav-bars-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Sidebar content */
  .sidebar-content {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

  .sidebar-btn {
    display: block;
    width: 200px;
    padding: 10px;
    margin: 20px 0;
    background-color: #f0ecec60;
    color: #003366;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .sidebar-btn:hover {
    background-color: #fafafa;
  }

  /*<!-- ********************* HERO SECTION***************************** -->*/

  .page-about .hero {
    height: 70vh;
    /* background-color: #003366; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("../assets/img/about.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
    color: white;
  }

  .hero p {
    font-size: 24px;
    color: white;
  }


  /*<!-- ********************* Discription SECTION***************************** -->*/

  .discription {
    width: 1440px;
    margin: 0 auto;
    padding-top: 50px;
    /*padding-bottom: 100px;*/

    display: flex;
    flex-direction: column;
    /*gap: 40px;*/
  }

  .discription h1 {
    width: 1146px;
    margin: 0 auto;
    font-size: 28px;
    color: #003366;
  }

  .discription h3 {
    width: 1146px;
    margin: 0 auto;
    /*font-size: 28px;*/
    /*color: #003366;*/
  }

  .discription p {
    width: 1146px;
    margin: 0 auto;
    /*font-size: 24px;*/
    /*color: #003366;*/
    /* letter-spacing: 1px; */
    text-align: justify;
    padding-bottom: 20px;
  }


  /*<!-- ********************* IMG SECTION***************************** -->*/

  .img {
    width: 1440px;
    margin: 0 auto;
    display: flex;
  }

  .img img {
    width: 1171px;
    margin: 0 auto;
  }



  /* <!--**************************** FOOTER SEction**********************************  --> */

  .size-5 {
    width: 24px;
    height: 24px;
  }

  footer {
    background-color: #003366;
  }

  .data {
    width: 1156px;
    height: 336px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
  }

  footer .data .row-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row-1 label {
    width: 199px;
    height: 24px;
    color: White;
    font-size: 18px;
    font-weight: bold;
  }

  footer .data .row-1 p {
    width: 261px;
    height: 138px;
    font-size: 16px;
    line-height: 1.3;
    color: white;
  }

  footer .data .row-1 .social-icons {
    display: flex;
    gap: 10px;
    /* justify-content: space-around; */
  }

  footer .data .row-1 .social-icons .f-icon {
    width: 24px;
    height: 24px;
    padding: 12px;
    color: white;
    background-color: #b53c40;
    cursor: pointer;
    border-radius: 22.5px;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    -ms-border-radius: 22.5px;
    -o-border-radius: 22.5px;
  }

  footer .data .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row h2 {
    font-size: 18px;
    color: white;
  }

  footer .data .row li {
    list-style: none;
  }

  footer .data .row li a {
    list-style: none;
    text-decoration: none;
    color: white;
    font-size: 15px;
  }

  .bottom-footer {
    text-align: center;
    padding: 10px 0;
    /* background-color: #002244; */
    color: white;
    font-size: 14px;
  }

  .bottom-footer p {
    margin: 0;
    font-size: 16px;
  }

  /* **************************** RESPONSIVE */

  @media (max-width: 1440px) {

    /* Nav Bar */
    .nav-bar-container {
      width: auto;
      margin: 0 auto;
    }

    nav a {
      font-size: 20px;
    }

    .dropdown-btn {
      font-size: 20px;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }

    /* Discription */
    .discription {
      width: 1200px;
      /*height: 1200px;*/
      margin-top: 0px;
    }

    /* IMG Section */

    .img {
      width: 1200px;
    }

    .img img {
      width: 1000px;
    }


    /* FOoter */
    footer .data {
      width: 1100px;
    }
  }

  @media (max-width: 1200px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 992px;
  height: 110px;
  margin: 0 auto; */
      max-width: 1200px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: auto;
    }

    nav a {
      font-size: 16px;
    }

    .dropdown-btn {
      font-size: 16px;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }


    /* Discription */

    .discription {
      width: 992px;
      /*height: 1100px;*/
      margin: 0 auto;
      /*padding-top: 100px;*/
    }

    .discription h1 {
      width: 980px;
      /*font-size: px;*/
    }

    .discription h3 {
      width: 980px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 980px;
    }


    /* IMG SECTiON */
    .img {
      width: 992px;
    }

    .img img {
      width: 800px;
    }


    /* FOoter */
    footer .data {
      width: 892px;
    }
  }

  @media (max-width: 992px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 700px;
    margin: 0 auto; */
      max-width: 992px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 700px;
      margin: 0 auto;
    }

    .hideonMobile {
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bars-icon {
      display: none;
    }

    .dropdown {
      display: none;
      /* margin-right: 300px; */
    }

    .dropdown-btn {
      padding-left: 0px;
    }

    .side {
      display: block;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }

    .hero h1 {
      font-size: 40px;
    }

    .hero p {
      font-size: 20px;
    }

    /* Discription */

    .discription {
      width: 730px;
      /*height: 1200px;*/
      margin: 0 auto;
      padding-top: 100px;
    }

    .discription h1 {
      width: 730px;
      /*font-size: 34px;*/
    }

    .discription h3 {
      width: 730px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 730px;
    }

    /* IMG */

    .img {
      width: 768px;
    }

    .img img {
      width: 660px;
    }

    /* FOoter */
    footer .data {
      width: 700px;
      height: auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      row-gap: 40px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 768px) {

    /* Nav Bar */
    .nav-bar-container {
      max-width: 768px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .sidebar {
      width: 100%;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bar {
      width: 468px;
      margin: 0 auto;
    }

    .dropdown {
      margin-right: 150px;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }


    /* Discription */

    .discription {
      width: 468px;
      /*height: 1600px;*/
      margin: 0 auto;
      padding-top: 40px;
    }

    .discription h1 {
      width: 430px;
      /*font-size: 28px;*/
    }

    .discription h3 {
      width: 430px;
    }

    .discription p {
      /*font-size: 20px;*/
      /*color: #003366;*/
      width: 430px;
    }

    /* IMG */

    .img {
      width: 468px;
    }

    .img img {
      width: 400px;
    }

    /* FOoter */
    footer .data {
      width: 468px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
      padding-left: 10px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 468px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 320px;
    margin: 0 auto; */
      max-width: 468px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 320px;
      margin: 0 auto;
      /* gap: 40px; */
    }

    nav .main-nav {
      gap: 0px;
    }

    .dropdown {
      margin-right: 50px;
    }

    .dropdown-content {
      min-width: 100px;
    }

    .dropdown-content a {
      font-size: 12px;
    }

    .sub-dropdown-content {
      min-width: 100px;
    }

    /* HERO */
    .hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }

    .hero h1 {
      font-size: 40px;
      width: auto;
      text-align: center;
    }

    .hero p {
      font-size: 15px;
      width: auto;
      text-align: center;
    }

    /* Discription */

    .discription {
      width: 345px;
      /*height: 1200px;*/
      margin: 0 auto;
      padding-top: 30px;
      overflow: hidden;
      /*gap: 10px;*/
      /* padding-bottom: 100px; */
    }

    .discription h1 {
      width: 300px;
      /*font-size: 28px;*/
    }

    .discription h3 {
      width: 300px;
    }

    .discription p {
      /*font-size: 16px;*/
      /*color: #003366;*/
      width: 300px;
    }

    /* IMG */

    .img {
      width: 335px;
    }

    .img img {
      width: 320px;
    }

    /* FOOTER */
    footer .data {
      width: 330px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 20px;
      padding-left: 10px;
      padding-bottom: 40px;
      padding-top: 20px;
      /* justify-content: space-between; */
    }

    footer .data .row-1 p {
      height: 60px;
    }

  }


  /* ========================================== */
  /* FILE: css/home.css */
  /* ========================================== */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }

  /* *********************** NAV BAR */

  .active {
    color: #b53c40;
  }

  .nav-bar-container {
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    width: 100%;
    /* full width karne ke liye */
    margin: 0;
    /* extra margin remove */
    padding: 0;
    /* extra padding remove */
    left: 0;
    /* left side chipkao */
    right: 0;
    /* right side chipkao */
    background: #fff;
    /* background dena zaroori hai */
  }

  .nav-bar {
    width: 1152px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 40px;
  }

  nav .main-nav {
    height: 90px;
    display: flex;
    gap: 30px;
  }

  .logo {
    height: 90px;
  }

  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  nav li {
    height: 50px;
  }

  .main-nav li:last-child:hover {
    background-color: rgba(111, 111, 112, 0.212);
  }

  nav a {
    height: 100%;
    /* padding: 0 30px; */
    text-decoration: none;
    display: flex;
    align-items: center;
    /* color: black; */
    color: #003366;
    font-size: 20px;
  }

  nav a:hover {
    color: #b53c40;
  }

  nav li:first-child {
    margin-right: auto;
  }

  /* *************** SIDE BAR */
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    transition: right 1s ease;
    z-index: 999;
    /* backdrop-filter: blur(10px); */
    background-color: rgb(255, 255, 255);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  .sidebar li {
    width: 100%;
  }

  .sidebar a {
    width: 100%;
  }

  /* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

  .menu-btn {
    display: none;
  }

  /*************** NAV Dropdown */

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-btn {
    color: #003366;
    font-size: 20px;
    padding: 2px 0px;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .dropdown-btn:hover {
    color: #b53c40;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfbfb;
    min-width: 200px;
    z-index: 1;
    margin: 0px 10px 0px 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
  }

  .dropdown-content a {
    color: #003366;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
  }

  /* Show main dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Sub-dropdown setup */
  .sub-dropdown {
    position: relative;
  }

  .sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fcfbfb;
    min-width: 180px;
    text-align: left;
    border-radius: 10px;
  }

  /* Show sub-dropdown on hover */
  .sub-dropdown:hover .sub-dropdown-content {
    display: block;
  }

  /* ********************** SIDE NAV BAR LOGIN Portal */

  /* Sidebar container */
  .off-canvas-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /*Hideinitially*/
    width: 300px;
    height: 35vh;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 1s ease;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  /* Show sidebar when active */
  .off-canvas-sidebar.active {
    right: 0;
  }

  .nav-bars-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Sidebar content */
  .sidebar-content {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

  .sidebar-btn {
    display: block;
    width: 200px;
    padding: 10px;
    margin: 20px 0;
    background-color: #f0ecec60;
    color: #003366;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .sidebar-btn:hover {
    background-color: #fafafa;
  }

  /*<!-- ********************* HERO SECTION***************************** -->*/
  .page-home .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    /* flex on parent */
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* Background */
  .page-home .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("../assets/img/vitaly-gariev-y4h0lH6QxhY-unsplash.jpg") center/cover no-repeat;
    z-index: -1;
    background-size: 100% 100vh;
  }

  .hero-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  /* Heading */
  .hero h1 {
    font-family: "Montserrat", "Open Sans", Arial, sans-serif;
    font-size: 40px;
    color: white;
    line-height: 1.2;
  }

  /* Button */
  .hero a {
    display: inline-block;
    font-size: 18px;
    color: white;
    background-color: #b53c40;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    transition: 0.3s ease;
  }

  .hero a:hover {
    background-color: #962f33;
  }


  /*<!-- ********************* APPLY SECTION***************************** -->*/

  .container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #dde5ed;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .container h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #003366;
  }

  .container p {
    text-align: center;
    margin-bottom: 60px;
    color: #003366c2;
    font-size: 20px;
  }

  .container form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .form-group {
    width: 48%;
  }

  .form-group.full {
    width: 100%;
  }

  label {
    display: block;
    margin-bottom: 5px;
    color: #003366;
    font-size: 20px;
  }

  input,
  select,
  textarea {
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 12px;
    /*background-color: #DDE5ED;
      */
    background-color: whitesmoke;
    outline: none;
    font-size: 20px;
    color: #0033668a;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }

  .custom-dropdown {
    position: relative;
    width: 100%;
    max-width: 500px;
    /* apni requirement ke hisaab se */
  }

  .custom-dropdown .selected {
    height: 50px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    color: #0033668a;
  }


  .custom-dropdown .options {
    display: none;
    /* by default hidden */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    color: #0033668a;
    border: 1px solid #ccc;
    max-height: 150px;
    /* vertical scroll */
    max-width: 100%;
    overflow-x: scroll;
    /* hamesha horizontal scroll */
    overflow-y: scroll;
    /* hamesha vertical scroll */
    white-space: nowrap;
    /* text ek line me */
    border-radius: 12px;
    font-size: 20px;
    z-index: 10;
  }

  .custom-dropdown .options li {
    padding: 10px;
    cursor: pointer;
  }

  .custom-dropdown .options li:hover {
    background: #f0f0f0;
  }

  textarea {
    resize: vertical;
  }

  .checkbox-container {
    display: flex;
    align-items: center;

    gap: 10px;
    margin-top: 5px;
    white-space: nowrap;
    text-align: justify;
    /* overflow-x: auto;  */
  }

  .checkbox-container input {
    margin-top: 3px;
    width: auto;
  }

  .checkbox-container span {
    color: #003366;
  }

  button {
    width: 100%;
    padding: 14px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }

  button:hover {
    background-color: #005fa3;
  }

  /* <!--**************************** FOOTER SEction**********************************  --> */

  .size-5 {
    width: 24px;
    height: 24px;
  }

  footer {
    background-color: #003366;
  }

  footer .data {
    width: 1156px;
    height: 336px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
  }

  footer .data .row-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row-1 label {
    width: 199px;
    height: 24px;
    color: White;
    font-size: 18px;
    font-weight: bold;
  }

  footer .data .row-1 p {
    width: 261px;
    height: 138px;
    font-size: 16px;
    line-height: 1.3;
    color: white;
  }

  footer .data .row-1 .social-icons {
    display: flex;
    gap: 10px;
    /* justify-content: space-between; */
  }

  footer .data .row-1 .social-icons .f-icon {
    width: 24px;
    height: 24px;
    padding: 12px;
    color: white;
    background-color: #b53c40;
    cursor: pointer;
    border-radius: 22.5px;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    -ms-border-radius: 22.5px;
    -o-border-radius: 22.5px;
  }

  footer .data .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row h2 {
    font-size: 18px;
    color: white;
  }

  footer .data .row li {
    list-style: none;
  }

  footer .data .row li a {
    list-style: none;
    text-decoration: none;
    color: white;
    font-size: 15px;
  }

  .bottom-footer {
    text-align: center;
    padding: 10px 0;
    /* background-color: #002244; */
    color: white;
    font-size: 14px;
  }

  .bottom-footer p {
    margin: 0;
    font-size: 16px;
  }

  /* *************************** Responsive ********************************** */

  @media (max-width: 1440px) {

    /* Nav Bar */
    .nav-bar-container {
      width: auto;
      margin: 0 auto;
    }

    nav a {
      font-size: 20px;
    }

    .dropdown-btn {
      font-size: 20px;
    }

    /* Apply Section */

    /* FOoter */
    footer .data {
      width: 1100px;
    }
  }

  @media (max-width: 1200px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 992px;
  height: 110px;
  margin: 0 auto; */
      max-width: 1200px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: auto;
    }

    nav a {
      font-size: 16px;
    }

    .dropdown-btn {
      font-size: 16px;
    }

    /* Apply Section */

    .container {
      max-width: 962px;
    }

    .custom-dropdown {
      width: 100%;
      max-width: 430px;
      /* apni requirement ke hisaab se */
    }

    /* FOoter */
    footer .data {
      width: 892px;
    }
  }

  @media (max-width: 992px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 700px;
    margin: 0 auto; */
      max-width: 992px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 700px;
      margin: 0 auto;
    }

    .hideonMobile {
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bars-icon {
      display: none;
    }

    .dropdown {
      display: none;
      /* margin-right: 300px; */
    }

    .dropdown-btn {
      padding-left: 0px;
    }

    .side {
      display: block;
    }

    /* Hero */

    .hero {
      height: 70vh;
    }

    .hero h1 {
      font-size: 42px;
    }

    .hero a {
      font-size: 18px;
      padding: 12px 24px;
    }

    /* Apply Section */

    .container {
      max-width: 762px;
    }

    .custom-dropdown {
      width: 100%;
      max-width: 335px;
      /* apni requirement ke hisaab se */
    }

    .custom-dropdown .selected {
      height: auto;
    }

    .checkbox-container span {
      font-size: 14px;
    }

    /* FOoter */
    footer .data {
      width: 700px;
      height: auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      row-gap: 40px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 768px) {

    /* Nav Bar */
    .nav-bar-container {
      max-width: 768px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .sidebar {
      width: 100%;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bar {
      width: 468px;
      margin: 0 auto;
    }

    .dropdown {
      margin-right: 150px;
    }

    /* Hero */

    .hero {
      height: 70vh;
    }

    .hero h1 {
      font-size: 32px;
    }

    .hero a {
      font-size: 16px;
      padding: 10px 20px;
    }

    /* Apply */
    .container {
      margin-left: 20px;
      margin-right: 20px;
    }

    .form-group {
      width: 100%;
    }

    .custom-dropdown {
      width: 100%;
      max-width: 700px;
      /* apni requirement ke hisaab se */
    }

    .custom-dropdown .selected {
      height: auto;
    }

    .checkbox-container span {
      /* font-size: 12px; */
      white-space: wrap;
    }

    /* FOoter */
    footer .data {
      width: 468px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
      padding-left: 10px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }
  }

  @media (max-width: 468px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 320px;
    margin: 0 auto; */
      max-width: 468px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 320px;
      margin: 0 auto;
      /* gap: 40px; */
    }

    nav .main-nav {
      gap: 0px;
    }

    .dropdown {
      margin-right: 50px;
    }

    .dropdown-content {
      min-width: 100px;
    }

    .dropdown-content a {
      font-size: 12px;
    }

    .sub-dropdown-content {
      min-width: 100px;
    }

    /* HERO */
    .hero {
      height: 70vh;
    }

    .hero h1 {
      font-size: 24px;
    }

    .hero a {
      font-size: 14px;
      padding: 8px 16px;
    }

    /* APPLY */

    .apply-section {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .container {
      max-width: 340px;
      margin: auto;
      padding: 20px;
      margin-top: 80px;
      margin-bottom: 80px;
      margin-left: 10px;
      margin-right: 10px;
    }

    .container h1 {
      text-align: center;
      font-size: 24px;
    }

    .container p {
      text-align: center;
      font-size: 14px;
    }

    .form-group {
      width: 100%;
    }

    input,
    select,
    textarea {
      height: 40px;
      font-size: 14px;
    }

    button {
      padding: 10px;
      font-size: 14px;
    }



    .custom-dropdown {
      width: 100%;
      max-width: 300px;
      /* apni requirement ke hisaab se */
    }

    .custom-dropdown .selected {
      height: auto;
    }

    .custom-dropdown .options {
      font-size: 14px;
    }

    /* FOoter */
    footer .data {
      width: 330px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 20px;
      padding-left: 10px;
      padding-bottom: 40px;
      padding-top: 20px;
      /* justify-content: space-between; */
    }

    footer .data .row-1 p {
      height: 60px;
    }

  }








  /* ========================================== */
  /* FILE: css/contact.css */
  /* ========================================== */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }


  /* *********************** NAV BAR */
  .active {
    color: #b53c40;
  }


  .nav-bar-container {
    /* position: sticky; */
    top: 0;
    z-index: 1000;
    width: 100%;
    /* full width karne ke liye */
    margin: 0;
    /* extra margin remove */
    padding: 0;
    /* extra padding remove */
    left: 0;
    /* left side chipkao */
    right: 0;
    /* right side chipkao */
    background: #fff;
    /* background dena zaroori hai */
  }

  .nav-bar {
    width: 1152px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 80px;
  }


  nav .main-nav {
    height: 90px;
    display: flex;
    gap: 30px;
  }

  .logo {
    height: 90px;
  }

  nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  nav li {
    height: 50px;

  }

  .main-nav li:last-child:hover {
    background-color: rgba(111, 111, 112, 0.212);
  }

  nav a {
    height: 100%;
    /* padding: 0 30px; */
    text-decoration: none;
    display: flex;
    align-items: center;
    /* color: black; */
    color: #003366;
    font-size: 20px;
  }

  nav a:hover {
    color: #b53c40;
  }

  nav li:first-child {
    margin-right: auto;
  }



  /* *************** SIDE BAR */
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    transition: right 1s ease;
    z-index: 999;
    /* backdrop-filter: blur(10px); */
    background-color: rgb(255, 255, 255);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  .sidebar li {
    width: 100%;
  }

  .sidebar a {
    width: 100%;
  }

  /* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

  .menu-btn {
    display: none;
  }


  /*************** NAV Dropdown */

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-btn {
    color: #003366;
    font-size: 20px;
    padding: 2px 0px;
    text-decoration: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .dropdown-btn:hover {
    color: #b53c40;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfbfb;
    min-width: 200px;
    z-index: 1;
    margin: 0px 10px 0px 10px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

  }

  .dropdown-content a {
    color: #003366;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
  }

  /* Show main dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Sub-dropdown setup */
  .sub-dropdown {
    position: relative;
  }

  .sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fcfbfb;
    min-width: 180px;
    text-align: left;
    border-radius: 10px;
  }

  /* Show sub-dropdown on hover */
  .sub-dropdown:hover .sub-dropdown-content {
    display: block;
  }


  /* ********************** SIDE NAV BAR LOGIN Portal */

  /* Sidebar container */
  .off-canvas-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    /*Hideinitially*/
    width: 300px;
    height: 35vh;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: right 1s ease;
    padding: 20px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transition: right 1s ease;
    -moz-transition: right 1s ease;
    -ms-transition: right 1s ease;
    -o-transition: right 1s ease;
  }

  /* Show sidebar when active */
  .off-canvas-sidebar.active {
    right: 0;
  }

  .nav-bars-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    color: #000000;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* Sidebar content */
  .sidebar-content {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  /* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

  .sidebar-btn {
    display: block;
    width: 200px;
    padding: 10px;
    margin: 20px 0;
    background-color: #f0ecec60;
    color: #003366;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
  }

  .sidebar-btn:hover {
    background-color: #fafafa;
  }





  /* <!--*********************** Hero SECTION ************************************-->  */

  .contect-hero {
    height: 70vh;
    /* background-color: #003366; */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("../assets/img/contact.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .contect-hero h1 {
    font-size: 40px;
    color: white;
  }

  .contect-hero p {
    /* font-size: 18px; */
    color: white;
  }


  /* <!--*********************** Get In Touch SECTION ************************************-->  */

  .in-touch {
    width: 1156px;
    height: 680px;
    margin: 0 auto;
    background-color: #DDE5ED;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }

  .in-touch h1 {
    font-size: 44px;
    color: #003366;
    text-align: center;
    padding-top: 40px;
  }

  .in-touch .data {
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
  }

  /* LEFT */

  .in-touch .data .left {
    display: flex;
    flex-direction: column;
    gap: 30px;

  }

  .in-touch .data .left h1 {
    font-size: 40px;
    color: #003366;
  }

  .in-touch .data .left p {
    width: 464px;
    font-size: 20px;
    color: #003366;
  }

  .in-touch .data .left .left-info {
    width: 464px;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    gap: 40px;
    padding: 40px 40px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }

  .in-touch .data .left .left-info .page-icon {
    width: 24px;
    height: 24px;
    color: #b53c40;
    background-color: #d99c9e41;
    padding: 10px;
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
  }

  .in-touch .data .left .left-info h4 {
    font-size: 20px;
    color: #819ab3;
    font-weight: 500;
  }

  .in-touch .data .left .left-info p {
    width: 300px;
    font-size: 20px;
    color: #003366;
    font-weight: 500;
  }


  /* RIGHT */

  .in-touch .data .right {
    width: 390px;
    height: auto;
  }

  .in-touch .data .right form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* justify-content: space-betw; */
  }

  .in-touch .data .right form label {
    font-size: 20px;
    color: #003366;
  }

  .in-touch .data .right form input {
    height: 59px;
    border: none;
    outline: none;
    font-size: 20px;
    padding-left: 20px;

    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }

  .in-touch .data .right form input::placeholder {
    font-size: 20px;
    /* color: #003366; */
  }

  .in-touch .data .right form .message {
    height: 95px;
  }

  .in-touch .data .right form button {
    width: 164px;
    height: 59px;
    font-size: 16px;
    color: white;
    background-color: #b53c40;
    border: none;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
  }


  .in-touch .social {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 360px;
  }

  .in-touch .social .g-icon {
    width: 16px;
    height: 16px;
    padding: 12px;
    color: #b53c40;
    background-color: white;
    cursor: pointer;
    border-radius: 22.5px;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    -ms-border-radius: 22.5px;
    -o-border-radius: 22.5px;
  }


  /*<!-- ********************* IMG SECTION***************************** -->*/

  .img {
    width: 1440px;
    margin: 0 auto;
    display: flex;
  }

  .img img {
    width: 1171px;
    margin: 0 auto;
  }


  /* <!--**************************** FOOTER SEction**********************************  --> */

  .size-5 {
    width: 24px;
    height: 24px;
  }

  footer {
    background-color: #003366;
  }

  footer .data {
    width: 1156px;
    height: 336px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
  }

  footer .data .row-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row-1 label {
    width: 199px;
    height: 24px;
    color: White;
    font-size: 18px;
    font-weight: bold;
  }

  footer .data .row-1 p {
    width: 261px;
    height: 138px;
    font-size: 16px;
    line-height: 1.3;
    color: white;
  }

  footer .data .row-1 .social-icons {
    display: flex;
    gap: 10px;
    /* justify-content: space-around; */
  }

  footer .data .row-1 .social-icons .f-icon {
    width: 24px;
    height: 24px;
    padding: 12px;
    color: white;
    background-color: #b53c40;
    cursor: pointer;
    border-radius: 22.5px;
    -webkit-border-radius: 22.5px;
    -moz-border-radius: 22.5px;
    -ms-border-radius: 22.5px;
    -o-border-radius: 22.5px;
  }

  footer .data .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  footer .data .row h2 {
    font-size: 18px;
    color: white;
  }

  footer .data .row li {
    list-style: none;
  }

  footer .data .row li a {
    list-style: none;
    text-decoration: none;
    color: white;
    font-size: 15px;
  }


  .bottom-footer {
    text-align: center;
    padding: 10px 0;
    /* background-color: #002244; */
    color: white;
    font-size: 14px;
  }

  .bottom-footer p {
    margin: 0;
    font-size: 16px;
  }



  /* **************************** RESPONSIVE */

  @media(max-width: 1440px) {

    /* Nav Bar */
    .nav-bar-container {
      width: auto;
      margin: 0 auto;
    }

    nav a {
      font-size: 20px;
      ;
    }

    .dropdown-btn {
      font-size: 20px;
    }


    /* HERO */
    .contect-hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }



    .img {
      width: 1200px;
    }

    .img img {
      width: 1000px;
    }


    /* FOoter */
    footer .data {
      width: 1100px;
    }

  }


  @media(max-width: 1200px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 992px;
  height: 110px;
  margin: 0 auto; */
      max-width: 1200px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }


    .nav-bar {
      width: auto;
    }


    nav a {
      font-size: 16px;
      ;
    }

    .dropdown-btn {
      font-size: 16px;
    }

    /* HERO */
    .contect-hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }

    /* IN TOuch */

    .in-touch {
      width: 985px;
    }

    .in-touch .data {
      width: 980px;
      display: flex;
      gap: 30px;
      padding: 20px;
    }


    .img {
      width: 992px;
    }

    .img img {
      width: 800px;
    }



    /* FOoter */
    footer .data {
      width: 892px;
    }

  }


  @media(max-width: 992px) {

    /* Nav Bar */
    .nav-bar-container {
      /* width: 700px;
    margin: 0 auto; */
      max-width: 992px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 700px;
      margin: 0 auto;

    }

    .hideonMobile {
      display: none;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bars-icon {
      display: none;
    }

    .dropdown {
      display: none;
      /* margin-right: 300px; */
    }

    .dropdown-btn {
      padding-left: 0px;
    }

    .side {
      display: block;
    }



    /* HERO */
    .contect-hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 30px;
    }

    .contect-hero h1 {
      font-size: 40px;
    }

    .contect-hero p {
      font-size: 20px;
    }

    /* Get In Touch */

    .in-touch {
      width: 760px;
      height: 620px;
    }

    .in-touch h1 {
      font-size: 32px;
      color: #003366;
    }

    .in-touch .data {
      width: 760px;
      display: flex;
      gap: 30px;
      padding: 20px;
    }


    /* LEFT */

    .in-touch .data .left {
      display: flex;
      flex-direction: column;
      gap: 30px;

    }


    .in-touch .data .left p {
      width: 360px;
      font-size: 20px;
      color: #003366;
    }

    .in-touch .data .left .left-info {
      width: 380px;
      height: auto;
      background-color: white;
      display: flex;
      flex-direction: column;
      /* justify-content: space-evenly; */
      gap: 40px;
      padding: 20px 20px;
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    .in-touch .data .left .left-info .page-icon {
      width: 24px;
      height: 24px;
      color: #b53c40;
      background-color: #d99c9e41;
      padding: 10px;
      border-radius: 27px;
      -webkit-border-radius: 27px;
      -moz-border-radius: 27px;
      -ms-border-radius: 27px;
      -o-border-radius: 27px;
    }

    .in-touch .data .left .left-info h4 {
      font-size: 20px;
      color: #819ab3;
      font-weight: 500;
    }

    .in-touch .data .left .left-info p {
      width: 300px;
      font-size: 20px;
      color: #003366;
      font-weight: 500;
    }


    /* RIGHT */

    .in-touch .data .right {
      width: 380px;
      height: 709px;
    }

    .in-touch .data .right form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      /* justify-content: space-betw; */
    }

    .in-touch .data .right form label {
      font-size: 20px;
      color: #003366;
    }

    .in-touch .data .right form input {
      height: 59px;
      border: none;
      outline: none;
      font-size: 20px;
      padding-left: 20px;

      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    .in-touch .data .right form input::placeholder {
      font-size: 20px;
      /* color: #003366; */
    }

    .in-touch .data .right form .message {
      height: 95px;
    }

    .in-touch .data .right form button {
      width: 164px;
      height: 59px;
      font-size: 16px;
      color: white;
      background-color: #b53c40;
      border: none;
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }


    .in-touch .social {
      display: flex;
      gap: 5px;
      justify-content: center;
      margin-top: 270px;

    }

    /* IMG */

    .img {
      width: 768px;
    }

    .img img {
      width: 660px;
    }

    /* FOoter */
    footer .data {
      width: 700px;
      height: auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      row-gap: 40px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }


  }


  @media(max-width: 768px) {

    /* Nav Bar */
    .nav-bar-container {
      max-width: 768px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .sidebar {
      width: 100%;
    }

    .menu-btn {
      display: block;
    }

    .off-canvas-sidebar {
      display: none;
    }

    .nav-bar {
      width: 468px;
      margin: 0 auto;

    }

    .dropdown {
      margin-right: 150px;
    }


    /* HERO */
    .contect-hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .contect-hero h1 {
      font-size: 40px;
    }

    .contect-hero p {
      font-size: 18px;
    }

    /* Get In Touch */

    .in-touch {
      width: 468px;
      height: auto;
      background-color: white;
      margin-top: 0px;
    }

    .in-touch h1 {
      font-size: 40px;
      color: #003366;
    }

    .in-touch .data {
      width: 468px;
      height: 1000px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0px;
      margin-left: 15px;
      padding: 20px;
    }


    /* LEFT */

    .in-touch .data .left {
      height: 500px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }


    .in-touch .data .left .left-info {
      width: 400px;
      height: auto;
      background-color: #dde5ed58;
      display: flex;
      flex-direction: column;
      /* justify-content: space-evenly; */
      gap: 40px;
      margin-top: 100px;
      padding: 40px 40px;
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    .in-touch .data .left .left-info .page-icon {
      width: 24px;
      height: 24px;
      color: #b53c40;
      background-color: #d99c9e41;
      padding: 10px;
      border-radius: 27px;
      -webkit-border-radius: 27px;
      -moz-border-radius: 27px;
      -ms-border-radius: 27px;
      -o-border-radius: 27px;
    }

    .in-touch .data .left .left-info h4 {
      font-size: 20px;
      color: #819ab3;
      font-weight: 500;
    }

    .in-touch .data .left .left-info p {
      width: 300px;
      font-size: 20px;
      color: #003366;
      font-weight: 500;
    }


    /* RIGHT */

    .in-touch .data .right {
      grid-row: 1;
      width: 400px;
      height: 300px;
      /* margin-top: 140px; */
    }

    .in-touch .data .right form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      /* justify-content: space-betw; */
    }

    .in-touch .data .right form label {
      font-size: 20px;
      color: #003366;
    }

    .in-touch .data .right form input {
      height: 59px;
      border: none;
      outline: none;
      font-size: 20px;
      padding-left: 30px;
      background-color: #DDE5ED;

      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    .in-touch .data .right form input::placeholder {
      font-size: 20px;
      /* color: #003366; */
    }

    .in-touch .data .right form .message {
      height: 95px;
    }

    .in-touch .data .right form button {
      width: 164px;
      height: 59px;
      font-size: 16px;
      color: white;
      background-color: #b53c40;
      border: none;
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }


    .in-touch .social {
      display: none;
      gap: 5px;
      justify-content: center;
      margin-top: 270px;

    }

    /* IMG */

    .img {
      width: 468px;
    }

    .img img {
      width: 400px;
    }


    /* FOoter */
    footer .data {
      width: 468px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      row-gap: 40px;
      padding-left: 10px;
      padding-bottom: 40px;
      /* justify-content: space-between; */
    }


  }


  @media(max-width: 468px) {


    /* Nav Bar */
    .nav-bar-container {
      /* width: 320px;
    margin: 0 auto; */
      max-width: 468px;
      /* maximum width hogi */
      width: 100%;
      /* lekin chhoti screen par full width le lega */
      margin: 0 auto;
      /* center align karega */
      padding: 0 15px;
      /* thoda andar space de dega, optional */
      box-sizing: border-box;
    }

    .nav-bar {
      width: 320px;
      margin: 0 auto;
      /* gap: 40px; */
    }

    nav .main-nav {
      gap: 0px;
    }

    .dropdown {
      margin-right: 50px;
    }

    .dropdown-content {
      min-width: 100px;
    }

    .dropdown-content a {
      font-size: 12px;
    }

    .sub-dropdown-content {
      min-width: 100px;
    }



    /* HERO */
    .contect-hero {
      height: 70vh;
      background-size: cover;
      background-position: 100%;

      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }

    .contect-hero h1 {
      font-size: 35px;
      width: auto;
      text-align: center;
    }

    .contect-hero p {
      font-size: 15px;
      width: auto;
      text-align: center;
    }

    /* Get In Touch */

    .in-touch {
      width: 335px;
      height: 930px;
      background-color: white;
      margin-top: 0px;
    }

    .in-touch h1 {
      font-size: 40px;
      color: #003366;
      width: 320px;
      margin-bottom: 10px;
    }

    .in-touch .data {
      width: 320px;
      display: grid;
      grid-template-columns: 1fr;
      /* align-items: center; */
      /* justify-content: center; */
      /* gap: 30px; */
      padding: 0px;
    }


    /* LEFT */

    .in-touch .data .left {
      width: 300px;
      height: 300px;
      display: flex;
      flex-direction: column;
      position: relative;
      top: -150px;
      /* gap: 30px; */
    }



    .in-touch .data .left .left-info {
      width: 300px;
      /* height: 300px; */
      background-color: #dde5ed58;
      display: flex;
      flex-direction: column;
      padding: 20px 15px;

      gap: 30px;
      border-radius: 12px;
    }

    .in-touch .data .left .left-info .page-icon {
      width: 24px;
      height: 24px;
      color: #b53c40;
      background-color: #d99c9e41;
      padding: 10px;
      border-radius: 27px;
      -webkit-border-radius: 27px;
      -moz-border-radius: 27px;
      -ms-border-radius: 27px;
      -o-border-radius: 27px;
    }

    .in-touch .data .left .left-info h4 {
      font-size: 20px;
      color: #819ab3;
      font-weight: 500;
    }

    .in-touch .data .left .left-info p {
      width: 300px;
      font-size: 12px;
      color: #003366;
      font-weight: 500;
    }


    /* RIGHT */

    .in-touch .data .right {
      grid-row: 1;
      width: 340px;
      height: 300px;
    }

    .in-touch .data .right form {
      width: 335px;

      display: flex;
      flex-direction: column;
      gap: 15px;
      /* justify-content: space-betw; */
    }

    .in-touch .data .right form label {
      width: 150px;
      font-size: 20px;
      color: #003366;
    }

    .in-touch .data .right form input {
      width: 300px;
      height: 49px;
      border: none;
      outline: none;
      font-size: 20px;
      padding-left: 10px;
      background-color: #DDE5ED;

      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }

    .in-touch .data .right form input::placeholder {
      font-size: 15px;
      /* color: #003366; */
    }

    .in-touch .data .right form .message {
      height: 95px;
    }

    .in-touch .data .right form button {
      width: 164px;
      height: 59px;
      font-size: 16px;
      color: white;
      background-color: #b53c40;
      border: none;
      border-radius: 12px;
      -webkit-border-radius: 12px;
      -moz-border-radius: 12px;
      -ms-border-radius: 12px;
      -o-border-radius: 12px;
    }


    .in-touch .social {
      display: none;
      gap: 5px;
      justify-content: center;
      margin-top: 270px;

    }




    /* IMG */

    .img {
      width: 335px;
    }

    .img img {
      width: 320px;
    }




    /* FOoter */
    footer .data {
      width: 330px;
      height: auto;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      row-gap: 20px;
      padding-left: 10px;
      padding-bottom: 40px;
      padding-top: 20px;
      /* justify-content: space-between; */
    }

    footer .data .row-1 p {
      height: 60px;
    }

  }

  /* ========================================== */
  /* FILE: css/ourteam.css */
  /* ========================================== */

  flex-wrap: wrap;
  align-items: center;
  background: #003366;
  color: #003366;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faculty-left {
  flex: 1;
  min-width: 280px;
  /* background: #f3f3f3; */
  padding: 10px;
  text-align: center;
}

.faculty-left img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #b53c40;
  /* margin-bottom: 15px; */
}

.faculty-left h3 {
  /* margin: 10px 0 5px; */
  font-size: 1.5rem;
  color: #ffffff;
}

.faculty-left p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.faculty-right {
  flex: 2;
  min-width: 280px;
  padding: 0px 20px 20px 20px;
  text-align: left;
}

.faculty-right p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #fff;
  text-align: justify;
}

/* Swiper custom navigation */
/* Swiper custom navigation */
/* .swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  visibility: hidden;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
  color: #b53c40;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #d8702b;
  opacity: 1;
} */

/* ============  Faculty Profile  End ============== */



/*<!-- ********************* IMG SECTION***************************** -->*/

.img {
  width: 1440px;
  margin: 0 auto;
  display: flex;
}

.img img {
  width: 1171px;
  margin: 0 auto;
}



/* <!--**************************** FOOTER SEction**********************************  --> */

.size-5 {
  width: 24px;
  height: 24px;
}

footer {
  background-color: #003366;
}

.data {
  width: 1156px;
  height: 336px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

footer .data .row-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row-1 label {
  width: 199px;
  height: 24px;
  color: White;
  font-size: 18px;
  font-weight: bold;
}

footer .data .row-1 p {
  width: 261px;
  height: 138px;
  font-size: 16px;
  line-height: 1.3;
  color: white;
}

footer .data .row-1 .social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-around; */
}

footer .data .row-1 .social-icons .f-icon {
  width: 24px;
  height: 24px;
  padding: 12px;
  color: white;
  background-color: #b53c40;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

footer .data .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row h2 {
  font-size: 18px;
  color: white;
}

footer .data .row li {
  list-style: none;
}

footer .data .row li a {
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 15px;
}


.bottom-footer {
  text-align: center;
  padding: 10px 0;
  /* background-color: #002244; */
  color: white;
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  font-size: 16px;
}


/* **************************** RESPONSIVE */

@media (max-width: 1440px) {

  /* Nav Bar */
  .nav-bar-container {
    width: auto;
    margin: 0 auto;
  }

  nav a {
    font-size: 20px;
  }

  .dropdown-btn {
    font-size: 20px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* Discription */
  .discription {
    width: 1200px;
    /*height: 1200px;*/
    margin-top: 0px;
  }

  /* IMG Section */

  .img {
    width: 1200px;
  }

  .img img {
    width: 1000px;
  }


  /* FOoter */
  footer .data {
    width: 1100px;
  }
}

@media (max-width: 1200px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 992px;
  height: 110px;
  margin: 0 auto; */
    max-width: 1200px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: auto;
  }

  nav a {
    font-size: 16px;
  }

  .dropdown-btn {
    font-size: 16px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }




  /* IMG SECTiON */
  .img {
    width: 992px;
  }

  .img img {
    width: 800px;
  }


  /* FOoter */
  footer .data {
    width: 892px;
  }
}

@media (max-width: 992px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 700px;
    margin: 0 auto; */
    max-width: 992px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 700px;
    margin: 0 auto;
  }

  .hideonMobile {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bars-icon {
    display: none;
  }

  .dropdown {
    display: none;
    /* margin-right: 300px; */
  }

  .dropdown-btn {
    padding-left: 0px;
  }

  .side {
    display: block;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }



  /* IMG */

  .img {
    width: 768px;
  }

  .img img {
    width: 660px;
  }

  /* FOoter */
  footer .data {
    width: 700px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }
}

@media (max-width: 768px) {

  /* Nav Bar */
  .nav-bar-container {
    max-width: 768px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .sidebar {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bar {
    width: 468px;
    margin: 0 auto;
  }

  .dropdown {
    margin-right: 150px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }




  /* IMG */

  .img {
    width: 468px;
  }

  .img img {
    width: 400px;
  }

  /* FOoter */
  footer .data {
    width: 468px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    padding-left: 10px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }
}

@media (max-width: 468px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 320px;
    margin: 0 auto; */
    max-width: 468px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 320px;
    margin: 0 auto;
    /* gap: 40px; */
  }

  nav .main-nav {
    gap: 0px;
  }

  .dropdown {
    margin-right: 50px;
  }

  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-content a {
    font-size: 12px;
  }

  .sub-dropdown-content {
    min-width: 100px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .hero h1 {
    font-size: 40px;
    width: auto;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    width: auto;
    text-align: center;
  }


  /* IMG */

  .img {
    width: 335px;
  }

  .img img {
    width: 320px;
  }

  /* FOOTER */
  footer .data {
    width: 330px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    /* justify-content: space-between; */
  }

  footer .data .row-1 p {
    height: 60px;
  }

}


/* ========================================== */
/* FILE: css/languages.css */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* *********************** NAV BAR */
.active {
  color: #b53c40 !important;
}

.fa-solid {
  color: #b53c40 !important;
}

/* .fa-solid:hover{
  color: #b53c40 !important;
} */


.nav-bar-container {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  width: 100%;
  /* full width karne ke liye */
  margin: 0;
  /* extra margin remove */
  padding: 0;
  /* extra padding remove */
  left: 0;
  /* left side chipkao */
  right: 0;
  /* right side chipkao */
  background: #fff;
  /* background dena zaroori hai */
}

.nav-bar {
  width: 1152px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}


nav .main-nav {
  height: 90px;
  display: flex;
  gap: 30px;
}

.logo {
  height: 90px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;

}

.main-nav li:last-child:hover {
  background-color: rgba(111, 111, 112, 0.212);
}

nav a {
  height: 100%;
  /* padding: 0 30px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: black; */
  color: #003366;
  font-size: 20px;
}

nav a:hover {
  color: #b53c40;
}

nav li:first-child {
  margin-right: auto;
}



/* *************** SIDE BAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  transition: right 1s ease;
  z-index: 999;
  /* backdrop-filter: blur(10px); */
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

/* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

.menu-btn {
  display: none;
}


/*************** NAV Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  color: #003366;
  font-size: 20px;
  padding: 2px 0px;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-btn:hover {
  color: #b53c40;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfbfb;
  min-width: 200px;
  z-index: 1;
  margin: 0px 10px 0px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

}

.dropdown-content a {
  color: #003366;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Show main dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub-dropdown setup */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fcfbfb;
  min-width: 180px;
  text-align: left;
  border-radius: 10px;
}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}


/* ********************** SIDE NAV BAR LOGIN Portal */

/* Sidebar container */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  /*Hideinitially*/
  width: 300px;
  height: 35vh;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 1s ease;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

/* Show sidebar when active */
.off-canvas-sidebar.active {
  right: 0;
}

.nav-bars-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar content */
.sidebar-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

.sidebar-btn {
  display: block;
  width: 200px;
  padding: 10px;
  margin: 20px 0;
  background-color: #f0ecec60;
  color: #003366;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.sidebar-btn:hover {
  background-color: #fafafa;
}







/*<!-- ********************* HERO SECTION***************************** -->*/

.hero {
  height: 70vh;
  /* background-color: #003366; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/img/header\ img1.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero h1 {
  font-size: 40px;
  color: white;
}

.hero p {
  /* font-size: 18px; */
  color: white;
}




/* <!--**************************** FOOTER SEction**********************************  --> */

.size-5 {
  width: 24px;
  height: 24px;
}

footer {
  background-color: #003366;
}

.data {
  width: 1156px;
  height: 336px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

footer .data .row-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row-1 label {
  width: 199px;
  height: 24px;
  color: White;
  font-size: 18px;
  font-weight: bold;
}

footer .data .row-1 p {
  width: 261px;
  height: 138px;
  font-size: 16px;
  line-height: 1.3;
  color: white;
}

footer .data .row-1 .social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-between; */
}

footer .data .row-1 .social-icons .f-icon {
  width: 24px;
  height: 24px;
  padding: 12px;
  color: white;
  background-color: #b53c40;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

footer .data .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row h2 {
  font-size: 18px;
  color: white;
}

footer .data .row li {
  list-style: none;
}

footer .data .row li a {
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 15px;
}


.bottom-footer {
  text-align: center;
  padding: 10px 0;
  /* background-color: #002244; */
  color: white;
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  font-size: 16px;
}





/* **************************** RESPONSIVE */

@media(max-width: 1440px) {

  /* Nav Bar */
  .nav-bar-container {
    width: auto;
    margin: 0 auto;
  }

  nav a {
    font-size: 20px;
    ;
  }

  .dropdown-btn {
    font-size: 20px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* IMG */
  .single-img {
    width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
  }


  /* FOoter */
  footer .data {
    width: 1100px;
  }

}


@media(max-width: 1200px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 992px;
  height: 110px;
  margin: 0 auto; */
    max-width: 1200px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }


  .nav-bar {
    width: auto;
  }


  nav a {
    font-size: 16px;
    ;
  }

  .dropdown-btn {
    font-size: 16px;
  }



  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }


  /* IMG */
  .single-img {
    width: 992px;
    margin: 0 auto;


    display: flex;
    justify-content: center;
  }

  .single-img img {
    width: 992px;

  }


  /* FOoter */
  footer .data {
    width: 892px;
  }

}


@media(max-width: 992px) {

  .nav-bar-container {
    /* width: 700px;
    margin: 0 auto; */
    max-width: 992px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 700px;
    margin: 0 auto;

  }

  .hideonMobile {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bars-icon {
    display: none;
  }

  .dropdown {
    display: none;
    /* margin-right: 300px; */
  }

  .dropdown-btn {
    padding-left: 0px;
  }

  .side {
    display: block;
  }


  /* HERO */
  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  





  /* FOoter */
  footer .data {
    width: 700px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 768px) {

  /* Nav Bar */
  .nav-bar-container {
    max-width: 768px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .sidebar {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }


  .nav-bar {
    width: 468px;
    margin: 0 auto;

  }

  .dropdown {
    margin-right: 150px;
  }




  /* HERO */
  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }


  



  /* FOoter */
  footer .data {
    width: 468px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    padding-left: 10px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 468px) {


  .nav-bar-container {
    /* width: 320px;
    margin: 0 auto; */
    max-width: 468px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 320px;
    margin: 0 auto;
    /* gap: 40px; */
  }

  nav .main-nav {
    gap: 0px;
  }

  .dropdown {
    margin-right: 50px;
  }


  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-content a {
    font-size: 12px;
  }

  .sub-dropdown-content {
    min-width: 100px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .hero h1 {
    font-size: 40px;
    width: auto;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    width: auto;
    text-align: center;
  }





  /* FOoter */
  footer .data {
    width: 330px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    /* justify-content: space-between; */
  }


  footer .data .row-1 p {
    height: 60px;
  }


}


/* ========================================== */
/* FILE: css/policy.css */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* *********************** NAV BAR */
.active {
  color: #b53c40;
}

.nav-bar-container {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  width: 100%;
  /* full width karne ke liye */
  margin: 0;
  /* extra margin remove */
  padding: 0;
  /* extra padding remove */
  left: 0;
  /* left side chipkao */
  right: 0;
  /* right side chipkao */
  background: #fff;
  /* background dena zaroori hai */
}

.nav-bar {
  width: 1152px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}

nav .main-nav {
  height: 90px;
  display: flex;
  gap: 30px;
}

.logo {
  height: 90px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

.main-nav li:last-child:hover {
  background-color: rgba(111, 111, 112, 0.212);
}

nav a {
  height: 100%;
  /* padding: 0 30px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: black; */
  color: #003366;
  font-size: 20px;
}

nav a:hover {
  color: #b53c40;
}

nav li:first-child {
  margin-right: auto;
}

/* *************** SIDE BAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  transition: right 1s ease;
  z-index: 999;
  /* backdrop-filter: blur(10px); */
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

/* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

.menu-btn {
  display: none;
}

/*************** NAV Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  color: #003366;
  font-size: 20px;
  padding: 2px 0px;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-btn:hover {
  color: #b53c40;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfbfb;
  min-width: 200px;
  z-index: 1;
  margin: 0px 10px 0px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

}

.dropdown-content a {
  color: #003366;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Show main dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub-dropdown setup */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fcfbfb;
  min-width: 180px;
  text-align: left;
  border-radius: 10px;
}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}

/* ********************** SIDE NAV BAR LOGIN Portal */

/* Sidebar container */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  /*Hideinitially*/
  width: 300px;
  height: 35vh;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 1s ease;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

/* Show sidebar when active */
.off-canvas-sidebar.active {
  right: 0;
}

.nav-bars-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar content */
.sidebar-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

.sidebar-btn {
  display: block;
  width: 200px;
  padding: 10px;
  margin: 20px 0;
  background-color: #f0ecec60;
  color: #003366;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.sidebar-btn:hover {
  background-color: #fafafa;
}

/*<!-- ********************* HERO SECTION***************************** -->*/

.hero {
  height: 70vh;
  /* background-color: #003366; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/img/policy.jpg   ") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero h1 {
  font-size: 40px;
  color: white;
}

.hero p {
  font-size: 24px;
  color: white;
}


/*<!-- ********************* Policies File SECTION***************************** -->*/


.policies-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s ease;
}

.policy-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.policy-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pdf-icon {
  width: 40px;
  height: 40px;
}

.policy-item h3 {
  margin: 0;
  font-size: 18px;
  color: #003366;
  font-weight: 600;
}

.policy-item p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

.download-btn {
  background-color: #B53C40;
  color: #fff;
  padding: 8px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

/* .download-btn:hover {
  background-color: #003366;
} */

@media (max-width: 600px) {
  .policy-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .download-btn {
    align-self: flex-end;
  }
}



/*<!-- ********************* IMG SECTION***************************** -->*/

.img {
  width: 1440px;
  margin: 0 auto;
  display: flex;
}

.img img {
  width: 1171px;
  margin: 0 auto;
}



/* <!--**************************** FOOTER SEction**********************************  --> */

.size-5 {
  width: 24px;
  height: 24px;
}

footer {
  background-color: #003366;
}

.data {
  width: 1156px;
  height: 336px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

footer .data .row-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row-1 label {
  width: 199px;
  height: 24px;
  color: White;
  font-size: 18px;
  font-weight: bold;
}

footer .data .row-1 p {
  width: 261px;
  height: 138px;
  font-size: 16px;
  line-height: 1.3;
  color: white;
}

footer .data .row-1 .social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-around; */
}

footer .data .row-1 .social-icons .f-icon {
  width: 24px;
  height: 24px;
  padding: 12px;
  color: white;
  background-color: #b53c40;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

footer .data .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row h2 {
  font-size: 18px;
  color: white;
}

footer .data .row li {
  list-style: none;
}

footer .data .row li a {
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 15px;
}


.bottom-footer {
  text-align: center;
  padding: 10px 0;
  /* background-color: #002244; */
  color: white;
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  font-size: 16px;
}



/* **************************** RESPONSIVE */

@media (max-width: 1440px) {

  /* Nav Bar */
  .nav-bar-container {
    width: auto;
    margin: 0 auto;
  }

  nav a {
    font-size: 20px;
  }

  .dropdown-btn {
    font-size: 20px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* Discription */
  .discription {
    width: 1200px;
    /*height: 1200px;*/
    margin-top: 0px;
  }

  /* IMG Section */

  .img {
    width: 1200px;
  }

  .img img {
    width: 1000px;
  }


  /* FOoter */
  footer .data {
    width: 1100px;
  }
}

@media (max-width: 1200px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 992px;
  height: 110px;
  margin: 0 auto; */
    max-width: 1200px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: auto;
  }

  nav a {
    font-size: 16px;
  }

  .dropdown-btn {
    font-size: 16px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }


  /* Discription */

  .discription {
    width: 992px;
    /*height: 1100px;*/
    margin: 0 auto;
    /*padding-top: 100px;*/
  }

  .discription h1 {
    width: 980px;
    /*font-size: px;*/
  }

  .discription h3 {
    width: 980px;
  }

  .discription p {
    /*font-size: 20px;*/
    /*color: #003366;*/
    width: 980px;
  }


  /* IMG SECTiON */
  .img {
    width: 992px;
  }

  .img img {
    width: 800px;
  }


  /* FOoter */
  footer .data {
    width: 892px;
  }
}

@media (max-width: 992px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 700px;
    margin: 0 auto; */
    max-width: 992px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 700px;
    margin: 0 auto;
  }

  .hideonMobile {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bars-icon {
    display: none;
  }

  .dropdown {
    display: none;
    /* margin-right: 300px; */
  }

  .dropdown-btn {
    padding-left: 0px;
  }

  .side {
    display: block;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  /* Discription */

  .discription {
    width: 730px;
    /*height: 1200px;*/
    margin: 0 auto;
    padding-top: 100px;
  }

  .discription h1 {
    width: 730px;
    /*font-size: 34px;*/
  }

  .discription h3 {
    width: 730px;
  }

  .discription p {
    /*font-size: 20px;*/
    /*color: #003366;*/
    width: 730px;
  }

  /* IMG */

  .img {
    width: 768px;
  }

  .img img {
    width: 660px;
  }

  /* FOoter */
  footer .data {
    width: 700px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }
}

@media (max-width: 768px) {

  /* Nav Bar */
  .nav-bar-container {
    max-width: 768px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .sidebar {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bar {
    width: 468px;
    margin: 0 auto;
  }

  .dropdown {
    margin-right: 150px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }


  /* Discription */

  .discription {
    width: 468px;
    /*height: 1600px;*/
    margin: 0 auto;
    padding-top: 40px;
  }

  .discription h1 {
    width: 430px;
    /*font-size: 28px;*/
  }

  .discription h3 {
    width: 430px;
  }

  .discription p {
    /*font-size: 20px;*/
    /*color: #003366;*/
    width: 430px;
  }

  /* IMG */

  .img {
    width: 468px;
  }

  .img img {
    width: 400px;
  }

  /* FOoter */
  footer .data {
    width: 468px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    padding-left: 10px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }
}

@media (max-width: 468px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 320px;
    margin: 0 auto; */
    max-width: 468px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 320px;
    margin: 0 auto;
    /* gap: 40px; */
  }

  nav .main-nav {
    gap: 0px;
  }

  .dropdown {
    margin-right: 50px;
  }

  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-content a {
    font-size: 12px;
  }

  .sub-dropdown-content {
    min-width: 100px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .hero h1 {
    font-size: 40px;
    width: auto;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    width: auto;
    text-align: center;
  }

  /* Discription */

  .discription {
    width: 345px;
    /*height: 1200px;*/
    margin: 0 auto;
    padding-top: 30px;
    overflow: hidden;
    /*gap: 10px;*/
    /* padding-bottom: 100px; */
  }

  .discription h1 {
    width: 300px;
    /*font-size: 28px;*/
  }

  .discription h3 {
    width: 300px;
  }

  .discription p {
    /*font-size: 16px;*/
    /*color: #003366;*/
    width: 300px;
  }

  /* IMG */

  .img {
    width: 335px;
  }

  .img img {
    width: 320px;
  }

  /* FOOTER */
  footer .data {
    width: 330px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    /* justify-content: space-between; */
  }

  footer .data .row-1 p {
    height: 60px;
  }

}


/* ========================================== */
/* FILE: css/professionaldevelopment.css */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* *********************** NAV BAR */
.active {
  color: #b53c40 !important;
}


.nav-bar-container {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  width: 100%;
  /* full width karne ke liye */
  margin: 0;
  /* extra margin remove */
  padding: 0;
  /* extra padding remove */
  left: 0;
  /* left side chipkao */
  right: 0;
  /* right side chipkao */
  background: #fff;
  /* background dena zaroori hai */
}

.nav-bar {
  width: 1152px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}


nav .main-nav {
  height: 90px;
  display: flex;
  gap: 30px;
}

.logo {
  height: 90px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;

}

.main-nav li:last-child:hover {
  background-color: rgba(111, 111, 112, 0.212);
}

nav a {
  height: 100%;
  /* padding: 0 30px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: black; */
  color: #003366;
  font-size: 20px;
}

nav a:hover {
  color: #b53c40;
}

nav li:first-child {
  margin-right: auto;
}



/* *************** SIDE BAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  transition: right 1s ease;
  z-index: 999;
  /* backdrop-filter: blur(10px); */
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

/* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

.menu-btn {
  display: none;
}


/*************** NAV Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  color: #003366;
  font-size: 20px;
  padding: 2px 0px;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfbfb;
  min-width: 200px;
  z-index: 1;
  margin: 0px 10px 0px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
}

.dropdown-content a {
  color: #003366;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Show main dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub-dropdown setup */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fcfbfb;
  min-width: 180px;
  text-align: left;
  border-radius: 10px;
}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}


/* ********************** SIDE NAV BAR LOGIN Portal */

/* Sidebar container */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  /*Hideinitially*/
  width: 300px;
  height: 35vh;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 1s ease;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

/* Show sidebar when active */
.off-canvas-sidebar.active {
  right: 0;
}

.nav-bars-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar content */
.sidebar-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

.sidebar-btn {
  display: block;
  width: 200px;
  padding: 10px;
  margin: 20px 0;
  background-color: #f0ecec60;
  color: #003366;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.sidebar-btn:hover {
  background-color: #fafafa;
}







/*<!-- ********************* HERO SECTION***************************** -->*/

.hero {
  height: 70vh;
  /* background-color: #003366; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/img/header\ img1.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero h1 {
  font-size: 40px;
  color: white;
}

.hero p {
  /* font-size: 18px; */
  color: white;
}



/* <!--**************************** FOOTER SEction**********************************  --> */

.size-5 {
  width: 24px;
  height: 24px;
}

footer {
  background-color: #003366;
}

.data {
  width: 1156px;
  height: 336px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

footer .data .row-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row-1 label {
  width: 199px;
  height: 24px;
  color: White;
  font-size: 18px;
  font-weight: bold;
}

footer .data .row-1 p {
  width: 261px;
  height: 138px;
  font-size: 16px;
  line-height: 1.3;
  color: white;
}

footer .data .row-1 .social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-between; */
}

footer .data .row-1 .social-icons .f-icon {
  width: 24px;
  height: 24px;
  padding: 12px;
  color: white;
  background-color: #b53c40;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

footer .data .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row h2 {
  font-size: 18px;
  color: white;
}

footer .data .row li {
  list-style: none;
}

footer .data .row li a {
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 15px;
}








/* **************************** RESPONSIVE */

@media(max-width: 1440px) {

  /* Nav Bar */
  .nav-bar-container {
    width: auto;
    margin: 0 auto;
  }

  nav a {
    font-size: 20px;
    ;
  }

  .dropdown-btn {
    font-size: 20px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* IMG */
  .single-img {
    width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
  }


  /* FOoter */
  footer .data {
    width: 1100px;
  }

}


@media(max-width: 1200px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 992px;
  height: 110px;
  margin: 0 auto; */
    max-width: 1200px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }


  .nav-bar {
    width: auto;
  }


  nav a {
    font-size: 16px;
    ;
  }

  .dropdown-btn {
    font-size: 16px;
  }


  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }


  

  /* FOoter */
  footer .data {
    width: 892px;
  }

}


@media(max-width: 992px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 700px;
    margin: 0 auto; */
    max-width: 992px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 700px;
    margin: 0 auto;

  }

  .hideonMobile {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bars-icon {
    display: none;
  }

  .dropdown {
    display: none;
    /* margin-right: 300px; */
  }

  .dropdown-btn {
    padding-left: 0px;
  }

  .side {
    display: block;
  }


  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  



  /* FOoter */
  footer .data {
    width: 700px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 768px) {

  /* Nav Bar */
  .nav-bar-container {
    max-width: 768px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .sidebar {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }


  .nav-bar {
    width: 468px;
    margin: 0 auto;

  }

  .dropdown {
    margin-right: 150px;
  }




  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }


 

  /* FOoter */
  footer .data {
    width: 468px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    padding-left: 10px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 468px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 320px;
    margin: 0 auto; */
    max-width: 468px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }


  .nav-bar {
    width: 320px;
    margin: 0 auto;
    /* gap: 40px; */
  }

  nav .main-nav {
    gap: 0px;
  }

  .dropdown {
    margin-right: 50px;
  }


  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-content a {
    font-size: 12px;
  }

  .sub-dropdown-content {
    min-width: 100px;
  }



  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .hero h1 {
    font-size: 25px;
    width: auto;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    width: auto;
    text-align: center;
  }

  

  /* FOoter */
  footer .data {
    width: 330px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    /* justify-content: space-between; */
  }


  footer .data .row-1 p {
    height: 60px;
  }

}


/* ========================================== */
/* FILE: css/skillbasetraining.css */
/* ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* *********************** NAV BAR */

.active {
  color: #b53c40 !important;
}

.fa-solid {
  color: #b53c40 !important;
}

.nav-bar-container {
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  width: 100%;
  /* full width karne ke liye */
  margin: 0;
  /* extra margin remove */
  padding: 0;
  /* extra padding remove */
  left: 0;
  /* left side chipkao */
  right: 0;
  /* right side chipkao */
  background: #fff;
  /* background dena zaroori hai */
}

.nav-bar {
  width: 1152px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 80px;
}


nav .main-nav {
  height: 90px;
  display: flex;
  gap: 30px;
}

.logo {
  height: 90px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;

}

.main-nav li:last-child:hover {
  background-color: rgba(111, 111, 112, 0.212);
}

nav a {
  height: 100%;
  /* padding: 0 30px; */
  text-decoration: none;
  display: flex;
  align-items: center;
  /* color: black; */
  color: #003366;
  font-size: 20px;
}

nav a:hover {
  color: #b53c40;
}

nav li:first-child {
  margin-right: auto;
}



/* *************** SIDE BAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  transition: right 1s ease;
  z-index: 999;
  /* backdrop-filter: blur(10px); */
  background-color: rgb(255, 255, 255);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

/* .sidebar a:hover{
  background-color: rgba(0, 0, 0, 0);
} */

.menu-btn {
  display: none;
}


/*************** NAV Dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  color: #003366;
  font-size: 20px;
  padding: 2px 0px;
  text-decoration: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dropdown-btn:hover {
  color: #b53c40;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fcfbfb;
  min-width: 200px;
  z-index: 1;
  margin: 0px 10px 0px 10px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);

}

.dropdown-content a {
  color: #003366;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Show main dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Sub-dropdown setup */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fcfbfb;
  min-width: 180px;
  text-align: left;
  border-radius: 10px;
}

/* Show sub-dropdown on hover */
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}


/* ********************** SIDE NAV BAR LOGIN Portal */

/* Sidebar container */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  /*Hideinitially*/
  width: 300px;
  height: 35vh;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 1s ease;
  padding: 20px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  -webkit-transition: right 1s ease;
  -moz-transition: right 1s ease;
  -ms-transition: right 1s ease;
  -o-transition: right 1s ease;
}

/* Show sidebar when active */
.off-canvas-sidebar.active {
  right: 0;
}

.nav-bars-icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Sidebar content */
.sidebar-content {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* .sidebar-content h2 {
  margin-bottom: 20px;
  color: #333;
} */

.sidebar-btn {
  display: block;
  width: 200px;
  padding: 10px;
  margin: 20px 0;
  background-color: #f0ecec60;
  color: #003366;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  /* box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.082), 0 4px 4px 0 rgba(0, 0, 0, 0.055); */
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.sidebar-btn:hover {
  background-color: #fafafa;
}







/*<!-- ********************* HERO SECTION***************************** -->*/

.hero {
  height: 70vh;
  /* background-color: #003366; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/img/header\ img1.png") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero h1 {
  font-size: 40px;
  color: white;
}

.hero p {
  /* font-size: 18px; */
  color: white;
}

/* <!--**************************** FOOTER SEction**********************************  --> */

.size-5 {
  width: 24px;
  height: 24px;
}

footer {
  background-color: #003366;
}

.data {
  width: 1156px;
  height: 336px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
}

footer .data .row-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row-1 label {
  width: 199px;
  height: 24px;
  color: White;
  font-size: 18px;
  font-weight: bold;
}

footer .data .row-1 p {
  width: 261px;
  height: 138px;
  font-size: 16px;
  line-height: 1.3;
  color: white;
}

footer .data .row-1 .social-icons {
  display: flex;
  gap: 10px;
  /* justify-content: space-between; */
}

footer .data .row-1 .social-icons .f-icon {
  width: 24px;
  height: 24px;
  padding: 12px;
  color: white;
  background-color: #b53c40;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

footer .data .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .data .row h2 {
  font-size: 18px;
  color: white;
}

footer .data .row li {
  list-style: none;
}

footer .data .row li a {
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: 15px;
}

.bottom-footer {
  text-align: center;
  padding: 10px 0;
  /* background-color: #002244; */
  color: white;
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  font-size: 16px;
}






/* **************************** RESPONSIVE */

@media(max-width: 1440px) {

  /* Nav Bar */
  .nav-bar-container {
    width: auto;
    margin: 0 auto;
  }

  nav a {
    font-size: 20px;
    ;
  }

  .dropdown-btn {
    font-size: 20px;
  }


  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* IMG */
  .single-img {
    width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
  }


  /* FOoter */
  footer .data {
    width: 1100px;
  }

}


@media(max-width: 1200px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 992px;
  height: 110px;
  margin: 0 auto; */
    max-width: 1200px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }


  .nav-bar {
    width: auto;
  }


  nav a {
    font-size: 16px;
    ;
  }

  .dropdown-btn {
    font-size: 16px;
  }


  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }





  /* FOoter */
  footer .data {
    width: 892px;
  }

}


@media(max-width: 992px) {

  /* Nav Bar */
  .nav-bar-container {
    /* width: 700px;
    margin: 0 auto; */
    max-width: 992px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 700px;
    margin: 0 auto;

  }

  .hideonMobile {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bars-icon {
    display: none;
  }

  .dropdown {
    display: none;
    /* margin-right: 300px; */
  }

  .dropdown-btn {
    padding-left: 0px;
  }

  .side {
    display: block;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }




  /* FOoter */
  footer .data {
    width: 700px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 40px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 768px) {

  /* Nav Bar */
  .nav-bar-container {
    max-width: 768px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .sidebar {
    width: 100%;
  }

  .menu-btn {
    display: block;
  }

  .off-canvas-sidebar {
    display: none;
  }

  .nav-bar {
    width: 468px;
    margin: 0 auto;

  }

  .dropdown {
    margin-right: 150px;
  }




  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }



  


  /* FOoter */
  footer .data {
    width: 468px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    padding-left: 10px;
    padding-bottom: 40px;
    /* justify-content: space-between; */
  }


}


@media(max-width: 468px) {


  /* Nav Bar */
  .nav-bar-container {
    /* width: 320px;
    margin: 0 auto; */
    max-width: 468px;
    /* maximum width hogi */
    width: 100%;
    /* lekin chhoti screen par full width le lega */
    margin: 0 auto;
    /* center align karega */
    padding: 0 15px;
    /* thoda andar space de dega, optional */
    box-sizing: border-box;
  }

  .nav-bar {
    width: 320px;
    margin: 0 auto;
    /* gap: 40px; */
  }

  nav .main-nav {
    gap: 0px;
  }

  .dropdown {
    margin-right: 50px;
  }


  .dropdown-content {
    min-width: 100px;
  }

  .dropdown-content a {
    font-size: 12px;
  }

  .sub-dropdown-content {
    min-width: 100px;
  }

  /* HERO */
  .hero {
    height: 70vh;
    background-size: cover;
    background-position: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .hero h1 {
    font-size: 40px;
    width: auto;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
    width: auto;
    text-align: center;
  }





  /* FOoter */
  footer .data {
    width: 330px;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding-left: 10px;
    padding-bottom: 40px;
    padding-top: 20px;
    /* justify-content: space-between; */
  }

  footer .data .row-1 p {
    height: 60px;
  }


}


/* ********************* GRID SECTION ***************************** */

.grid {
  padding: 60px 20px;
}

.grid h1 {
  font-size: 48px;
  color: #003366;
  text-align: center;
  padding-bottom: 20px;
}

.grid p {
  font-size: 20px;
  color: #003366;
  text-align: center;
  padding-bottom: 50px;
}

/* GRID LAYOUT */
.grid .cards {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.grid .cards .card-1 {
  background-color: #DDE5ED;
  padding: 15px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 12px;
  height: 100%;
}

/* IMAGE */
.grid .cards .card-1 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* TITLE */
.grid .cards .card-1 h2 {
  font-size: 22px;
  margin: 10px 0;
}

/* TIME */
.grid .cards .card-1 .time {
  font-size: 18px;
  color: #B53C40;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* SUB TITLE */
.grid .cards .card-1 h3 {
  font-size: 18px;
  margin-top: 10px;
}

/* DESCRIPTION */
.grid .cards .card-1 .dicription {
  font-size: 16px;
  margin-top: 5px;
}

/* BUTTON */
.grid .cards .card-1 .learn-more-btn {
  width: fit-content;
  text-decoration: none;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 14px;
  background-color: #B53C40;
  border-radius: 10px;
  align-self: flex-end;
  transition: 0.3s;
}

.grid .cards .card-1 .learn-more-btn:hover {
  background-color: #8e2e32;
}

/* AWARD BADGE (LINK) */
.award-badge {
  display: block;
  margin-top: 10px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background-color: #B53C40;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  transition: 0.3s ease;
}

.award-badge:hover {
  background-color: #8e2e32;
  transform: scale(1.03);
}

/* ********************* POPUP ***************************** */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  width: 90vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 35px;
  cursor: pointer;
}

/* ********************* RESPONSIVE ***************************** */

/* TABLET */
@media (max-width: 992px) {
  .grid .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .grid h1 {
    font-size: 32px;
  }

  .grid p {
    font-size: 16px;
  }

  .grid .cards {
    grid-template-columns: 1fr;
  }

  .grid .cards .card-1 img {
    height: 180px;
  }
}

/*<!-- ********************* SINGLE IMG SECTION***************************** -->*/
/* ================================================= */
/* ---------------------------------------------- */

.courses-banner{
    height:50vh;
    min-height:250px; /* mobile ke liye */
    background: #000;
    background: linear-gradient(
        180deg, 
        #023466 0%, 
        #B53C40 50%, 
        #023466 100%
    );
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.courses-banner h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    letter-spacing:2px;
}

/* Responsive text size */
@media(max-width:900px){
    .courses-banner h2{
        font-size:38px;
    }
}

@media(max-width:600px){
    .courses-banner h2{
        font-size:28px;
    }
}
/* ==================================================== */

/* COURSE DETAIL */

.course-detail {
    padding: 100px 10%;
    background: rgba(255, 255, 255, 0.5);
}

.course-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.course-text {
    flex: 1 1 500px;
    color: #1F1311;
    animation: fadeLeft 1s;
}

.course-text h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.course-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.course-text h3 {
    margin-top: 20px;
}

.course-text ul {
    padding-left: 20px;
    margin-top: 10px;
}

.course-text li {
    margin-bottom: 8px;
}

/* IMAGE */

.course-image {
    flex: 1 1 400px;
    text-align: center;
    animation: fadeRight 1s;
}

.course-image img {
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    background-color: white;
    transition: 0.4s;
}

.course-image img:hover {
    transform: scale(1.05);
}

/* ANIMATIONS */

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width:900px) {

    .course-container {
        flex-direction: column;
        text-align: center;
    }

    .program-title {
        font-size: 30px;
    }

    .course-text h1 {
        font-size: 30px;
    }

}

/* ============= */
.apply {
    font-size: 18px;
    color: white;
    background-color: #b53c40;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* <!--*********************** Hero SECTION ************************************-->  */

.contect-hero{
  height: 70vh;
  /* background-color: #003366; */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../assets/img/contact.jpg") center/cover no-repeat; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contect-hero h1{
  font-size: 40px;
  color: white;
}

.contect-hero p{
  /* font-size: 18px; */
  color: white;
}


/* <!--*********************** Get In Touch SECTION ************************************-->  */

.in-touch{
  width: 1156px;
  height: 680px;
  margin: 0 auto;
  background-color: #DDE5ED;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.in-touch h1{
  font-size: 44px;
  color: #003366;
  text-align: center;
  padding-top: 40px;
}

.in-touch .data{
  display: flex;
  justify-content: space-between;
  padding: 20px 100px;
}

/* LEFT */

.in-touch .data .left{
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}

.in-touch .data .left h1{
  font-size: 40px;
  color: #003366;
}

.in-touch .data .left p{
  width: 464px;
  font-size: 20px;
  color: #003366;
}

.in-touch .data .left .left-info{
  width: 464px;
  height: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  /* justify-content: space-around; */
  gap: 40px;
  padding: 40px 40px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.in-touch .data .left .left-info .page-icon{
  width: 24px;
  height: 24px;
  color: #b53c40;
  background-color: #d99c9e41;
  padding: 10px;
  border-radius: 27px;
  -webkit-border-radius: 27px;
  -moz-border-radius: 27px;
  -ms-border-radius: 27px;
  -o-border-radius: 27px;
}

.in-touch .data .left .left-info h4{
  font-size: 20px;
  color: #819ab3;
  font-weight: 500;
}

.in-touch .data .left .left-info p{
  width: 300px;
  font-size: 20px;
  color: #003366;
  font-weight: 500;
}


/* RIGHT */

.in-touch .data .right{
  width: 390px;
  height: auto;
}

.in-touch .data .right form{
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* justify-content: space-betw; */
}

.in-touch .data .right form label{
  font-size: 20px;
  color: #003366;
}

.in-touch .data .right form input{
  height: 59px;
  border: none;
  outline: none;
  font-size: 20px;
  padding-left: 20px;

  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.in-touch .data .right form input::placeholder{
  font-size: 20px;
  /* color: #003366; */
}

.in-touch .data .right form .message{
  height: 95px;
}

.in-touch .data .right form button{
  width: 164px;
  height: 59px;
  font-size: 16px;
  color: white;
  background-color: #b53c40;
  border: none;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}


.in-touch .social{
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 360px;
}

.in-touch .social .g-icon{
  width: 16px;
  height: 16px;
  padding: 12px;
  color: #b53c40;
  background-color: white;
  cursor: pointer;
  border-radius: 22.5px;
  -webkit-border-radius: 22.5px;
  -moz-border-radius: 22.5px;
  -ms-border-radius: 22.5px;
  -o-border-radius: 22.5px;
}

