
@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

 

body, h1,h2,h3,h4,h5,h6,p,a,li,ol,ul {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica';
}


.section-padding{
  padding: 60px 0;
}

.section-heading{
    font-size: 40px;
    font-weight: 700;
}

.section-para{
    font-size: 18px;
    font-weight: 400;
}

/*scorlarship btn*/
.button {
  background-color: #211D70;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: none;
  color: #FFFFFF;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 20px;
  text-align: center;
  text-decoration: none;
  animation: glowing 1500ms infinite;
  position: absolute;
  top: 0;
  right: 7%;
  display: flex;
  gap: 10px;
  cursor: pointer;
  z-index: 999;
}
@keyframes glowing {
  0% {
    box-shadow: 0 4px 6px rgba(33, 29, 112, 0.6);
  }
  50% {
    box-shadow: 0 8px 20px rgba(33, 29, 112, 1);
  }
  100% {
    box-shadow: 0 4px 6px rgba(33, 29, 112, 0.6);
  }
}

/*header css start*/
.header {
    background: #F0F0F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: hsla(0 0% 0% / 0.1) 0 0.5rem 1rem;
}

.header .navbar {
    position: relative;
}

.header .navbar-brand img {
    width: 100%;
    height: auto;
    max-width: 80%;
}

.header .navbar-nav .nav-link {
    color: #333132;
    font-size: 16px;
    font-weight: 400;
    padding: 0 16px;
}
.navbar-toggler:focus{
    box-shadow: none;
}

.header .navbar-nav .nav-link:hover {
    color: #000;
    font-weight: 500;
}

.header .apply-btn {
    background: #FCB017;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 30px !important;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .navbar-brand{
    width: 15%;
}

.header .custom-toggler {
    width: 26px;
    height: 20px;
    position: relative;
    border: none;
    background: none;
    margin-left: 10px;
}

.header .custom-toggler span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: .3s ease;
}

.header .custom-toggler span:nth-child(1) { top: 0; }
.header .custom-toggler span:nth-child(2) { top: 9px; }
.header .custom-toggler span:nth-child(3) { top: 18px; }

.header .custom-toggler.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.header .custom-toggler.active span:nth-child(2) {
    opacity: 0;
}
.header .custom-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

@media (max-width: 991px) {

    .header .mobile-actions {
        display: flex;
        align-items: center;
        /*gap: 14px;*/
    }

    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        padding: 20px 0;
        z-index: 999;
    }

    .header .navbar-nav {
        text-align: center;
    }

    .header .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }
}



/*scroll text css*/
        .notice-bar-container {
            width: 100%;
            background-color: #ffffff;
            border-top: 1px solid #808285;
            border-bottom: 1px solid #808285;
            overflow: hidden;
            padding: 12px 0;
            position: relative;
            display: flex;
            align-items: center;
        }

        .notice-bar-container .scrolling-wrapper {
            display: flex;
            white-space: nowrap;
            will-change: transform;
            animation: continuousScroll 40s linear infinite; 
        }

        .notice-bar-container .notice-text {
            color: #ED1C24; 
            font-size: 12px;
            font-weight: 400;
            padding-right: 50px;
            font-family: Arial, sans-serif;
        }

        .notice-bar-container .notice-text a {
            color: #ED1C24;
            text-decoration: underline;
        }

        /* Animation Keyframes */
        @keyframes continuousScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Scrolls exactly half the total width */
        }

        /* Pause on hover (Optional, remove if you want it to never stop) */
        .notice-bar-container .notice-bar-container:hover .scrolling-wrapper {
            animation-play-state: paused;
        }



/*banner section css start*/
.m-banner{
  display: none;
  width: 100%;
}

.d-banner{
  width: 100%;
}

.banner-content-wrapper{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.bitsat-banner-section{
  position: relative;
}

.banner-content-wrapper h1{
  color: #211D70;
  font-size: 80px;
  font-weight: 700;
  padding-bottom: 10px;
}

.banner-content-wrapper h2{
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  padding-bottom: 40px;
}

.apply-btn{
  background: #FCB017;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding: 10px 40px;
  text-decoration: none;
  cursor: pointer;
}

.download-btn{
  background: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  padding: 10px 40px;
  text-decoration: none;
  cursor: pointer;
}

.banner-btns-wrapper{
  display: flex;
  gap: 20px;
}


.banner-btns-wrapper a,
.header .apply-btn,
.bitsat-steps .apply-btn, 
.scholarship-section .btn-bits,
.campus-section .cutoff-btn{
    transition: background-color 0.2s;
}

.banner-btns-wrapper a span,
.header .apply-btn span,
.bitsat-steps .apply-btn span,
.scholarship-section .btn-bits span,
.campus-section .cutoff-btn span{
    transition: transform 0.5s ease-in-out;
    display: inline-block;
}

.banner-btns-wrapper a:hover span,
.header .apply-btn:hover span,
.bitsat-steps .apply-btn:hover span,
.scholarship-section .btn-bits:hover span,
.campus-section .cutoff-btn:hover span{
    transform: scale(1.1);
}



/*sessions css start*/
        .session-section {
            background: #fff;
            padding: 50px 0;
        }

        .session-section .session-card {
            background: #e6f6fc;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 40px;
        }
        .session-section .session-card:last-child{
            margin-bottom: 0;
        }

        .session-section .session-title {
            font-weight: 700;
            color: #211D70;
            margin: 0;
        }
        .session-section .session-inner{
            display: flex;
            gap: 90px;
        }

        .session-section .label {
            font-size: 16px;
            color: #4D4D4F;
            font-weight: 400;
            margin-bottom: 2px;
        }

        .session-section .value {
            font-size: 18px;
            font-weight: 700;
            color: #000;
            margin: 0;
        }

            .session-section .session-card {
                display: flex;
                gap: 90px;
                padding: 28px 62px;
            }

            .session-section .session-info {
                margin-bottom: 0;
            }


/* about bitysat css start */
.about-bitsat-section {
    background-color: #F0F0F0;
    padding-top: 60px;
}

.about-bitsat-section .about-title {
    font-weight: 700;
    color: #211D70;
    margin-bottom: 20px;
}

.about-bitsat-section .about-text {
    line-height: 26px;
    color: #4D4D4F;
    font-weight: 400;
    max-width: 900px;
}

.about-bitsat-section .about-content {
    padding-bottom: 60px;
}

.about-bitsat-section .about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*important timeline section start*/
.timelines-section {
    background-color: #F0F0F0;
}

.timelines-section .timeline-title {
    font-weight: 700;
    color: #211D70;
}

.timelines-section .timeline-subtitle {
    color: #4D4D4F;
    max-width: 650px;
    margin: 10px auto 0;
}

.timelines-section .timeline-card {
    border-top: 1px solid #000;
    padding: 30px 0 40px;
}

.timelines-section .timeline-number {
    font-size: 32px;
    font-weight: 700;
    color: #76C2E5;
    display: block;
    margin-bottom: 12px;
}

.timelines-section .timeline-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #211D70;
    margin-bottom: 8px;
}
.timelines-section .m-text{
    display: none;
}

.timelines-section .timeline-date {
    font-size: 18px;
    font-weight: 400;
    color: #211D70;
    margin-bottom: 12px;
}

.timelines-section .timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4D4D4F;
    font-weight: 400;
}

/*bitsat steps section*/
.bitsat-steps{
    background: #fff;
}
.bitsat-steps .section-title {
  font-weight: 700;
  color: #211D70;
}

.bitsat-steps .step-wrapper {
  position: relative;
   display: flex;
}

/* Horizontal line (Desktop only) */
  .step-wrapper::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0%;
    right: 0%;
    height: 1px;
    background: #333132;
  }

.bitsat-steps .step-item {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
    width: 25%;

}

.bitsat-steps .step-number {
  font-size: 40px;
  font-weight: 700;
  color: #76C2E5;
  display: block;
  margin-bottom: 25px;
  padding-bottom: 25px;
  /*border-bottom: 1px solid #333132;*/
}

.bitsat-steps .step-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.bitsat-steps .step-item p {
  font-size: 18px;
  color: #333132;
  font-weight: 400;
  padding-top: 20px;
}

.bitsat-steps .apply-btn {
  background: #FCB017;
  color: #000;
  padding: 14px 32px;
  font-weight: 400;
  font-size: 20px;
  border-radius: 12px;
}

.bitsat-steps .apply-btn:hover {
  background: #ffa000;
  color: #000;
}





/*contact section */
.contact-section{
    background: #fff;
}
.contact-section .section-title {
  font-weight: 700;
  color: #211D70;
  padding-bottom: 10px;
}

.contact-section .contact-info-wrapper{
    width: 90%;
    margin: 0 auto;
}

.contact-section .section-subtitle {
  color: #4D4D4F;
  font-weight: 400;
}

.contact-section .contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F0F0F0;
  padding: 22px 26px;
  border-radius: 12px;
  transition: 0.35s ease;
}

.contact-section .icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: #E9972F;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .icon-box img{
  width: 100%;
  height: auto;
  max-width: 50%;
}

.contact-section .contact-card h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.contact-section .contact-card p {
  margin: 2px 0 0;
  font-size: 16px;
  color: #4D4D4F;
  font-weight: 400;
}

.contact-section .contact-card p a{
  color: #4D4D4F;
  text-decoration: none;
}


/*footer section */
.site-footer {
  background: #211D70;
  padding: 14px 0;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  color: #fff;
  margin: 0;
  font-size: 16px;
  text-decoration: none;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}


/*faq section*/
.faq-section{
    background: #F0F0F0;
}

.faq-section .faq-title {
    color: #211D70;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-section .accordion-item {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #80828566 !important; /* Horizontal rule between items */
}

.faq-section .accordion-button {
    background-color: transparent !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 18px;
    padding: 25px 0;
    box-shadow: none !important;
    text-align: left;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.faq-section .accordion-button::after {
    background-size: 1rem;
}

.faq-section .accordion-body {
    padding: 0 0 25px 0;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
}

.faq-section .accordion-body a{
    color: #211D70;
}


/*map section start*/
        .exam-section {
            background: #fff;
        }
        
        .exam-section .title {
         color:#211D70; 
         font-weight: 700; 
         text-align: center; 
         margin-bottom: 40px; 
        }

        .exam-section .city-list{
            padding-left: 30px;
        }

        .exam-section .city-item {
            font-size: 16px;
          color: #383838; 
          font-weight: 400;
         margin-bottom: 12px;
          }

        /* Mobile Dropdown Styling */
        .exam-section .custom-dropdown {
            background-color: #f1f1f1;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 12px 15px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: #333;
        }

        /* Removing link styles from dropdown items */
        .exam-section .dropdown-menu-list {
            padding: 15px;
            list-style: none;
            margin: 0;
            max-height: 300px;
            overflow-y: auto;
            display: flex;
            flex-wrap: wrap;
        }
        
        .exam-section .dropdown-city {
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: #333;
            font-size: 14px;
            width: calc((100% - 30px) / 2);
        }

        .exam-section .map-image{
            width: 100%;
            height: auto;
        }

        .exam-section .intl-box {
            background:#76C2E53D;
            border-radius: 12px;
            display: flex;
            align-items: center;
            padding: 20px;
            margin-top: 30px;
            width: fit-content;
        }

        .exam-section .intl-label {
            color: #211D70;
            font-weight: 700;
            font-size: 18px;
            padding-right: 20px;
            border-right: 1px solid #211D70;
            margin-right: 20px;
            min-width: 140px;
            line-height: 1.2;
        }

        .exam-section .intl-values { font-weight: 700; color: #000; }

/*courses section*/
        .course-section{
            background-color:#211D70;
        }

        .course-section .section-title {
            text-align: center;
            font-weight: 700;
            margin-bottom: 50px;
            color: #fff;
        }
        .course-section .course-wrapper{
            position: relative;
        }

        .course-section .custom-accordion-item {
            border: 1px solid #808285;
            margin-bottom: 24px;
            overflow: hidden; /* Important for the white dropdown clip */
            transition: all 0.3s ease;
        }

        .course-section .accordion-header-box {
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            user-select: none;
            background-color: transparent;
        }

        .course-section .header-main {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .course-section .text-wrapper h5 {
            margin: 0;
            font-weight: 700;
            font-size:24px;
            color: #fff;
        }

        .course-section .text-wrapper p {
            margin: 0;
            font-size:16px;
            font-weight: 400;
            color: #fff;
        }


        .course-section .arrow-icon {
            color: #E9972F;
            font-size: 1.4rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .course-section .accordion-collapse-content {
            max-height: 0;
            overflow: hidden;
            background-color: white; /* Matches your 3rd image */
            transition: max-height 0.4s ease-out;
            position: absolute;
            left: 0;
            right: 0;
            margin: 12px;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            z-index: 99;
        }

        .course-section .course-list {
            list-style: none;
            margin: 0;
            padding: 10px 0;
        }

        .course-section .course-list li {
            padding: 14px 24px;
            color: #333;
            font-size: 16px;
            /*border-bottom: 1px solid #eeeeee;*/
        }
        .course-section .course-list li a:hover {
            text-decoration: underline;
            font-weight: 700;
        }
        .course-section .course-list li a{
            color: #333;
            text-decoration: none;
        }

        .course-section .course-list li:last-child {
            border-bottom: none;
        }

        .course-section .custom-accordion-item.active {
            border-color: rgba(255, 255, 255, 0.4);
        }

        .course-section .custom-accordion-item.active .accordion-collapse-content {
            max-height: 650px; 
        }

        .course-section .custom-accordion-item.active .arrow-icon {
            transform: rotate(180deg);
        }

        .course-section .accordion-header-box:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }


/*scolarship section*/
        .scholarship-section {
            background: #F0F0F0;
        }

        .scholarship-section .section-title {
            color: #211D70;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .scholarship-section .section-subtitle {
            color: #333132;
            max-width: 400px;
            margin-bottom: 30px;
        }

        .scholarship-section .btn-bits {
            background-color: #FCB017;
            color: #000;
            font-weight: 400;
            border: none;
            font-size: 20px;
            padding: 15px 25px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .scholarship-section .btn-bits:hover {
            background-color: #e5a116;
        }

        .scholarship-section .scholarship-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4 / 5;
            margin-bottom: 20px;
            cursor: pointer;
        }

        .scholarship-section .card-img {
            width: 100%;
            height:auto;
            object-fit: cover;
            display: block;
        }

        .scholarship-section .base-title {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #FAC92E;
            font-weight: 700;
            font-size: 32px;
            z-index: 2;
            transition: opacity 0.3s;
        }

        .scholarship-section .hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(29, 29, 107, 0.5);
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }

        .scholarship-section .scholarship-card:hover .hover-overlay {
            opacity: 1;
        }

        .scholarship-section .scholarship-card:hover .base-title {
            opacity: 0;
        }

        .scholarship-section .overlay-title {
            color:#FAC92E;
            font-weight: 700;
            font-size:32px;
            margin-bottom: 20px;
            line-height: 32px;
        }

        .scholarship-section .overlay-subtitle {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .scholarship-section .overlay-text {
            font-size:16px;
            color: #F0F0F0;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .scholarship-section .overlay-list {
            padding-left: 1px;
            font-size: 16px;
            color: #F0F0F0;
            margin-bottom: 15px;
            padding-left: 20px;
        }

        .scholarship-section .overlay-list li {
            margin-bottom: 8px;
        }

        .scholarship-section .view-details {
            margin-top: auto;
            color: #FAC92E;
            text-decoration: underline;
            font-weight: 700;
            font-size:20px;
        }

        /* Mobile specific adjustments */
        @media (max-width: 767px) {
            .scholarship-section .section-title, .section-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .scholarship-section .btn-wrapper {
                text-align: center;
                margin-top: 20px;
                order: 3;
            }
        }
/*legacy css start*/
.legacy-section {
    background: #ffffff;
    overflow: hidden;
}

.legacy-section .legacy-title {
    font-weight: 700;
    color: #211D70;
    margin-bottom: 50px;
}

.legacy-section .legacy-desktop {
    width: 80%;
    margin: 0 auto;
}

/* Desktop Logos */
.legacy-section .legacy-logo {
    height: auto;
}

/* ---------- MOBILE SCROLL ---------- */
.legacy-section .legacy-mobile {
    width: 100%;
    overflow: hidden;
}

.legacy-section .logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 18s linear infinite;
}

.legacy-section .logo-track img {
    max-width: 10%;
    margin: 0 25px;
    /*flex-shrink: 0;*/
}

/* Animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .legacy-section .legacy-title {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .legacy-section .legacy-section {
        padding: 40px 0;
    }

    .legacy-section .legacy-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}


/*logos section css*/
.recruiters-section {
    background: #ffffff;
    overflow: hidden;
}

.recruiters-section .section-title {
    font-weight: 700;
    color: #211D70;
    margin-bottom: 50px;
}

.recruiters-section .logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.recruiters-section .logo-track {
    display: flex;
    /*width: calc(250px * 12);*/
    animation: scroll 5s linear infinite;
}

.recruiters-section .logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.recruiters-section .logo-item img {
    object-fit: contain;
    transition: transform 0.2s ease;
}

.recruiters-section .logo-item img:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/*campus section css start*/
.campus-section {
    background: #F0F0F0;
}

.campus-section .main-heading {
    font-weight: 700;
    color: #211D70;
    margin-bottom: 30px;
}

.campus-section .sub-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 35px;
}
.campus-section .campus-card-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.campus-section .campus-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
    width: 100%;
}

.campus-section .campus-card p {
    padding: 12px 0px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin: 0;
}
.campus-section .arrow-icon i{
    transform: rotate(-45deg);
}

.campus-section .img-wrapper {
    position: relative;
    overflow: hidden;
}

.campus-section .img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campus-section .campus-card:hover img {
    transform: scale(1.12);
}

.campus-section .arrow-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff3b3b;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.campus-section .campus-card:hover .arrow-icon {
    opacity: 1;
    transform: scale(1);
}

.campus-section .cutoff-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FCB017;
    color: #000;
    font-weight: 400;
    font-size: 20px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.campus-section .cutoff-btn:hover {
    background: #ffa500;
}




/***********************all responsive ***************************8*/
@media screen and (min-width: 1025px) and (max-width: 1380px) { 
    .session-section .session-card{
        gap: 40px;
    }
    .section-heading{
        font-size: 36px;
    }
    .course-section .text-wrapper h5, .timelines-section .timeline-card h4{
        font-size: 22px;
    }
    .bitsat-steps .step-item p{
        font-size: 16px;
    }
    .scholarship-section .base-title, .scholarship-section .overlay-title{
        font-size: 28px;
        margin-bottom: 10px;
    }
    .scholarship-section .hover-overlay{
        padding: 20px;
    }
    .campus-section .campus-card p{
        font-size: 13px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1024px) { 
    .header .navbar-nav .nav-link{
        font-size: 14px;
        padding: 0 12px;
    }
    .header .apply-btn{
        font-size: 14px;
    }
    .header .navbar-brand img{
        max-width: 100%;
    }
    .exam-section .city-item{
        font-size: 12px;
    }
    .banner-content-wrapper h1{
        font-size: 50px;
    }
    .banner-content-wrapper h2{
        font-size: 30px;
    }
    .apply-btn, .download-btn{
        font-size: 18px;
    }
    .section-heading{
        font-size: 30px;
    }
    .session-section .session-card{
        gap: 35px;
    }
    .session-section .value{
        font-size: 16px;
    }
    .section-para{
        font-size: 16px;
    }
    .course-section .text-wrapper h5, .timelines-section .timeline-card h4{
        font-size: 20px;
    }
    .bitsat-steps .step-item p, .scholarship-section .overlay-subtitle{
        font-size: 14px;
    }
    .bitsat-steps .step-number{
        font-size: 30px;
    }
    .scholarship-section .overlay-title, .scholarship-section .base-title{
        font-size: 22px;
        line-height: 28px;
    }
    .scholarship-section .overlay-text, .scholarship-section .overlay-list, .scholarship-section .view-details{
        font-size: 12px;
        margin-bottom: 0;
    }
    .campus-section .campus-card p{
        padding: 12px 6px;
    }
    .contact-section .contact-card p{
        font-size: 14px;
    }
    .site-footer p, .site-footer a{
        font-size: 14px;
    }
    .contact-section .contact-card h6{
        font-size: 16px;
    }
    .session-section .session-inner{
        gap: 30px;
    }
} 


@media (max-width: 991px) {
    .m-banner{
        display: block;
    }
    .d-banner{
        display: none;
    }
    .session-section .value{
        font-size: 16px;
    }
    .contact-section .contact-info-wrapper{
        width: 100%;
    }
    .header .navbar-brand{
        width: 30%;
    }
    .timelines-section .m-text{
        display: inline;
    }
    .timelines-section .d-text{
        display: none;
    }
    .header .navbar-brand img{
        max-width: 100%;
    }
    .course-section .text-wrapper h5{
        font-size: 18px;
    }
    .bitsat-steps .step-wrapper{
        flex-direction: column;
    }
    .scholarship-section .overlay-title{
        font-size: 22px;
        margin-bottom: 6px;
    }
    .scholarship-section .overlay-subtitle{
        font-size: 16px;
        margin-bottom: 2px;
    }
    .scholarship-section .hover-overlay{
        padding: 20px;
    }
    .scholarship-section .view-details{
        font-size: 16px;
    }
    .scholarship-section .base-title{
        font-size: 22px;
    }
    .campus-section .sub-heading{
        font-size: 20px;
    }
    .campus-section .campus-card-wrapper{
        flex-wrap: wrap;
    }
    .campus-section .campus-card{
        width: calc((100% - 2rem) / 2);
    }
    .session-section .session-inner{
        flex-direction: column;
        gap: 30px;
    }
    .session-section .session-card{
        padding: 20px;
    }
    .site-footer {
    padding: 16px 0;
  }

  .footer-row {
    flex-direction: column-reverse; /* 👈 KEY FIX */
    text-align: center;
  }

  .footer-right {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 6px;
  }

  .site-footer p, .site-footer a {
    font-size: 13px;
    font-weight: 500;
  }

  .footer-left p {
    font-size: 10px;
    line-height: 1.4;
  }
  .bitsat-steps .step-item {
    display: flex;
    align-items: center;
    gap: 65px;
    text-align: left;
    width: 100%;
  }
  .step-wrapper::before{
    width: 1px;
    height: 100%;
    left: 10%;
    top: 0;
  }

}

@media (max-width: 767px) {
    .section-heading{
        font-size: 22px;
    }
    .section-para{
        font-size: 16px;
    }
    .banner-content-wrapper h1{
        font-size: 40px;
    }
    .bitsat-steps .apply-btn{
        display: none;
    }
    .banner-content-wrapper h2{
        font-size: 20px;
    }
    .step-wrapper::before{
        left: 20%;
    }
    .bitsat-steps .step-number{
        font-size: 32px;
    }
    .bitsat-steps .step-item:last-child{
        margin-bottom: 0;
    }
    .banner-btns-wrapper{
        flex-direction: column;
    }
    .campus-section .campus-card-wrapper{
        flex-direction: column;
    }
    .campus-section .campus-card{
        width: 100%;
    }
    .campus-section .campus-card p{
        font-size: 16px;
    }
    .exam-section .intl-box{
        width: 100%;
    }
    .course-section .custom-accordion-item{
        margin-bottom: 0;
    }
    .session-section .session-card{
        gap: 20px;
    }
    .timelines-section .timeline-date{
        font-size: 12px;
    }
    .timelines-section .timeline-card h4{
        font-size: 20px;
    }
}






