* {
  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 TEAM */

/* ============  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; */
  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: 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 ;
  }

}






