/* HEADER && FOOTER CSS START */

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

html,
body {
    margin: 0;
    /* remove default margin */
    padding: 0;
    /* remove default padding */
    height: 100%;
    /* ensure full height */
    width: 100%;
    /* full width */
    overflow-x: hidden;
    /* hide horizontal scrollbar */
    font-family: 'Arial', sans-serif;
}



:root {
    --primary-color: #dc3545 !important;
    --secondary-color: #0d6efd !important;
    --dark-color: #212529 !important;
    --light-bg: #f8f9fa !important;
}


#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    z-index: 9999;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#scrollToTop:hover {
    background-color: #0d6efd;
}

.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar i {
    font-size: 15px;
}

.top-right a {
    color: white;
    margin-left: 12px;
    font-size: 16px;
    transition: 0.3s;
}

.top-right a:hover {
    color: var(--primary-color);
}

.top-right i {
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.top-right i:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }

    .top-bar-content {
        display: flex;
        justify-content: space-around;
        gap: 2px;
    }

    .top-right a {
        margin-left: 10px;
    }

    .top-right i {
        font-size: 14px;
        padding: 5px;
    }
}

.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0px !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 2px !important;
}

.logo-img {
    width: 100px !important;
    height: 100px !important;
}

.brand-text h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.brand-text p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 12px;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.3s;
}

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

@media (max-width: 576px) {

    .logo-img {
        width: 70px !important;
        height: 70px !important;
    }

    .navbar-brand {
        gap: 0px !important;
    }

    .brand-text h4 {
        font-size: 14px !important;
    }

    .brand-text p {
        font-size: 11px !important;
    }
}

@media (max-width: 767px) {

    .logo-img {
        width: 70px !important;
        height: 70px !important;
    }

    .navbar-brand {
        gap: 0px !important;
    }

    .brand-text h4 {
        font-size: 13px !important;
    }

    .brand-text p {
        font-size: 10px !important;
    }
}

/* Admin Panel Button Styling */
.btn-admin-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-admin-panel span {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
}

.btn-admin-panel:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    color: white !important;
}

.btn-admin-panel i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-login {
    background: linear-gradient(45deg, #ff7f7f, #7fbfff);
    color: white !important;
    padding: 1px 20px;
    border-radius: 50px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(127, 191, 255, 0.4);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-login i {
    flex-shrink: 0;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 191, 255, 0.5);
    background: linear-gradient(45deg, #7fbfff, #ff7f7f);
    color: #fff !important;
}

@media (min-width: 992px) {
    .btn-login {
        margin: 15px;
    }
}

@media (max-width: 991px) {
    .btn-login {
        width: 100%;
        margin: 10px auto 0;
        text-align: center;
        padding: 10px 0;
        display: block;
    }
}

.navbar-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
}

.navbar-nav .nav-item.ms-lg-3 {
    margin-left: auto;
}

@media (max-width: 991px) {
    .navbar-nav {
        flex-wrap: nowrap !important;
        overflow-x: auto;
    }

    .navbar-nav::-webkit-scrollbar {
        display: none;
    }

    .btn-login {
        margin-left: 10px;
        white-space: nowrap;
        padding: 6px 16px;
    }
    
    .btn-admin-panel {
        margin-left: 10px;
        white-space: nowrap;
        padding: 6px 16px;
    }
}

/* Footer */

.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.notice-banner {
    background: #dc3545;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.notice-content {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.notice-content span {
    white-space: nowrap;
    display: inline-block;
    margin-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.notice-content:hover {
    animation-play-state: paused;
}

/* Mobile Navbar Styling */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item,
    .navbar-nav li {
        border-bottom: 1px solid #e5e5e5;
        /* Border for each li */
        width: 100%;
        padding: 1px 0;
    }

    .navbar-nav .nav-link {
        width: 100%;
        display: block;
    }

    .dropdown-menu {
        text-align: center;
        border: none;
    }

    .dropdown-menu .nav-link {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
}




/* HEADER && FOOTER CSS END */



/* HOME PAGE CSS START */

.video-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.accordion-button::after {
    display: none;
}

.accordion-button.collapsed .accordion-icon::before {
    content: '+';
}

.accordion-button:not(.collapsed) .accordion-icon::before {
    content: '×';
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 50px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: block;
    margin-bottom: 12px;
    width: max-content;
}

.hero-btn.btn-primary {
    background: #d8262c;
    border: none;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        /* extra-small devices */
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}


.popular-searches p {
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.popular-searches a {
    margin-right: 8px;
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s;
}

.popular-searches a:hover {
    color: #0056b3;
}

.video-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 80px !important;
}

.video-fluid {
    width: 100%;
    height: 60%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
}

.card {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 4px !important;
}

.carousel-inner .row {
    margin-top: 20px;
    margin-bottom: 20px;
}


#carouselCounter {
    color: #000;
    font-weight: 500;
    font-size: 1.1rem;
}

.disabled {
    opacity: 0.3;
    pointer-events: auto;
    cursor: not-allowed;
}

.container-bottom {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    background-color: white;
    padding: 80px 20px;
    margin: 0 auto;
}

.info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    padding: 0 20px;
}

.bangor-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .bangor-buttons button {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 992px) {
    .bangor-buttons button {
        flex: 1 1 auto;
    }
}

.btn {
    color: #000;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}


.btn:active {
    transform: translateY(0);
}

.btn-wide {
    width: 100%;
    max-width: 500px;
}

@media (max-width: 768px) {

    .video-wrapper {
        margin-top: 40px !important;
    }

    .bangor-section {
        margin-top: -60px;
    }

    .carousel-inner {
        margin-top: -20px;
    }

    .popular-searches {
        margin-top: -40px;
        margin-bottom: 20px;
    }

    .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 12px;
    }

    .bangor-buttons .btn {
        font-size: 14px;
    }

    .info-text {
        font-size: 14px;
    }

    .container-bottom {
        padding: 30px 15px;
        text-align: left;
        width: 100%;
    }
}

#one-btn:hover {
    background-color: #fff !important;
    color: #000000 !important;
}


.accordion-button:hover {
    border: 1px solid black;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.notice-banner {
    background: #dc3545;
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.notice-content {
    display: flex;
    align-items: center;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.notice-content span {
    white-space: nowrap;
    display: inline-block;
    margin-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.notice-content:hover {
    animation-play-state: paused;
}

.notice-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #dc3545;
    color: white;
    z-index: 9999;
    padding: 10px 0;
    font-size: 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
}

.notice-content span {
    white-space: nowrap;
}


/* HOME PAGE CSS END */



/* ABOUT US PAGE CSS START */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.founder-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.founder-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-section {
    background: #d8262c !important;
    color: white;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box i {
    font-size: 50px;
    margin-bottom: 15px;
}

.stat-box h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}


.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
}


/* ABOUT US PAGE CSS END */


/* COURSES PAGE CSS START */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.course-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card img {
    transition: transform 0.3s ease;
}

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

.course-card .card-body {
    padding: 2rem;
}

.course-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.course-card .row {
    margin-bottom: 1rem;
}

.course-card .text-muted {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d !important;
}

.course-card .fw-bold {
    color: var(--dark-color);
    font-weight: 600;
}

.course-card .text-success {
    color: #28a745 !important;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

.no-courses {
    text-align: center;
    padding: 4rem 0;
}

.no-courses i {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.no-courses h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.no-courses p {
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* COURSES PAGE CSS END */

/* Faculty US PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faculty-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

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

.faculty-card .card-body {
    padding: 2rem;
    text-align: center;
}

.faculty-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.faculty-card:hover .faculty-image {
    transform: scale(1.05);
}

.faculty-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--primary-color);
}

.faculty-placeholder i {
    font-size: 3rem;
    color: white;
}

.faculty-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faculty-card .designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.faculty-card .specialization {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.faculty-card .qualification,
.faculty-card .experience {
    margin-bottom: 1rem;
}

.faculty-card .qualification h6,
.faculty-card .experience h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faculty-card .qualification p,
.faculty-card .experience p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-success {
    border-color: #28a745;
    color: #28a745;
    border-radius: 10px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
}

.stats-section {
    background: linear-gradient(135deg, var(--light-bg), #e9ecef);
    padding: 4rem 0;
}

.stat-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card .card-body {
    padding: 2rem;
    text-align: center;
}

.stat-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

.no-faculty {
    text-align: center;
    padding: 4rem 0;
}

.no-faculty i {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.no-faculty h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.no-faculty p {
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Faculty US PAGE CSS END */


/* FACILITIES US PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.facility-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

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

.facility-card .card-body {
    padding: 2rem;
    text-align: center;
}

.facility-card i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.facility-card:hover i {
    transform: scale(1.1);
}

.facility-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.facility-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* FACILITIES  PAGE CSS END */


/* FEE STRUCTURE  PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.fee-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.fee-table table {
    margin-bottom: 0;
}

.fee-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.fee-table th {
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.fee-table td {
    border: none;
    padding: 1.5rem;
    text-align: center;
    vertical-align: middle;
}

.fee-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.fee-table tbody tr:hover {
    background-color: #e9ecef;
}

.course-name {
    font-weight: 600;
    color: var(--dark-color);
}

.fee-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.duration {
    color: #6c757d;
    font-weight: 500;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .fee-table th,
    .fee-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* FEE STRUCTURE  PAGE CSS END */


/* SCHOLARSHIP  PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.scholarship-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
    margin-bottom: 2rem;
}

.scholarship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.scholarship-card .card-body {
    padding: 2rem;
}

.scholarship-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.scholarship-card .amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.scholarship-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.scholarship-card .criteria {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.scholarship-card .criteria h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scholarship-card .criteria ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.scholarship-card .criteria li {
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* SCHOLARSHIP  PAGE CSS END */


/* PROSPECTUS  PAGE CSS start */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.prospectus-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
}

.prospectus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.prospectus-card .card-body {
    padding: 2rem;
}

.prospectus-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.prospectus-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* PROSPECTUS  PAGE CSS END */


/* STORY  PAGE CSS START */

.hero-section {
    position: relative;
    overflow: hidden;
    margin-top: 100px !important;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 44px;
        /* Reduce top margin for mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Smaller heading for mobile */
    }

    .hero-content p.lead {
        font-size: 1.2rem;
        /* Smaller lead text */
    }

    .hero-content p {
        font-size: 0.95rem;
        /* Smaller paragraph text */
    }

    .hero-features .feature-item i {
        font-size: 1.5rem;
        /* Smaller icons */
    }

    .hero-features .feature-item span {
        font-size: 0.9rem;
        /* Smaller feature text */
    }

    .hero-content {
        margin-top: 30px;
        /* Adjust top margin for mobile */
    }
}

.hero-title {
    animation: fadeInDown 1s ease forwards;
}

.hero-desc {
    animation: fadeInUp 1s ease forwards;
}

.hero-card {
    background-color: #fff;
    border-radius: 15px;
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-card:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-card:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-card:nth-child(4) {
    animation-delay: 0.8s;
}

.hero-card:nth-child(5) {
    animation-delay: 1s;
}

.hero-card:nth-child(6) {
    animation-delay: 1.2s;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* feature section */
.featured-stories h2 {
    animation: fadeInDown 1s ease forwards;
}

.featured-stories p {
    animation: fadeInUp 1s ease forwards;
}

.story-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.story-card:nth-child(1) {
    animation-delay: 0.2s;
}

.story-card:nth-child(2) {
    animation-delay: 0.4s;
}

.story-card:nth-child(3) {
    animation-delay: 0.6s;
}

.story-card:nth-child(4) {
    animation-delay: 0.8s;
}

.story-card:nth-child(5) {
    animation-delay: 1s;
}

.story-card:nth-child(6) {
    animation-delay: 1.2s;
}

.story-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* detail story */
.detailed-story h2 {
    animation: fadeInDown 1s ease forwards;
}

.story-row {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.story-row:nth-child(1) {
    animation-delay: 0.2s;
}

.story-row:nth-child(2) {
    animation-delay: 0.4s;
}

.story-img {
    transition: transform 0.5s, box-shadow 0.5s;
}

.story-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* counter */
.impact-section h2 {
    animation: fadeInDown 1s ease forwards;
}

.impact-section p {
    animation: fadeInUp 1s ease forwards;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease forwards;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STORY  PAGE CSS END */


/* STUDY  PAGE CSS START */

.input-group input:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.btn-danger:hover {
    background-color: #c82333 !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.dropdown-menu {
    border: none;
    border-radius: none;
    margin-top: 10px;
}

.dropdown-item:hover {
    background-color: #dc3545;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }
}

.object-fit-cover {
    object-fit: cover;
}

.search-btn {
    background-color: #f8f9fa !important;
    border: none !important;
    border-radius: 0 !important;
}

.search-btn:hover,
.search-btn:focus {
    background-color: #f8f9fa !important;
    box-shadow: none !important;
}

.search-input:focus {
    box-shadow: none !important;
}

.level-study .card {
    border: none;
    border-radius: 0;
    transition: transform 0.3s;
}

.level-study .card:hover {
    transform: translateY(-5px);
}

.level-study .card-title {
    font-weight: 600;
    font-size: 1rem;
}

.level-study .card-text {
    font-size: 0.85rem;
    color: #333;
}

.video-thumbnail {
    max-width: 800px;
}

.play-button {
    font-size: 60px;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.play-button i {
    margin-left: 3px;
}

/* STUDY  PAGE CSS END */


/* NOTIFICATION  PAGE CSS START */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.notification-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
}

.notification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.notification-card .card-body {
    padding: 2rem;
}

.notification-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.notification-card .date {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.notification-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.notification-card .type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.notification-card .type.admission {
    background: #d4edda;
    color: #155724;
}

.notification-card .type.exam {
    background: #fff3cd;
    color: #856404;
}

.notification-card .type.general {
    background: #d1ecf1;
    color: #0c5460;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* NOTIFICATION  PAGE CSS END */


/* POLICY  PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-bottom: 2rem;
}

.policy-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.policy-content ul {
    color: #6c757d;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }
}

/* POLICY  PAGE CSS END */

/* FAQ  PAGE CSS START */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    margin: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #c82333, #0b5ed7);
}

.faq-answer {
    padding: 1.5rem;
    color: #6c757d;
    margin: 0;
    border-top: 1px solid #e9ecef;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* FAQ  PAGE CSS END */

/* PRIVACY POLICY  PAGE CSS START */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.policy-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.policy-card .card-body {
    padding: 2rem;
}

.policy-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* PRIVACY POLICY  PAGE CSS END */


/* ADMISSION   PAGE CSS START */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.admission-form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.admission-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.requirements-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
}

.requirement-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.requirement-card .card-body {
    padding: 2rem;
}

.requirement-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.requirement-card i {
    color: var(--primary-color);
    margin-right: 10px;
}

.requirement-card .list-unstyled li {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.requirement-card .list-unstyled li i {
    color: #28a745;
}

.courses-section {
    padding: 4rem 0;
}

.course-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.course-card .card-body {
    padding: 2rem;
}

.course-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ADMISSION   PAGE CSS END */

/* GALLERY   PAGE CSS START */

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    transition: transform 0.3s ease;
}

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

.gallery-card .card-body {
    padding: 1.5rem;
}

.gallery-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.gallery-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 12px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.campus-life-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
}

.campus-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.campus-card .card-body {
    padding: 2rem;
    text-align: center;
}

.campus-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.campus-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.campus-card p {
    color: #6c757d;
}

.facilities-section {
    padding: 4rem 0;
}

.facility-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.facility-card .card-body {
    padding: 2rem;
    text-align: center;
}

.facility-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.facility-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.facility-card p {
    color: #6c757d;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* GALLERY   PAGE CSS END */

/* CONTACT   PAGE CSS START */


.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #ffd700;
}

.feature-item span {
    font-size: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.contact-info-card h4 {
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffd700;
    margin-top: 0.2rem;
}

.contact-info-item div h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item div p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.contact-info-item div a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-item div a:hover {
    color: white;
    text-decoration: underline;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.quick-links-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.quick-links-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quick-links-card .card-body {
    padding: 2rem;
    text-align: center;
}

.quick-links-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-links-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.quick-links-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.map-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 4rem 0;
}

.map-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.map-content {
    padding: 3rem;
    text-align: center;
}

.map-content i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* CONTACT   PAGE CSS END */

/* BLOGS   PAGE CSS START */
.hero-blogs {
    background: linear-gradient(135deg, rgba(123, 193, 255, 0.12), rgba(255, 147, 147, 0.06));
    border-radius: 12px;
    padding: 48px 24px;
    margin-bottom: 30px;
}

.post-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(24, 24, 24, 0.08);
}

.post-image {
    height: 190px;
    object-fit: cover;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.tag-pill {
    font-size: .78rem;
    padding: .22rem .5rem;
    border-radius: 999px;
}

.sidebar-card {
    border-radius: 12px;
    padding: 18px;
}

.read-more {
    font-weight: 600;
}

@media (max-width: 767px) {
    .post-image {
        height: 170px;
    }
}

/* Default styles (desktop) */
.responsive-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.responsive-text {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
    text-align: center;
}

/* Mobile responsive styles */
@media (max-width: 576px) {
    .responsive-title {
        font-size: 24px !important;
        margin-bottom: 8px;
    }

    .responsive-text {
        font-size: 14px !important;
        max-width: 90% !important;
    }
}

/* Card default (desktop) */
.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 480px;
    display: flex;
    flex-direction: column;
}

.story-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.story-content {
    padding: 22px;
}

.story-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.story-link {
    text-decoration: none;
    font-weight: 600;
    color: #007bff;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .story-card {
        height: auto;
        /* allow flexible height */
    }

    .story-img {
        height: 180px;
        /* smaller image on mobile */
    }

    .story-title {
        font-size: 16px !important;
        margin-bottom: 8px;
    }

    .story-text {
        font-size: 13px !important;
        margin-bottom: 10px;
    }

    .story-link {
        font-size: 14px !important;
    }
}

@media (max-width:768px) {
    section h2 {
        font-size: 28px !important;
        text-align: center !important;
    }

    section h3 {
        font-size: 24px !important;
        text-align: center !important;
    }

    section p {
        font-size: 15px !important;
        text-align: center !important;
    }

    section div[style*="display:flex"] {
        flex-direction: column !important;
        gap: 25px !important;
    }

    section a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 14px 0 !important;
    }
}

/* BLOGS   PAGE CSS END */


/* Admin Side css Button of listing */