/* Reset default browser styles */
* {
    margin: 0px;
    padding: 0px;
    /*box-sizing: border-box;*/
}

/* Global styles */
body {
    margin-left:4px ;
    font-family: Arial, sans-serif;
    /*line-height: auto;*/
    background-color: #f0f0f0;
    font-size: 25px;
    /* margin-bottom: 10px; */
}
h1,h2,h3{
    text-align: center;
    font-size: auto;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  p, li {
    font-size: 16px;
  }

  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }
}



/* by jeky */
.all{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
}
  
   .all > div { 
     background-color: #fbf4f4de;
    width: 100%;
     /* margin: 10px;  */
    /* text-align: center; */
    
  } 
  
header {
    /* position: fixed; */
      /*  yh use nhi krna h display flex use krna h yani float use nhi krna h */ */
    width: 100%;
    top: 0;
    background-color:chocolate;
    color: #fff;
    padding: 10px;
    /* z-index: 1000; */
    display: flex;
    justify-content: space-between;
    align-content: center;
}

/* header #logo {
    float: left;
} */

header #logo img {
    height: 50px; /* Adjust according to your logo */
    width: 50px;
    margin-left: 1px;
}

.toggle-btn {
    position:absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

.toggle-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s;
}
#college_banner {
    /*object-fit: contain;*/
    display:block;
    width:100%;
}
.Container1{
    position:relative;
    display: inline-block;
}
.overlay-text{
    position: absolute;
    top: 10%;
    left:10%;
    text-align: center;
    /*transform: translateY(100%);*/
    /*transition: transform 0.5s ease;*/
    animation: moveLeft 12s linear infinite;;
    
    
}

@keyframes moveLeft{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Hide sidebar by default */
    width: 250px;
    height: 100%;
    background-color: #333;
    transition: left 0.4s ease-in-out;
    z-index: 999;
}

.sidebar ul {
    list-style: none;
    padding: 20px;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.sidebar ul li a:hover {
    color: #f39c12;
}
.sidebar.open {
    left: 0;
}
.toggle-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.toggle-btn.open span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}






/* images slides start from here */
/* Slider Container */
#slider-container {
    width: 100%;
    max-width: 1920px;
    /* max-height:auto; */
    margin: 2px;
    margin-top: 0px;
    position:relative; 
     overflow:hidden; 
    display: flex;
    border-radius: 10px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.2);
}

/* Slide Images */
.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}
.slides {
    display: flex;
    /* position: absolute; */
    /* overflow: hidden; */
    width: 100%; /* 3 images */
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    /* overflow: hidden; */
     /* height: 400px; */
       
    border-radius: 1px;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 25px;
    border-radius: 5px;
}

.prev { left: 0px; }
.next { right: 0px; }

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* .container {height:1080px;
    width:1920px;
    /* width: 100%; */
    /* max-width:1250px; */
    /* margin: 0 auto;
    padding: 0px; */
    /* background-color: chocolate; */
    /*.ṁṇ,mb height: 100%; */
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */

/* .container2 .container3 container3 container4 container5 container6{margin-left: 20px; */





.fees_structure{
    max-width: 1920px;
     width: 100%;/*it will takes 100% of container */
  }
  .pyq{
    margin: 20px;
  }
  .pyq h1, .pyq h2{
    text-align: center;
  }
/* section h1 {
    font-size: 1.3em;
    margin-bottom: 0px;
}

section p {
    font-size: .8em;
}

section {
    padding: 0px 0;
} */

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 0px;
    position:relative;
    margin-top: 14px;
    width: 100%;
    bottom: 0px;
    /* height: 50px; */
}

footer p {
    font-size: .8em;
}

/* Responsive design */
/* @media (max-width: 768px) {
    header {
        padding: 5px 0;
    }

    header #logo img {
        height: 40px;
    }

    header nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    section#slider-container {
        padding: 80px 0;
    }

    section h {
        font-size: 2.5em;
    }

    section p {
        /* font-size: 1em; */
    
