:root {
    --primary: #5472d2;
    --light: #F0FBFC;
    --dark: #414183;
    --bg-color: #fffbf6;
    --bg-color-warning: #ff9900;
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto',Arial, sans-serif;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto',Arial, sans-serif;
}

.text-color{
    color: var(--primary);
}

.icon-color{
    color: var(--primary);
}

.bg-text{
    background-color: var(--primary);
    color: var(--light);
}








/* top section */
#top-section {
    background-color: var(--primary);
}

#top-section p {
    margin: 0;
    color: #fff;
}

#top-section .social-icons a i {
    font-size: 1.2rem;
}












/*** 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;
}








/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 100%;
    height: 2rem;
    transition: .5s;
    background-color: var(--primary);
    color: var(--bg-color);
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}















/* menu section  */

div.sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
box-shadow: 0 2px var(--primary);
}

.menu-area {
    position: static;
}

.mega-area {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
}


.dropdown-item {
    padding: 5px 0;
}

.navbar{

    background: var(--light);
}

.navbar-nav .nav-item .nav-link {
    color: #020f31;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #01f2ff;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}


.icon {
    color: rgb(6, 187, 204);
}



/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    color: #020f31; /* dark blue-ish */
    padding: 25px 15px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bg-color-warning); /* bright cyan on hover */
}

.navbar .dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0;
    padding: 1.5rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: rotateX(-75deg);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.dropdown-menu a.dropdown-item:focus,
.dropdown-menu a.dropdown-item:active,
.dropdown-menu a.dropdown-item:visited {
    color: inherit !important;
    background-color: transparent !important;
    text-decoration: none !important;
}


.navbar .nav-item:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: rotateX(0deg);
}

.mega-area {
    position: static !important;
    width: 100%;
    padding: 1rem 0;
}


@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}










#blog-list-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}










.sidebar {
    /* position: sticky;
    top: 8%;
    z-index: 100; */
    padding: 1rem;
    border-radius: 10px;
    background-color: #fff;
    color: #1a1a1a; /* darker text color for readability */
    box-shadow:  0 0 10px rgba(2, 15, 49, 0.2); /* softer shadow */
    margin-bottom: 2rem;
}
.sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}


.timeline {
    position: relative;
    margin-left: 1rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary);
}
.timeline-step {
    margin-bottom: 1.5rem;
    position: relative;
}
.timeline-step::before {
    content: '';
    position: absolute;
    left: -1.2rem;
    top: 5px;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary);
    border-radius: 50%;
    border: 2px solid #fff;
}

#course-highlights{
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(2, 15, 49, 0.1);
}





/* web development file */

#curriculum {
    background-color: var(--bg-color);
}


.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.card-header {
    cursor: pointer;
}
.card-body ul {
    padding-left: 1.25rem;
}
.card-body li {
    margin-bottom: 0.5rem;
}
.icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 8px;
}


.card-header {
    background-color: var(--primary);
}
.card-header i {
    margin-right: 8px;
    color: var(--light);
}
.card.border-primary {
    border-left: 5px solid var(--light);
}

.border-primary{
    border-color: var(--primary) !important;
}










/* digital marketing file  */
.card-title {
    font-weight: 600;
    font-size: 1.2rem;
}
.category-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
}
.card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-right: 10px;
}


#support-section{
    background-color: var(--bg-color);
    padding: 50px;
}



#support-section .card {
    border-radius: 10px;
    transition: 0.5s;
}

#support-section .card:hover {
    transform: scale(1.05);
}






/* admission file */
#course-section{
    background-color: var(--bg-color);
}

#course-section .card-title {
    font-size: 1.3rem;
    font-weight: 600;
}
#course-section .card ul li {
    padding-left: 1rem;
    position: relative;
}
#course-section .card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}








/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer img {
  width: 150px;
  height: 150px;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.btn-color {
  background-color: var(--primary);
  color: var(--light);
}