
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --blue: #2f2484;
    --green: #00963f;
    --red: #e3010f;
    --brown: #701011;
    --white: #ffffff;
    --text-black: #444444;
    --text-grey: #616161;
    --black: #333;
    --dark: #000;
    --grey-bg: #e8e7ee;
    --white-bg: #ebe9ff;
}
/* ===============================
============ Core Css ============
=============================== */

ul{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover{
    color: inherit;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: .3s ease-in-out;
}
h1, h2, h3, h4, h5, h6, p{
    margin-bottom: 0;
}
img{
    width: 100%;
}
input, button:focus-visible {
    box-shadow: none;
    border: none;
    outline:none;
}

/* ===================================
============ Global Class ============
=================================== */

/* 👉 == Color Style == */

.color-white{
    color: var(--white);
}
.color-dark{
    color: var(--blue);
}
.bg-grey{
    background-color: var(--grey-bg);
}
.bg-white{
    background-color: var(--grey-bg);
}
.bg-image{
    background-size: cover;
    background-repeat: no-repeat;
}

/* 👉 == Margin Padding Style == */

.mgt-tiny{
    margin-top: 5px;
}
.mgt-small{
    margin-top: 10px;
}
.mgt-mid{
    margin-top: 15px;
}
.mgt-big{
    margin-top: 20px;
}
.mgt-large{
    margin-top: 30px;
}
.mgb-tiny{
    margin-bottom: 5px;
}
.mgb-small{
    margin-bottom: 10px;
}
.mgb-mid{
    margin-bottom: 15px;
}
.mgb-big{
    margin-bottom: 20px;
}
.mgb-large{
    margin-bottom: 30px;
}
.pa-big{
    padding: 70px 0;
}
.pa-mid{
    padding: 50px 0;
}
.pa-small{
    padding: 40px 0;
}

/* 👉 == Font Style == */

.heading{
    font-size: 42px;
    font-weight: 200;
    color: var(--black);
}
.heading span {
    font-weight: 700;
    color: var(--blue);
    margin-left: 10px;
}
.bold-heading {
    font-weight: 700;
    color: var(--blue);
    font-size: 24px;
}
.sub-title {
    color: var(--blue);
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
}
.title-text {
    color: var(--blue);
    font-size: 18px;
    margin: 5px 0;
    font-weight: 600;
    line-height: 20px;
}
.bold-text{
    font-size: 14px;
    font-weight: 400;
}
.mild-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-grey);
}
.mid-bold-text{
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.big-paragraph {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}
.paragraph{
    font-size: 15px;
}
.small-paragraph{
    font-size: 13px;
    font-weight: 200;
}

hr.underline {
    width: 70px;
    background-color: var(--blue);
    height: 1.5px;
    margin: 5px 0 0 0;
}

/* 👉 == Btn Style ==  */

.fill-btn {
    background-color: var(--blue);
    color: var(--white);
    padding: 5px 12px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid var(--blue);
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
}
.fill-btn:hover {
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
}
.line-btn {
    background: var(--white);
    color: var(--blue);
    padding: 5px 12px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid var(--blue);
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
}
.line-btn:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.fill-btn-bg {
    background-color: var(--blue);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid var(--blue);
    transition: .3s ease-in-out;
}
.fill-btn-bg:hover {
    background: var(--white);
    color: var(--blue);
    border: 1px solid var(--blue);
}
.line-btn-bg {
    background: var(--white);
    color: var(--blue);
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid var(--blue);
    transition: .3s ease-in-out;
}
.line-btn-bg:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}
/* 👉 == Section Style == */

.align-flex{
    display: flex;
    align-items: center;
    gap: 10px;
}
.flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.search-wrap form {
    width: 450px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
}
.search-wrap input[type=text] {
    width: 300px;
    border: none;
    height: 50px;
    padding: 0px 20px;
    border-radius: 5px 0 0 5px;
    font-size: 13px;
}
.search-wrap input.search-btn {
    background-color: var(--blue);
    border: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    height: 50px;
    padding: 10px 20px;
    border-radius: 5px;
}
.grid-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0px;
}
.icon-label {
    font-size: 13px;
    color: var(--text-black);
    display: flex;
    width: 48%;
    align-items: baseline;
    gap: 5px;
    text-transform: uppercase;
    font-weight: 400;
}
.icon-label i{
    font-size: 12px;
    color: var(--blue);
}
.filter-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 3px;
    margin-bottom: 20px;
    background-color: var(--white);
}
.filter-box-inner{
    padding: 15px;
}
.filter-title {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    color: var(--white);
    background-color: var(--blue);
}
.sub-banner {
    height: 200px;
    background-size: cover;
}
.sub-banner .container {
    display: flex;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    height: 200px;
    padding-bottom: 30px;
}
.sub-page th {
    font-size: 15px;
    font-weight: 600;
    border-bottom: solid 2px var(--text-black);
    padding: 5px 0;
    color: var(--blue);
}
.sub-page td {
    font-size: 15px;
    font-weight: 400;
    padding: 10px 10px 10px 0;
    border-bottom: solid 1px var(--text-black);
    color: var(--text-black);
}


/* ======================================
=============== Header Section ==========
====================================== */

.header-section{
    background-color: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
}
.header-logo {
    padding: 10px 0 10px 20px;
    height: 90px;
    display: flex;
    align-items: center;
}
.header-logo img {
    width: 135px;
    transition: .3s ease-in-out;
}
.footer-section .logo{
    padding: 0;
    margin-bottom: 20px;
}
.header-contact{
    display: flex;
    justify-content: end;
    transition: .3s ease-in-out;
}
.header-contact ul{
    background-color: var(--blue);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5px 0 20px;
    border-radius: 3px;
    height: 40px;
    width: fit-content;
    border-radius: 0 0 0 35px;
}
.header-contact a{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
}
.navigation-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90px;
}
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    padding-right: 20px;
}
.menubar {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    height: 50px;
    transition: .3s ease-in-out;
}
.menubar li a{
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}
.menubar li a:hover{
    color: var(--white);
    background-color: var(--blue);
}


/* 👉 Sticky Header  */

.header-section.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
}

.sticky .header-contact{
    display: none;
}
.sticky .header-logo {
    height: 70px;
}
.sticky .header-logo img{
    width: 110px;
}
.sticky .navigation-wrap {
    height: 50px;
}
.header-login {
    display: flex;
    gap: 10px;
    align-items: center;
}


/* 👉 === Hero Section === */

.heroSwiper.swiper {
    width: 100%;
    height: 600px;
}
.heroSwiper.swiper .swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-box {
    padding: 40px 40px 40px 30px;
    border-radius: 20px 75px 175px 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    background: #fff;
}

.hero-course-category{
    margin-top: 20px;
    width: 70%;
}
.hero-course-category ul{
    display: flex;
    align-items: center;
    justify-content: start;
}
.hero-course-category li a{
    color: #2d2a4f;
    font-weight: 700;
    padding: 0px 10px;
    font-size: 14px;
    position: relative;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}
.hero-course-category li a:after {
    position: absolute;
    content: '';
    height: 10px;
    width: 2px;
    top: 6px;
    right: 0;
    background-color: #8e8e8e;
}

/* 👉 === Counter Stripe === */

.counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.counter-icon i {
    font-size: 40px;
    color: var(--blue);
    padding-right: 10px;
    border-right: solid 1px var(--text-black);
}
.counter-number-bold {
    font-size: 38px;
    color: #333333;
    line-height: .9;
    font-weight: 700;
}
.counter-number-power {
    font-size: 26px;
    color: var(--blue);
    font-weight: 700;
    margin-left: 2px;
}

/* 👉 == Course Section == */

.courseSwiper {
    margin-top: 30px;
}
.course-item{
    background-color: var(--white);
    border-radius: 10px;
}
.course-image {
    overflow: hidden;
    border-radius: 10px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-image img{
    width: 120px;
}
.course-info {
    padding: 15px 15px 20px 15px;
}
.course-info-top {
    display: flex;
    align-items: center;
    height: 30px;
}
.course-category {
    font-size: 14px;
    color: var(--blue);
    font-weight: 600;
}
.course-rating {
    display: flex;
    align-items: center;
}
.course-rating ion-icon{
    color: var(--black);
    font-size: 42px;
}
.course-name {
    color: var(--black);
    font-size: 20px;
    margin: 10px 0;
    font-weight: 500;
    line-height: 24px;
}
.course-details{
    display: flex;
    align-items: center;
    gap: 10px;
}
.course-details-month, .course-details-module{
    font-size: 13px;
    font-weight: 400;
    color: var(--text-black);
}
.course-details ion-icon{
    font-size: 12px;
    color: var(--blue);
}
.course-cta {
    margin-top: 15px;
}
.course-cta .prime-btn, .course-cta .line-btn{
    padding: 5px 10px;
    font-size: 14px;
}

/* 👉 == Service Section == */

.service-box {
    background-color: var(--blue);
    border-radius: 5px;
    margin-bottom: 20px;
    transition: .5s ease-in-out;
    position: relative;
    height: 200px;
    display: flex;
    align-items: end;
    justify-content: end;
    padding: 30px;
    transition: .3s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    overflow: hidden;
}
.service-box i {
    background-color: var(--white);
    color: var(--blue);
    padding: 10px;
    width: 120px;
    height: 120px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: absolute;
    top: -17px;
    left: -17px;
    transition: .5s ease-in-out;
}
.service-box h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    transition: .5s ease-in-out;
}
.service-box:hover {
    background-color: var(--white);
    justify-content: start;
}
.service-box:hover h4{
    color: var(--blue);
    
}
.service-box:hover i{
    color: var(--white);
    background-color: var(--blue);
    width: 70px;
    height: 70px;
    border-radius: 50px;
    top: 30px;
    left: 30px;
}

/* 👉 == About Section ==  */

.about-query-form {
    background-image: url(./assets/images/form-bg.jpg);
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
}
.about-query-form h3 {
    font-size: 30px;
    color: var(--blue);
    font-weight: 200;
}
.query-form input[type=text], .query-form input[type=email], .query-form input[type=tel]{
    height: 40px;
    width: 100%;
    background-color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    border: none;
    font-size: 13px;
    color: var(--text-black);
}
.query-form textarea{
    height: 100px;
    width: 100%;
    background-color: #fff;
    padding: 15px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    border: none;
    font-size: 13px;
    color: var(--text-black);
}
.about-list li {
    font-size: 15px;
    color: var(--text-black);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    margin-bottom: 10px;
}
.about-list li ion-icon{
    font-size: 15px;
    color: var(--blue);
}

/* 👉 == College Section == */

.college-section .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 7px 14px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}
.college-section .nav-link:hover{
    background-color: var(--white-bg);
}
.college-section .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--white);
    background-color: var(--blue);
}
.college-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
}
.college-image img{
    width: 120px;
    border-radius: 3px 3px 0 0;
}
.college-info{
    background-color: var(--white);
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

/* 👉 == Category Section == */

.category-image {
    position: relative;
    background: var(--white-bg);
    padding: 6px;
}
.category-image img{
    width: 100%;
}
.category-overlay {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--white-bg);
    padding: 5px 16px;
    border-radius: 0 10px 0 0;
    color: var(--blue);
}

/* 👉 == Testimonial Section == */

.testimonial-box {
    border: solid 2px var(--blue);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    background-color: var(--blue);
}
.quote-icon {
    width: 60px;
    margin-bottom: 10px;
}
.testimonial-image img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0px;
    border: solid 2px var(--blue);
}
.testimonial-box p {
    font-style: italic;
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
}

/* 👉 == Faq Section ==  */


.faq-accordion-wrap{
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-header {
    background: #fff;
    color: #333;
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.accordion-header:hover {
    background: #f0f0f0;
}
.accordion-header.active {
    background: #007bff;
    color: #fff;
}
.accordion-content {
    background: #f9f9f9;
    padding: 15px;
    display: none;
}
.accordion-header i {
    transition: transform 0.3s ease;
}
.accordion-header.active i {
    transform: rotate(90deg);
}

/* 👉 == Footer Section ==  */

.footer-section {
    padding: 70px 0px 50px 0px;
    /* background: -webkit-linear-gradient(left, var(--blue) 0%, var(--blue) 51%, var(--green) 100%); */
}
.footer-logo img{
    width: 250px;
}
.footer-nav li{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-nav ion-icon {
  font-size: 20px;
}
.footer-nav a{
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    transition: .3s ease-in-out;
    margin-bottom: 10px;
}
.footer-nav a:hover {
    font-size: 15px;
    color: var(--black);
}
.social-links{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-links i{
    font-size: 18px;
}
.footer-bottom{
    background-color: var(--blue);
    padding: 15px;
}
.legal-menu{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

/* 👉 == Course List == */

.course-list-box {
    padding: 25px;
    border-radius: 10px;
    background-color: #fff;
    height: 100%;
    /* margin-bottom: 20px; */
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.course-list-box a{
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
}
.sub-page .col-md-3:has(.course-list-box){
    margin-bottom: 20px;
}

/* == College List == */

.college-box{
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    gap: 15px;
    justify-content: space-between;
    border-radius: 3px;
    margin-bottom: 20px;
    background-color: var(--white);
}
.college-logo {
    width: 25%;
}
.college-logo img{
    width: 100%;
}
.college-box-first{
    display: flex;
    gap: 15px;
    width: 80%;
}
.college-cta{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cta-wrap {
    display: flex;
    gap: 10px;
    justify-content: end;
}
.cta-wrap i {
    width: 30px;
    height: 30px;
    background-color: var(--grey-bg);
    border-radius: 3px;
    line-height: 30px;
    text-align: center;
}

/* 👉 == Fee & Cut Off Section == */


/* 👉 == Service Details Section == */

.college-table{
    width: 100%;
}

.college-tab {
    border-radius: 5px;
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--white);
}
.college-tab .nav-item{
    width: 100%;
}
.tab-title {
    background-color: var(--blue);
    padding: 10px 15px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 3px;
    color: #fff;
    margin-bottom: 13px;
}
.college-tab .nav-link {
    width: 100%;
    text-align: left;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-black);
    padding: 7px 14px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}
.college-tab .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--white);
    background-color: var(--blue);
}
.college-content .tab-pane{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 5px;
}

/* 👉 == Profile Section == */

.profile-info-wrap {
    border-radius: 3px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    margin-bottom: 20px;
}
.profile-info-input{
    margin-bottom: 10px;
}
.profile-info-input label {
    font-size: 15px;
    font-weight: 500;
    width: 100%;
}
.profile-info-input input {
    font-size: 14px;
    border: none;
    width: 100%;
    background-color: var(--grey-bg);
    padding: 3px 10px;
    margin-top: 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* 👉 == Apply Form == */

#applyModal .modal-dialog {
    max-width: 600px;
}

/* 👉 == Login Registration ==  */

.login-box{
    width: 300px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 3px;
}
.login-registration .container{
    display: flex;
    align-items: center;
    justify-content: end;
}
.login-input{
    margin-bottom: 10px;
}
.login-input label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.login-input input[type=text], .login-input input[type=email], .login-input input[type=password], .login-input input[type=tel] {
    height: 35px;
    width: 100%;
    background-color: #eee;
    padding: 0 15px;
    border-radius: 5px;
    margin-top: 5px;
    border: none;
    font-size: 13px;
    color: var(--text-black);
}

/* It was 1182 line of code -> reduced to 300 */