/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.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: 50px;
}





/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 600px;
        overflow: hidden;
    }

        .header-carousel .owl-carousel-item img {
            width: 100%;
            height: 750px;
            object-fit: cover;
            object-position: center center;
        }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}
/* Hero Banner Height */
.header-carousel .owl-carousel-item {
    position: relative;
    height: 800px;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}





/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}


/*==========================
Faculty Section
===========================*/

.faculty-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .faculty-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.faculty-image {
    height: 320px;
}

    .faculty-image img {
        object-fit: cover;
        object-position: top center;
    }
.faculty-card:hover img {
    transform: scale(1.08);
}

.faculty-content {
    padding: 25px;
}

    .faculty-content h4 {
        font-size: 24px;
        color: #103741;
        margin-bottom: 8px;
    }

    .faculty-content span {
        color: #FE5D37;
        font-weight: 600;
        font-size: 17px;
    }

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    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 {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.btn-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    margin-left: 8px;
    transition: .3s;
}


.news-container{

    height:390px;
    overflow:hidden;
    padding:15px;
}

#newsList{

    list-style:none;
    margin:0;
    padding:0;
}

#newsList li{

    display:flex;
    gap:12px;
    margin-bottom:20px;
    border-left:4px solid #ff9800;
    background:#fafafa;
    padding:10px;
    border-radius:10px;
}

.date{

    min-width:60px;
    height:60px;

    background:#ff9800;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    text-align:center;

    font-size:14px;

    flex-direction:column;
}

#newsList h5{

    margin:0;
    color:#d62828;
}

#newsList p{

    margin:4px 0 0;
    font-size:14px;
}

.founder-img {
    width: 300px;
    height: 300px;
    border: solid;
    border: 6px solid #FFD54F;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: all .3s ease;
}

.chairman-img {
    width: 300px;
    height: 300px;
    border: solid;
    border: 6px solid #FFD54F;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: all .3s ease;
}


.student-month-card {
    width: 590px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .3s;
}

    .student-month-card:hover {
        transform: translateY(-5px);
    }

.student-title {
    background: #8b2f2f;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 20px;
    font-weight: bold;
}

.student-image {
    width: 180px;
    height: 180px;
    margin: 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

    .student-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #fff;
        object-position: center top;
        display: block;
    }
        .student-image img:hover {
            transform: scale(1.05);
        }

.student-details {
    text-align: center;
    padding: 15px;
}

    .student-details h4 {
        margin-top: 15px;
        color: #222;
    }

    .student-details p {
        color: #666;
        margin-bottom: 15px;
    }

.attendance-box {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

    .attendance-box span {
        color: #777;
    }

    .attendance-box h2 {
        color: #198754;
        margin: 5px 0;
    }

.student-badge {
    background: #fff7e6;
    color: #b8860b;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 10px;
}

.top-bar {
    font-size: 18px;
    background: #0d6efd;
}

    .top-bar span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top-bar i {
        color: #ffffff;
    }

    .top-bar a {
        color: #fff;
        width: 35px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-left: 8px;
        transition: .3s;
        background: rgba(255,255,255,.15);
    }

        .top-bar a:hover {
            background: #fff;
            color: #0d6efd;
        }


.navbar-collapse .navbar-nav .nav-link {
    font-size: 18px;}

.bg-white.shadow {
    transition: 0.3s;
}

    .bg-white.shadow:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15) !important;
    }

.bg-white h3 {
    font-weight: 700;
}

.bg-white i {
    font-size: 18px;
}

.bg-primary {
    background-color: #1F009C !important;
}

.admission-video {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 15px;
}

.header-carousel,
.header-carousel .owl-stage-outer,
.header-carousel .owl-stage,
.header-carousel .owl-item,
.header-carousel .owl-carousel-item {
    position: relative;
    height: 700px;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 35%;
}

@media(max-width:768px) {

    .header-carousel .owl-carousel-item {
        height: 420px;
    }
}
.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border-top: 6px solid #ff6b35;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .vm-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.vm-icon {
    width: 75px;
    height: 75px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.vm-card h2 {
    font-weight: 700;
    color: #063970;
    margin-bottom: 20px;
}

.vm-card p {
    color: #666;
    line-height: 1.9;
    text-align: justify;
}

.vm-list {
    padding-left: 18px;
}

    .vm-list li {
        margin-bottom: 12px;
        color: #555;
        line-height: 1.8;
    }


.about-school {
    background: #fff;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .about-img img {
        border-radius: 20px;
        transition: .5s;
    }

    .about-img:hover img {
        transform: scale(1.05);
    }

.experience-box {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #d9d9d9;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.section-tag {
    color: #ff6b35;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-school h2 {
    font-size: 42px;
    font-weight: 700;
    color: #073b63;
    margin: 15px 0;
}

    .about-school h2 strong {
        color: #ff6b35;
    }

.about-school p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
}

    .about-features div {
        font-weight: 600;
    }

    .about-features i {
        color: #ff6b35;
        margin-right: 10px;
    }


/* Admission Flash Banner */
.admission-banner {
    background: linear-gradient(90deg,#ff512f,#dd2476);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
}

.admission-marquee {
    width: 85%;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

    .admission-marquee b {
        color: #ffff00;
    }

.admission-btn {
    width: 15%;
    text-align: right;
}

    .admission-btn .btn {
        font-weight: 700;
    }

/* Mobile */

@media(max-width:768px) {

    .admission-banner {
        flex-direction: column;
        gap: 10px;
    }

    .admission-marquee,
    .admission-btn {
        width: 100%;
        text-align: center;
    }
}



/*=============================
Premium Gallery
=============================*/

.gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.18);
    }

.gallery-image {
    overflow: hidden;
    height: 280px;
}

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-content {
    padding: 25px;
    text-align: center;
}

    .gallery-content h4 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .gallery-content p {
        color: #777;
        margin-bottom: 20px;
    }

    .gallery-content .btn {
        border-radius: 50px;
        padding: 10px 30px;
    }


/*========================================
 PREMIUM ADMISSION SECTION
========================================*/

#admission-enquiry {
    background: #f8fbff;
}

    #admission-enquiry .card {
        border: none;
        border-radius: 20px;
        overflow: hidden;
        transition: .35s ease;
    }

        #admission-enquiry .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0,0,0,.15);
        }

    #admission-enquiry .card-header {
        padding: 18px;
        font-size: 20px;
        font-weight: 700;
    }

    #admission-enquiry video {
        border-radius: 15px;
        width: 100%;
    }

    #admission-enquiry .accordion-button {
        font-weight: 600;
    }

        #admission-enquiry .accordion-button:not(.collapsed) {
            background: #0d6efd;
            color: #fff;
        }

    #admission-enquiry .form-control,
    #admission-enquiry .form-select {
        height: 52px;
        border-radius: 12px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    #admission-enquiry textarea.form-control {
        height: 130px;
    }

    #admission-enquiry .form-control:focus,
    #admission-enquiry .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13,110,253,.2);
    }

    #admission-enquiry .input-group-text {
        border-radius: 12px 0 0 12px;
        background: #0d6efd;
        color: #fff;
        border: none;
    }

    #admission-enquiry .btn-primary {
        border-radius: 50px;
        font-weight: 600;
        padding: 14px;
        transition: .35s;
    }

        #admission-enquiry .btn-primary:hover {
            transform: scale(1.03);
        }

    #admission-enquiry ul {
        padding-left: 0;
    }

        #admission-enquiry ul li {
            padding: 8px 0;
            border-bottom: 1px dashed #ddd;
        }

            #admission-enquiry ul li:last-child {
                border: none;
            }

#successMessage {
    display: none;
    border-radius: 15px;
    font-size: 16px;
}

#admission-enquiry img {
    object-fit: cover;
}

@media(max-width:991px) {

    #admission-enquiry .card {
        margin-bottom: 25px;
    }
}

@media(max-width:768px) {

    #admission-enquiry {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        #admission-enquiry h1 {
            font-size: 30px;
        }

        #admission-enquiry h2 {
            font-size: 26px;
        }

        #admission-enquiry .card-body {
            padding: 25px;
        }
}

.attendance-carousel .student-month-card {
    margin: 10px auto;
    max-width: 380px;
}


.attendance-carousel .student-month-card {
    max-width: 360px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.attendance-carousel .student-image {
    width: 170px;
    height: 170px;
    margin: 20px auto;
    border: 4px solid #ffc107;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
}

    .attendance-carousel .student-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.attendance-carousel .student-details {
    padding: 20px;
}


.header-carousel .owl-carousel-item {
    position: relative;
    height: 750px;
}

    .header-carousel .owl-carousel-item img {
        width: 100%;
        height: 750px;
        object-fit: cover;
        object-position: center 15%;
    
       }

.faculty-content {
    text-align: center;
    padding-top: 15px;
}

    .faculty-content h4 {
        margin-bottom: 5px;
        font-size: 24px;
        color: #103741;
    }

    .faculty-content span {
        color: #FE5D37;
        font-size: 17px;
        font-weight: 600;
    }

.facility-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .facility-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.facility-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #FFF5F3;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .facility-icon i {
        font-size: 40px;
        color: #FE5D37;
    }

.facility-card h4 {
    color: #103741;
    margin-bottom: 15px;
    font-weight: 700;
}

.facility-card p {
    color: #666;
    line-height: 1.8;
}

.footer-birthday img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s;
}

    .footer-birthday img:hover {
        transform: scale(1.08);
    }

.birthday-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

    .birthday-card img {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #FE5D37;
        margin-bottom: 12px;
    }

    .birthday-card h5 {
         color:#fff !important;
    font-size:18px;
    font-weight:700;
}

.birthday-card p{
    color:#fff !important;
    margin-bottom:8px;
}

.birthday-card span{
    color:#ffc107;
    font-weight:600;
}

#birthdayCarousel {
    min-height: 300px;
}

.carousel-item {
    transition: 0.8s;
}

.birthday-empty {
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    color: #555;
    font-size: 20px;
}

.birthday-card {
    text-align: center;
    padding: 15px;
}

    .birthday-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffc107;
    }

.birthday-empty {
    text-align: center;
    color: #fff;
    padding: 30px 0;
}

.birthday-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

    .birthday-card h5 {
        color: #0d3b66 !important;
        font-size: 18px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .birthday-card p {
        color: #555 !important;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .birthday-card span {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 30px;
        background: #ffc107;
        color: #000;
        font-size: 13px;
        font-weight: 600;
    }

/* ================= FOOTER ================= */

.footer {
    background: #0f2d36;
}

    .footer .btn-link {
        display: block;
        color: #d9d9d9;
        text-decoration: none;
        padding: 4px 0;
        transition: .3s;
    }

        .footer .btn-link:hover {
            color: #ff6b35;
            padding-left: 8px;
        }

    .footer .btn-social {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 8px;
    }



/* Birthday Card */

.birthday-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

.birthday-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffc107;
    margin-bottom: 15px;
}

.birthday-name {
    font-size: 20px;
    font-weight: 700;
    color: #16384c;
    margin-bottom: 8px;
}

.birthday-class {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.birthday-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #ffc107;
    color: #222;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

.birthday-empty {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    color: #16384c;
}