
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
body{
    overflow-x: hidden;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

 /**starting navbar **/
 .header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
    background-color: cornsilk;
    height: 70px;
  }
  
  .header-image {
    width: 550px; /* Adjust width as per your needs */
    margin-top: -8px;
  }
  
  .left-logo {
    position: absolute;
    left: 20px; /* Adjust the distance from the left as needed */
    width: 100px; /* Adjust size of the left logo */
    margin-left: 0px;
  }

/* Optional additional styling */


.mobile-logo {
    /* Any additional styling for the mobile logo */
    width: 50px; /* Adjust size as needed */
}

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 150px;
    transition: .5s;
    margin-top: -50px;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a {
    padding: 8px 15px; /* Adjust as needed */
    box-sizing: border-box;
    
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.dropdown-menu {
    overflow: hidden; /* Or adjust as needed */
}


.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        /* background: var(--bs-primary); */
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        /* height: 12px; */
    }
    .logo{
         width: 150px; /* Set the width to whatever size you want */ /* Ensure aspect ratio is maintained */
         
    }
}
/* Zoom-out effect on hover */
.menu a:hover {
    transform: scale(1.1); /* Zoom-out */
    /* background-color: #2980b9; */
  }
/*** Navbar End ***/


/* social icon */
.icon-btn {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    border-radius: 50%; /* Makes it circular */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* Removes extra padding */
}


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/

/* about insitte */
.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    
    

}

.about-institute {
    background-color: #eee9e9;
    padding: 50px 0;
}

.institute-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -100px;
    margin-bottom: -50px;
}

.institute-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-right: 30px;
    margin-top: 50px;
}

.institute-text {
    max-width: 600px;
    padding-left: 20px;
}

.institute-text h2 {
    font-size: 32px;
    color: green;
    margin-bottom: 20px;
}

.institute-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .institute-content {
        flex-direction: column;
    }

    .institute-image,
    .institute-text {
        padding-left: 0;
    }

    .institute-text {
        margin-top: 20px;
    }
}

/* about insitute end */
/* desk massage */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
}

.message-section {
    display: flex;
    background-color: #fff;
    /* border: 2px solid #2d854e; */
    border-radius: 12px;
    margin: 20px;
    padding: 20px;
    width: 80%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: 130px;
    margin-top: 50px;
}

.profile-image {
    flex: 1;
    padding-right: 20px;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit:contain;
}

.message-content {
    flex: 3;
}

.message-content h2 {
    font-size: 30px;
    color: #2d854e;
    margin-bottom: 20px;
}
.message-content h4 {
    font-size: 20px;
    color: rgb(102, 99, 99);
    margin-bottom: 10px;
    line-height: 1.3;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;
}

.message-content p {
    font-size: 16px;
    color: #706b6b;
    line-height: 1.5;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .message-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        padding: 0;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .profile-image img {
        margin: 0 auto;
    }
}
/* desk massage end */
/* vission-mission start */
/* Section container */
.vision-mission-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa; /* Light background */
    position: relative;
    overflow: hidden;
    height: 300px; /* Adjust height as needed */
}

/* Vision and Mission box styles */
.vision, .mission {
    width: 45%;
    padding: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    background-color: #00d084;
    border-radius: 20px 50px;
    padding: 30px;
    text-align: center;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 30px;
    
}
/* .vision,.mission p{
    color: rgb(71, 70, 70);
    font-size: 16px;
    font-weight: 400;
}

.Vision ,.mission h3 {
     color: rgb(61, 60, 60);
     font-weight: 600; */


/* Hover effect for vision and mission */
.vision:hover, .mission:hover {
    background-color:#16c283; /* Light green background on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Hover-triggered animations for vision and mission */
.vision {
    transform-origin: left
}

.vision:hover {
    animation: hoverSlideInLeft 0.5s forwards;
}

.mission {
    transform-origin: right;
}

.mission:hover {
    animation: hoverSlideInRight 0.5s forwards;
}

/* Keyframes for hover animations */
@keyframes hoverSlideInLeft {
    0% {
        transform: translateX(-10%);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes hoverSlideInRight {
    0% {
        transform: translateX(10%);
        opacity: 0.7;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

/* Animation on scroll for section */
.vision, .mission {
    opacity: 0;
    transform: translateY(50px); /* Start position for scroll effect */
    animation: fadeInOnScroll 2s forwards;
}

/* Keyframes for scroll-based animation */
@keyframes fadeInOnScroll {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* vission-mission end */

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* library background */
.bg-library {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/lb-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-library {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-library {
        padding: 60px 0 60px 0;
    }
}

.bg-library .breadcrumb {
    position: relative;
}

.bg-library .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* admission form */
.bg-admission {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/admiss.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-admission {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-admission {
        padding: 60px 0 60px 0;
    }
}

.bg-admission .breadcrumb {
    position: relative;
}

.bg-admission .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/* admission form end */
/* infrastructure back */
.bg-infrastructure{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/infra-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-infrastructure {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-infrastructure{
        padding: 60px 0 60px 0;
    }
}

.bg-infrastructure .breadcrumb {
    position: relative;
}

.bg-infrastructure.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
.slider-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slider {
    display: flex;
    transition: transform 1s ease;
  }

  .slider-item {
    flex: 0 0 33.33%; /* 3 images per row */
    padding: 5px;
  }

  .slider-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .slider-control {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
  }

  .slider-control.right {
    right: 10px;
    left: auto;
  }


/* offered courses */
.bg-offer{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/courses.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-offer {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-offer{
        padding: 60px 0 60px 0;
    }
}

.bg-offer .breadcrumb {
    position: relative;
}

.bg-offer.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* offered courses end */

/* admission form */
.container4 {
    background-color: #4caf50; /* Fresh green background */
    padding: 40px 20px; /* Increased padding for top and bottom */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.container4 span {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin-bottom: 20px; /* Spacing below the text */
}

.button {
    background-color: #ff5722; /* Vibrant orange button color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 10px; /* Space between buttons */
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    background-color: #e64a19;
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.button .icon {
    margin-right: 8px;
}
/* admission form end */
/* eligiblity */
.bg-eligiblity{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/eligiblity.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-eligiblity {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-eligiblity{
        padding: 60px 0 60px 0;
    }
}

.bg-eligiblity .breadcrumb {
    position: relative;
}

.bg-eligiblity.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* eligiblityy end */
/* computer tech */
.bg-tech{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/computer\ tech.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-tech {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-tech{
        padding: 60px 0 60px 0;
    }
}

.bg-tech .breadcrumb {
    position: relative;
}

.bg-tech.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* computer tech end */
/* civil h */
.bg-civil{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/civilee.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-civil {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-civil{
        padding: 60px 0 60px 0;
    }
}

.bg-civil .breadcrumb {
    position: relative;
}

.bg-civil.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* civil h end */
/* placements start */
.bg-placements{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/placements.jpg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-placements {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-placementsl{
        padding: 60px 0 60px 0;
    }
}

.bg-placements .breadcrumb {
    position: relative;
}

.bg-placements.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* placements end */
/* electronics start */
.bg-electronics{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/electronics1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-electronics {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-electronicsl{
        padding: 60px 0 60px 0;
    }
}

.bg-electronics .breadcrumb {
    position: relative;
}

.bg-electronics.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* electronics end */
/* electrical start */
.bg-electrical{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/electrical2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-electrical {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-electrical{
        padding: 60px 0 60px 0;
    }
}

.bg-electrical .breadcrumb {
    position: relative;
}

.bg-electrical.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* electrical end */
/* mechanical start */
.bg-mechanical{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/mech1.jpg );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-mechanical {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-mechanical{
        padding: 60px 0 60px 0;
    }
}

.bg-mechanical .breadcrumb {
    position: relative;
}

.bg-mechanical.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* mechanical end */
/* science and humanities */
.bg-science{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/scie.jpg );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-science {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-science{
        padding: 60px 0 60px 0;
    }
}

.bg-science .breadcrumb {
    position: relative;
}

.bg-science.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* science and Humanities end */
/* galery start */
.bg-gallery{
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/gallery.jpg );
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-gallery {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-gallery{
        padding: 60px 0 60px 0;
    }
}

.bg-gallery .breadcrumb {
    position: relative;
}

.bg-gallery.breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/* gallery end */
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.feature-icon {
    text-align: center;
    font-size: 1.2em;
    color: #00d084; /* Green color for both icon and text */
}

.feature-icon i {
    font-size: 3em; /* Icon size */
    color: #00d084; /* Icon color */
    margin-bottom: 10px;
}

.feature-icon p {       
    margin: 0;
    color:#00d084; /* Text color */
    font-weight: bold;
}
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
/* .offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--b
    
    
    
    s-white);
} */

/* Facility Section Styles */
.facility-section {
    padding-left: 70px;
    padding-right: 70px;
}

/* Header Styles */
.facility-header {
    max-width: 800px;
    margin-top: -50px; /* Moved from inline */
}

.facility-header h4 {
    color: #00d084; /* Assuming .text-primary is #00d084 */
    margin-top: -50px; /* Adjusted if needed */
}

.facility-header h1 {
    font-size: 35px; /* Moved from inline */
    margin-top: 2px; /* Moved from inline */
    color: rgb(41, 40, 40); /* Moved from inline */
}

.facility-header .highlight {
    color: green;
}

.styled-quote {
    /* Add your quote styling here if not already defined */
    color: rgb(180, 172, 172);
    font-family: sans-serif;
}

/* Heading Styles */
.facility-section h1 {
    color: #00d084;
    padding-bottom: 30px;
    margin-top: -30px;
}

.facility-section h3 {
    color: #00d084;
    font-weight: 500;
}

/* Facility Content Layout */
.facility-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: -10px; /* Moved from inline */
}

.facility-column {
    flex: 1;
    padding: 0 15px;
}

.facility-item {
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #ffffff;
    opacity: 0; /* Initial opacity for animation */
    animation: fadeIn 1s forwards; /* Animation on load */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Combine hover-effect */
}

/* Hover Effect */
.facility-item:hover {
    transform: translateY(-20px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title and Description Styling */
.facility-title {
    font-size: 22px;
    color: #333333;
}

.facility-description {
    color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .facility-header {
        margin-top: -30px; /* Adjusted for mobile */
    }

    .facility-header h1 {
        font-size: 28px; /* Reduced for mobile */
    }

    .facility-header h4 {
        margin-top: -30px; /* Adjusted if needed */
    }

    .facility-content {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Reduced gap for mobile */
        margin-top: 10px; /* Adjusted for mobile */
    }

    .facility-item {
        padding: 15px;
    }

    .facility-title {
        font-size: 20px; /* Smaller for mobile */
    }

    .facility-description {
        font-size: 14px; /* Smaller for mobile */
    }

    /* Adjust Hover Effect for Mobile (Optional) */
    .facility-item:hover {
        transform: translateY(0); /* Disable lift on mobile */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}



/*** Offer End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-white);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, .1);
    transition: 0.5s;
}

.blog .blog-item a {
    transition: 0.5s;
}

.blog .blog-item:hover a:hover {
    color: var(--bs-primary);
}

.blog .blog-item .blog-img {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 208, 132, 0.1);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    opacity: 1;
}

.blog .blog-item .blog-img .blog-title {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 5;
}

.blog .blog-item .blog-img .blog-title a {
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img .blog-title a:hover {
    color: var(--bs-dark);
}

.blog-carousel .owl-stage-outer {
    margin-top: 58px;
}

.blog .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.blog .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** FAQs Start ***/
/* Default Styles for Desktop (Large Screens) */
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary); /* Default button color */
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark); /* Color when the accordion item is collapsed */
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Adjust button color on mobile */
    .faq-section .accordion .accordion-item .accordion-header .accordion-button {
        color: var(--bs-dark); /* Change button color for mobile */
        font-size: 16px; /* Decrease font size for mobile */
    }

    /* Change the color when the button is collapsed */
    .faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
        color: var(--bs-secondary); /* Adjust collapsed color on mobile */
    }

    /* Adjust accordion body padding */
    .faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
        padding: 15px; /* Adjust padding for mobile */
    }

    /* Accordion container padding on mobile */
    .faq-section .accordion {
        padding: 15px; /* Add padding for mobile responsiveness */
    }

    /* Adjust heading sizes for mobile */
    .faq-section .text-center h1 {
        font-size: 28px; /* Decrease the main header font size for mobile */
    }

    .faq-section .text-center p {
        font-size: 16px; /* Decrease the paragraph font size for mobile */
    }

    /* Accordion section image adjustments */
    .faq-section .col-lg-6 .img-fluid {
        height: auto; /* Allow the image to resize according to screen width */
        max-width: 100%; /* Ensure the image doesn't overflow */
        border-radius: 20px; /* Adjust border-radius for mobile */
    }

    /* Accordion collapse button padding */
    .faq-section .accordion-button {
        padding: 10px 15px; /* Adjust button padding for smaller screens */
    }
    
    /* Stacking layout for smaller screens */
    .faq-section .row {
        flex-direction: column-reverse; /* Stack image and accordion on top of each other */
    }
}

/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 2px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
    
}

.modal-body img {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: transform 0.2s;
}

.modal-body img:hover {
    transform: scale(1.05);
}

/* Optional animation for the initial gallery thumbnail */
.team-img img {
    transition: transform 0.3s ease-in-out;
}

.team-img img:hover {
    transform: scale(1.1);
}

.team-title .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: blue;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/



/* infrastructure  start */
.card-hover {
    background-color: #ffffff; /* White card background */
    border: 1px solid #d4e157; /* Light green border */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    padding-top: 20px;    
    padding-bottom: 20px;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #c8e6c9; /* Light green background on hover */
}

#infrastructure h2 {
    color: #388e3c; /* Dark green */
    text-transform: uppercase;
    font-weight: bold;
}

.card-title {
    color: #388e3c; /* Dark green for card titles */
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
    color: #6c757d; /* Neutral gray for card text */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-hover {
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: calc(0.1s * var(--delay));
}

/* infrastrucure end */
/* liabrary start */
h2 {
    color: #388e3c;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.library-card {
    background-color: #ffffff;
    border: none;
    padding: 30px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.library-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #e8f5e9; /* Greenish background on hover */
}

.icon {
    font-size: 3rem;
    color: #15b91d;
    position: absolute;
    top: 10px;
    right: 20px;
    /* opacity: 0.1; */
    transition: opacity 0.3s ease;
}

.library-card:hover .icon {
    opacity: 0.3;
}

.library-card h5 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.library-card p {
    color: #6c757d;
    font-size: 1rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    color: #6c757d;
    margin-bottom: 5px;
}

ul li strong {
    color: #388e3c;
}

/* Scroll Animation */
.library-card {
    opacity: 0;
    animation: slideIn 1s forwards;
    animation-delay: calc(0.1s * var(--delay));
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* liabrary end */
/* footer start */
/* Footer Styling */
/* General Footer Styling */
footer {
    background-color: #17303B;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.footer-section {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: white;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: gray;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #00d084;
}

.logo-section .logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
    margin-left: 25px;
}

.footer-section h1 {
    font-size: 18px;
    color: white;
}

/* Contact Section Styling */

/* General styles for all devices */
.info-form-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.information,
.contact-form {
    flex: 1;
}

.information h4,
.contact-form h4 {
    text-align: center;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.info-item p {
    margin: 0;
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-form button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: darkgreen;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .info-form-section {
        flex-direction: column;
    }

    .contact-form h4 {
        padding-left: 0;
    }

    .information {
        margin-bottom: 20px;
    }

    .info-item i {
        font-size: 40px; /* Reduce icon size for smaller screens */
    }

    .contact-form label {
        font-size: 0.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.8rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}


.contact-container {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: gray;
    gap: 8px; /* Adds spacing between contact items */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    max-width: 100%; /* Prevents overflow */
    word-wrap: break-word; /* Ensures long text wraps */
}

.contact-icon {
    font-size: 20px;
    color: #00d084;
    margin-right: 8px;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    overflow-wrap: break-word; /* Wraps long words in links */
}

.contact-link:hover {
    color: #00b3b3;
}

/* Compact Footer Bottom Section */
.footer-bottom {
    background-color: #0F2027;
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
}

.footer-bottom a {
    color: #00d084;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        max-width: 100%;
    }

    .contact-container {
        align-items: flex-start;
        text-align: center;
    }

    .contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 4px;
    }

    .contact-link {
        font-size: 14px;
        white-space: normal; /* Allows text to wrap */
    }
}


/* footerr end */

/* Default styling for desktop view */
/* CSS styling */
#map-container {
    width: 100%; /* Full-width for the container */
    height: 400px; /* Adjust height as needed */
    margin-right: 0; /* Reset margin for responsive layout */
}

iframe {
    width: 100%; /* Make iframe full-width */
    height: 400px; /* Keep the height consistent */
}

@media (man-width: 768px) {
    /* For desktop view */
    #map-container {
        width: 200px; /* Or your preferred desktop width */
        height: 400px;
        margin-right: 300px;
    }

    iframe {
        width: 1350px;
        height: 400px;
    }
}









/* eligiblity */
.eligibility-section {
    padding: 50px 20px;
    background-color: #fff;
    /* border-top: 5px solid #27ae60; Green border at the top */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #27ae60; /* Green title */
    margin-bottom: 40px;
    position: relative;
    animation: fadeInTitle 1s ease-in-out;
}

.criteria-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.criteria {
    flex: 1 1 30%;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 5px solid transparent;
}

/* .criteria:hover {
    /* background-color: #27ae60; /* Green hover background */
    /* transform: translateY(-10px);
    border-left: 5px solid white; White border on hover */


.criteria h3 {
    font-size: 1.5em;
    color: #27ae60; /* Green heading */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.criteria:hover h3 {
    color: #27ae60; /* White text on hover */
}

.criteria p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.criteria:hover p {
    color: #666; /* White text on hover */
}

@media (max-width: 768px) {
    .criteria {
        flex: 1 1 100%;
    }
}

/* Animation for section title */
@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* eligiblity end */

.documents-section {
    padding: 50px 20px;
    background-color: #fff;
    /* border-top: 5px solid #27ae60; Green border at the top */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #27ae60; /* Green title */
    margin-bottom: 20px;
    position: relative;
    animation: fadeInTitle 1s ease-in-out;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.2em;
}

.document-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.document-item {
    flex: 1 1 45%;
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-left: 5px solid transparent;
}

/* .document-item:hover {
    background-color: #27ae60; /* Green hover background */
    /* transform: translateY(-10px);
    border-left: 5px solid white; /* White border on hover */


.document-item h3 {
    color: #27ae60; /* Green heading */
    font-size: 1.5em;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.document-item:hover h3 {
    color: #27ae60; /* White text on hover */
}

.document-item ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #666;
}

.document-item ul, .document-item li, .document-item p {
    font-size: 1em;
    color: #333; /* Darker text color for better visibility */
    margin-bottom: 10px;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 1; /* Ensure full opacity */
}

/* On hover: text turns white */
.document-item:hover ul, .document-item:hover li, .document-item:hover p {
    color: #666; /* White text on hover */
}

@media (max-width: 768px) {
    .document-item {
    
        flex: 1 1 100%;
    }
}

/* Animation for section title */
@keyframes fadeInTitle {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* admission Process */
.admission-process-section {
    padding: 50px 20px;
    background-color: #ffffff;
    /* border-top: 5px solid #27ae60; Green border at the top */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    color: #27ae60; /* Green Title */
    margin-bottom: 30px;
}

.process-content, .centralized-allotment {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* .process-content:hover, .centralized-allotment:hover {
    background-color: #27ae60;
    transform: translateY(-5px);
    color: #ffffff;
} */

.process-heading {
    font-size: 1.5em;
    color: #27ae60;
    margin-bottom: 15px;
}

.process-content:hover .process-heading, .centralized-allotment:hover .process-heading {
    color: #27ae60;
}

.process-text {
    font-size: 1.0em;
    color: #666;
    margin-bottom: 15px;
}

.process-content:hover .process-text, .centralized-allotment:hover .process-text {
    color: #666;
}

ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

ul li {
    font-size: 1.0em;
    color: #666;
    margin-bottom: 10px;
}

ul li:hover {
    color: #666;
}

.note {
    font-style: italic;
    color: #555;
    font-size: 17px;
}

.centralized-allotment:hover ul li, .centralized-allotment:hover .note {
    color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .process-content, .centralized-allotment {
        padding: 15px;
    }

    .section-title {
        font-size: 2em;
    }
}
/* admission Process end */
.fees{
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fees{
    background-color: #27ae60;
    transform: translateY(-5px);
    color: #ffffff;
}


/* admissions sraert */
.container {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.info-form-section {
    display: flex;
    justify-content: space-between;  /* Makes the two sections move apart to opposite sides */
    width: 80%;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.information, .contact-form {
    width: 60%;  /* Ensures both columns take up equal width */
}

h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: #4CAF50;
    font-size: 50px;
    margin-right: 15px;
}

.info-item p {
    font-size: 16px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #45a049;
}

/* admissions end  */


/* intake */
.info-container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    max-width: 1000px;
    margin: 20px auto;
}

.info-item2 {
    display: flex;
    align-items: center;
    text-align: center;
}

.icon1 img {
    width: 40px;
    margin-right: 15px;
}

.details {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 17px;
    color: #7a7979;
}

.value {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.intake {
    color: #28a745; /* Green color for intake number */
}

.apply-button {
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #e68900;
}


/* General Styles (Unchanged for Desktop) */
.container2 {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping for sections */
    gap: 30px; /* Spacing between sections */
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .container2 {
        display: flex;
        flex-direction: column; /* Stack sections vertically */
        gap: 20px; /* Consistent spacing between sections */
        padding: 10px; /* Add padding for mobile view */
    }

    .message-section {
        display: flex;
        flex-direction: column; /* Stack image and content vertically */
        align-items: center; /* Center align for mobile */
        text-align: center; /* Center text for better alignment */
        width: 100%; /* Full width for mobile */
        padding: 10px 0; /* Space within sections */
        margin: 0 auto; /* Center the content */
    }

    .profile-image {
        margin-bottom: 15px; /* Add space below the profile image */
    }

    .profile-image img {
        width: 100%; 
        max-width: 120px; /* Restrict image size for mobile */
        height: auto;
        border-radius: 50%; /* Circular image */
        margin-bottom: 10px;
    }

    .profile-image h4 {
        font-size: 16px; /* Smaller heading for mobile */
        margin: 5px 0;
    }

    .profile-image p {
        font-size: 14px; /* Smaller subtext for mobile */
    }

    .message-content {
        font-size: 14px; /* Adjust font size for readability */
        line-height: 1.6; /* Improve line spacing */
        padding: 0 10px; /* Add padding for mobile */
        width: 100%;
    }

    .message-content h5 {
        font-size: 18px; /* Adjust heading size for mobile */
        color: #007bff; /* Keep primary color */
        margin-bottom: 15px;
    }
}

/* Additional Adjustments for Very Small Screens */
@media (max-width: 576px) {
    .container2 {
        padding: 5px;
    }

    .profile-image img {
        max-width: 100px; /* Smaller image for very small screens */
    }

    .message-content h5 {
        font-size: 16px; /* Reduce heading size */
    }

    .message-content {
        font-size: 13px; /* Smaller font for very small screens */
    }
}


/* vission computer */
.about-section {
    padding: 50px;
    background-color: #ffffff;
    border-bottom: 2px solid #e0e0e0; /* Adds a border at the bottom for separation */
    max-width: 1200px;
    margin: 20px auto;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.vision-section, .mission-section {
    flex: 1;
}

.h2vission{
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    border-left: 5px solid #75afec; /* Adds a colored vertical line next to the heading */
    padding-left: 15px; /* Padding to separate the text from the border */
    border-left: 5px solid #75afec; /* Adds a colored vertical line next to the heading */
}

p {
    font-size: 18px;
    /* color: #555; */
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
}
/* computer infrasrcture */
.computer-tech-section {
    padding: 50px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 20px auto;
}

.section-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.facility-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.facility {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.facility:hover {
    transform: translateY(-10px); /* Hover effect */
}

.facility-image4 img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.facility-info h3 {
    font-size: 24px;
    color: #007BFF;
    margin-bottom: 10px;
}

.facility-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .facility {
        flex: 1 1 100%;
    }
}


/* Desktop View - Default */
.info-container2 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Mobile View */
@media (max-width: 768px) {
    .info-container2 {
        display: grid; /* Switch to grid layout */
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 15px; /* Space between items */
    }

    .info-item2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .icon1 img {
        width: 40px;
        height: auto;
        margin-bottom: 10px;
    }

    .details {
        text-align: center;
    }

    .details .label {
        font-size: 14px;
        font-weight: bold;
    }

    .details .value {
        font-size: 16px;
    }

    .apply-button {
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 16px;
        background-color: #4caf50;
        color: white;
        border-radius: 8px;
        text-decoration: none;
    }
}
.curriculum-scheme-table th, 
.curriculum-scheme-table td {
    white-space: wrap; /* Prevent text wrapping */
}

@media (max-width: 576px) {
    .curriculum-scheme-section h4 {
        font-size: 28px; /* Adjust heading size for mobile */
    }
}


/* Custom styling for the syllabus section */
.syllabus-table-section h2 {
    color: #00d084;
    font-weight: bold;
    margin-top: -80px;
 
}

/* Table styling */
.syllabus-table {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.syllabus-table th {
    background-color: rgb(22, 22, 148);
    color: white;
    font-weight: bold;
}

.syllabus-table td, .syllabus-table th {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

/* Row hover effect */
.syllabus-table tbody tr:hover {
    background-color: #e2e6ea;
    transition: background-color 0.3s ease;
}

/* PDF link styling */
.pdf-link {
    color: #d9534f;
    font-weight: 600;
    text-decoration: none;
}

.pdf-link:hover {
    color: #c9302c;
    text-decoration: underline;
}

.pdf-link i {
    margin-left: 5px;
    font-size: 1.1em;
}
/* sample question */
/* Custom styling for the single question paper section */
.single-question-paper h2 {
    color: #4a90e2;
    font-weight: bold;
}

/* Single card design for the question paper */
.question-paper-single-card {
    border: 1px solid #4a90e2;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    background-color: #f5f8fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.question-paper-single-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Button styling */
.download-question-paper-btn {
    background-color: #4a90e2;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
}

.download-question-paper-btn:hover {
    background-color: #357abd;
    color: #fff;
    text-decoration: none;
}

/* Icon styling */
.download-question-paper-btn i {
    margin-left: 5px;
    font-size: 1.1em;
}
/* gallery start */
.gallery-main {
      padding: 40px 0;
      text-align: center;
    }
    .gallery-topic {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }
    .gallery-topic img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
    }
    .gallery-topic:hover img {
      transform: scale(1.05);
    }
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      width: 100%;
      padding: 10px;
      text-align: center;
    }
    .gallery-topic {
        position: relative;
      }
      
      .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        text-align: center;
        padding: 10px;
      }
      
      .overlay-button {
        display: inline-block;
        margin-bottom: 5px; /* Adjust spacing between button and text */
        background-color: rgb(202, 62, 6);
        color: white;
        border: none;
        padding: 5px 10px;
        font-size: 14px;
        cursor: pointer;
      }
      
      .overlay-button:hover {
        background-color: green;
      }
      
/* gallery end */

/* training and placements start */
/* Header Section */
/* .header {
    background-color: #3498db;
    color: white;
    text-align: center;
    padding: 50px 0;
  }
  
  .header h1 {
    margin: 0;
    font-size: 48px;
  }
  
  .header p {
    font-size: 20px;
  }
   */
  /* Introduction Section */
  .introduction {
    padding: 50px;
    text-align: center;
    
  }
  
  .introduction h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .introduction p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    
  }
  
  /* Training Programs Section */
  .training {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
  }
  
  .training h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  
  .training-programs {
    display: flex;
    justify-content: space-around;
  }
  
  .program {
    background-color: white;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .program h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .program p {
    font-size: 16px;
    color: #777;
  }
  
  /* Placement Statistics Section */
  .placement-stats {
    padding: 50px;
    text-align: center;
  }
  
  .placement-stats h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-transform: capitalize;
  }
  
  .stats {
    display: flex;
    justify-content: space-around;
  }
  
  .stat-box {
    background-color: white;
    padding: 20px;
    width: 30%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .stat-box h3 {
    font-size: 24px;
  }
  
  .stat-box p {
    font-size: 18px;
    color: #555;
  }
  
  /* Recruiters Section */
  .recruiters {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
  }
  
  .recruiters h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: capitalize;
  }
  
  .recruiters-logos img {
    margin: 0 20px;
    max-width: 150px;
  }

  /* General styles for better spacing and alignment */
section {
    padding: 15px;
    margin: 0 auto;
  }
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    .introduction h4, .training h4, .placement-stats h4, .recruiters h4 {
      font-size: 28px; /* Adjust heading size for mobile */
      text-align: center; /* Center headings */
    }
  
    .introduction p, .training-programs .program p, .placement-stats .stat-box p {
      font-size: 14px; /* Smaller font size for better readability on small screens */
      text-align: center; /* Better alignment for paragraphs */
    }
  
    .training-programs, .stats, .recruiters-logos {
      display: flex;
      flex-direction: column; /* Stack items vertically */
      align-items: center; /* Center align content */
      gap: 15px; /* Add spacing between items */
    }
  
    .training-programs .program, .stats .stat-box {
      width: 90%; /* Reduce width for better fit on mobile screens */
      text-align: center; /* Center align program content */
      padding: 10px;
      border: 1px solid #ddd; /* Optional styling for sections */
      border-radius: 5px;
    }
  
    .recruiters-logos img {
      max-width: 100px; /* Ensure logos fit within mobile screens */
      height: auto;
      margin: 10px; /* Add spacing around logos */
    }
  }
  
  
  
/* training and placements end */
/* whhats up button  */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}



/* whats up button end */







/* responsive mode */
.topbar a {
    font-size: 0.9rem;
}

/* Smaller screens adjustments */
@media (max-width: 576px) {
    .header-container img.header-image {
        width: 100%; /* Make the header image full-width on small screens */
    }
    .topbar .text-muted i {
        font-size: 0.8rem;
    }
    .topbar .btn {
        padding: 0.3rem 0.5rem;
    }
}

/* navbar responsive */
/* Adjustments for mobile responsiveness */
/* @media (max-width: 576px) {
    .navbar-brand img.left-logo {
        width: 120px; /* Smaller logo on mobile */
    */
    .navbar-nav .nav-item .nav-link {
        font-size: 0.9rem; /* Smaller font for links on mobile */
    }
    .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }


/* crousal start reponsive */
/* Responsive adjustments for carousel content */
@media (max-width: 768px) {
    .carousel-caption .text-start {
        margin-top: -50px; /* Reduce the negative margin on smaller screens */
    }
    .carousel-caption h1 {
        font-size: 1.75rem; /* Smaller font size for the main heading on mobile */
    }
    .carousel-caption p {
        font-size: 1rem; /* Smaller font size for the paragraph on mobile */
    }
    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption .text-start {
        margin-top: -20px; /* Further reduce margin on very small screens */
        text-align: center; /* Center-align text for a cleaner layout */
    }
    .carousel-caption h4, .carousel-caption h1, .carousel-caption p {
        text-align: center;
    }
    .d-flex.justify-content-start {
        justify-content: center; /* Center-align buttons on small screens */
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .carousel-caption .btn {
        width: 100%; /* Full-width buttons on mobile for better touch accessibility */
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

/* responsive styles about */
/* Base styles for the "About Us" section */
    .about h1 {
        font-size: 2rem;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .about h1 {
            font-size: 1.75rem;
        }
        .about h3 {
            font-size: 1.5rem;
        }
        .about p {
            font-size: 1rem;
        }
        .col-xl-7, .col-xl-5 {
            flex: 1 1 100%;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .about h1 {
            font-size: 1.5rem;
        }
        .about h3 {
            font-size: 1.25rem;
        }
        .about p {
            font-size: 0.95rem;
        }
        .about .btn {
            font-size: 0.9rem;
            padding: 0.6rem 1.5rem;
        }
        .about img {
            height: auto;
            width: 100%;
        }
    }

    @media (max-width: 576px) {
        .about h4.display-6 {
            font-size: 1.25rem;
        }
        .about .container {
            padding: 1rem;
        }
        .about .row {
            flex-direction: column;
            text-align: center;
        }
        .about img {
            height: auto;
            width: 100%;
        }
    }


    
/* Mobile Header Styling (Visible only on mobile) */
.mobile-header {
    background-color: #ffffff;
    border-bottom: 2px solid #eee;
}

/* Mobile Logo Styling */
.logo-mobile {
    width: 60px; /* Adjust logo size as needed */
    height: auto;
}

/* College Name Styling */
.college-name {
    color: #0056b3; /* College name color */
    font-size: 1.1rem;
    font-weight: bold;
}

/* Address, Phone, and Email Styling */
.address, .phone, .email {
    font-size: 0.9rem;
}

/* Link Styling for Phone and Email */
.phone a, .email a {
    color: #d9534f; /* Red color for contact info links */
    font-weight: bold;
    text-decoration: none;
}

.phone a:hover, .email a:hover {
    text-decoration: underline;
}

/* top bar start */
    
        /* Increase icon size and reduce line height on mobile */
        @media (max-width: 768px) {
            .topbar .text-muted i {
                font-size: 1.5rem; /* Increase icon size */
            }
            .topbar .text-muted {
                line-height: 1.2; /* Reduce line height */
            }
        }
    
        .styled-quote {
            
            
            color: #555; /* or your preferred color */
            quotes: "“" "”";    
            line-height: normal;
            margin-top: -30px;
        }
        
        .styled-quote::before {
            content: open-quote;
            font-size: 1.5em;
            vertical-align: text-top;
            color: #4115b8; /* adjust for emphasis */
        }
        
        .styled-quote::after {
            content: close-quote;
            font-size: 1.5em;
            vertical-align: text-bottom;
            color: #4115b8 ; /* adjust for emphasis */
        }
        
        