/* General Styles */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Secondary Header */
.secondary-header {
    background: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    position: relative;
    z-index: 1100;
    transition: top 0.3s ease;
}

.quick-links,
.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links a,
.social-media a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 5px 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-bar a {
    background: #0077cc;
    color: white;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
    text-decoration: none;
}

.social-media a {
    width: 30px;
    height: 30px;
    background: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
}

.logo h2 {
    color: #004080;
    font-size: 2.0rem;
}

/* Desktop Navigation */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.desktop-menu>li {
    position: relative;
}

.desktop-menu a {
    color: #003366;
    text-decoration: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.desktop-menu a:hover {
    background: #f0f8ff;
}

.desktop-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.desktop-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    padding: 10px 20px;
    color: #333;
}

.submenu a:hover {
    background: #e6f2ff;
    color: #004080;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #003366;
    cursor: pointer;
}



.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}



.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #09549e;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    color: #003366;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav .submenu-trigger {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu a {
    padding: 10px 0;
    color: #555;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 2;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .logo h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .secondary-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .quick-links,
    .social-media {
        justify-content: center;
        width: 100%;
    }

    .search-bar {
        width: 100%;
        justify-content: center;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo h2 {
        font-size: 2.1rem;
    }
}


/* MAIN BANNER */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --container: 120rem;
    --m-auto: 0 auto;
    --white: #fff;
    --bg: rgb(238, 238, 241);
    --arrow-bg: rgb(254, 254, 254);
    --dot: rgb(206, 206, 206);
    --dot-active: rgb(135, 89, 214);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    font-size: 1.6rem;
}

.hero-slider {
    max-width: var(--container);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 51rem;
    /* Desktop height */
    position: relative;
    margin: 3rem auto;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: var(--arrow-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

.arrow ion-icon {
    font-size: 2.5rem;
}

.prev {
    left: 2rem;
}

.next {
    right: 2rem;
}

.slider-container {
    max-width: var(--container);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-container {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 1rem;
    max-width: 80%;
    z-index: 10;
}

.slider-controler {
    margin-top: 1rem;
}

.slider-controler .dot {
    display: inline-block;
    text-decoration: none;
    width: 1rem;
    height: 1rem;
    background: var(--dot);
    border-radius: 1rem;
    margin: 0 0.5rem;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.dot.active {
    width: 2.7rem;
    background: var(--dot-active);
    transition: all 0.5s ease-in-out;
}

/* Desktop default - maintain full height and width */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* MOBILE VIEW — Fixed 16:9 Aspect Ratio */
@media (max-width: 768px) {

    .hero-slider,
    .slider-container,
    .slide {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
    }
}






/* Animated Text  FOR HEADER Styles */
.animated-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    background: #252839;
}

.animated-text {
    position: relative;
    font-size: 5vw;
    color: #252839;
    -webkit-text-stroke: 0.3vw #383d52;
    text-transform: uppercase;
}

.animated-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #01fe87;
    -webkit-text-stroke: 0vw #383d52;
    border-right: 2px solid #01fe87;
    overflow: hidden;
    animation: animateText 6s linear infinite;
}

/* Base style */
.animated-text {
    font-size: 5rem;
    /* Adjust as needed for desktop */
    font-weight: bold;
    text-align: center;
    /* any existing animation styles */
}

/* Mobile view: increase font size */
@media (max-width: 768px) {
    .animated-text {
        font-size: 3.8rem;
        /* Increase font size on mobile */
    }
}

@keyframes animateText {

    0%,
    10%,
    100% {
        width: 0;
    }

    70%,
    90% {
        width: 100%;
    }
}


/* SECTION */
.hdrsf-curriculum-section {
    padding: 70px 20px;
    background: #ffffff;
}

/* HEADER */
.hdrsf-curriculum-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

/* ICON CARDS */
.hdrsf-curriculum-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.hdrsf-curriculum-card {
    background: #3134f5;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 3px solid rgb(50, 50, 243);
    /* Blue outline */
}


.hdrsf-icon {
    font-size: 46px;
    margin-bottom: 10px;
}

.hdrsf-curriculum-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: white;
}

.hdrsf-curriculum-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: white;
}

/* TIMELINE */
.hdrsf-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hdrsf-timeline-title {
    text-align: center;
    margin-bottom: 40px;
}

.hdrsf-timeline-line {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 0;
    width: 3px;
    background: #ddd;
    transform: translateX(-50%);
    
}

.hdrsf-timeline-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    
}

.hdrsf-timeline-item {
    background: #e0e6eb;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 3px solid rgb(184, 184, 245);
}

.hdrsf-timeline-item span {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hdrsf-timeline-line {
        display: none;
    }

    .hdrsf-timeline-items {
        flex-direction: column;
    }

    .hdrsf-timeline-item {
        width: 100%;
    }
}

/* ANIMATION BASE */
.hdrsf-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hdrsf-animate.hdrsf-show {
    opacity: 1;
    transform: translateY(0);
}



/* Why Choose Us Section - Desktop */
#why-choose {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #f9f9f9;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#why-choose.show {
    opacity: 1;
    transform: translateY(0);
}

#image-slider {
    position: relative;
    width: 50%;
    height: 300px;
    overflow: hidden;
}

#image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#image-slider img.active {
    opacity: 1;
}

.text-content {
    width: 50%;
    padding-left: 40px;
}

.feature {
    background: blue;
    color: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.2em;
}

.feature i {
    margin-right: 10px;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    #why-choose {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        text-align: center;
    }

    #image-slider {
        width: 100%;
        max-width: 350px;
        height: 200px;
        margin: 0 auto;
        position: relative;
    }

    #image-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }

    .text-content {
        width: 100%;
        max-width: 500px;
        margin-top: 20px;
        padding-left: 0;
    }

    .feature {
        font-size: 1em;
        padding: 12px;
        margin: 8px auto;
        width: 90%;
        justify-content: center;
    }

    .feature i {
        font-size: 1.2em;
        margin-right: 8px;
    }
}





/* FOOTER*/
.footer-area {
    margin-top: 100px;
    padding: 100px 0;
    background: #2749c4;
    background: -moz-linear-gradient(left, #2749c4 0%, #6085b2 100%);
    background: -webkit-linear-gradient(left, #2749c4 0%, #6085b2 100%);
    background: linear-gradient(to right, #2749c4 0%, #6085b2 100%);
    color: #fff;
    position: relative;
    text-align: center;
    /* Center align content for smaller screens */
}

.main {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.single-footer {
    width: 230px;
}

.single-footer:first-child {
    width: 400px;
}

.single-footer h4 {
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-social {
    margin-top: 20px;
}

.single-footer ul {
    list-style: none;
    padding: 0;
}

.single-footer ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.single-footer ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}

.single-footer ul li a:hover {
    text-decoration: underline;
}

.single-footer ul li a i {
    position: absolute;
    left: 0;
    top: 5px;
}

.copy {
    text-align: center;
    text-transform: capitalize;
    margin-top: 50px;
}

/* Footer Wave Animation */
.footer-wave-box {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 50px;
    overflow: hidden;
}

.footer-wave {
    background-image: url('img/main-slider-02.jpg');
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: repeat-x;
    animation: footer_wave 5s linear infinite;
}

@keyframes footer_wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main {
        width: 95%;
    }

    .single-footer {
        width: 45%;
    }

    .single-footer:first-child {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .footer-area {
        padding: 80px 0;
    }

    .single-footer {
        width: 100%;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-area {
        padding: 60px 0;
    }

    .footer-wave-box {
        height: 40px;
    }

    .footer-wave {
        width: 250%;
    }
}

@media (max-width: 576px) {
    .footer-area {
        padding: 50px 0;
    }

    .footer-wave-box {
        height: 30px;
    }

    .footer-wave {
        background-size: contain;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

/* Style for Scroll-to-Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 50px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease-in-out;
}

#scrollTopBtn:hover {
    background-color: #0056b3;
}


/* ACADEMIC FILES  */

.academic-section {
    padding: 3rem 1rem;
    background-color: #f8f9fc;
    font-family: Arial, sans-serif;
    text-align: center;
}

.academic-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out forwards;
}

.academic-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.academic-tab {
    padding: 1rem 2rem;
    border: none;
    background-color: #6c63ff;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.academic-tab:hover,
.academic-tab.active {
    background-color: #4b46e0;
}

.academic-tab:hover {
    background-color: #4b46e0;
}

.academic-tab.active {
    background-color: #28a745;
    /* Green */
    color: #fff;
}

.academic-rows {
    max-width: 600px;
    margin: 0 auto;
}

.academic-term-row {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    background-color: #e6e9ff;
    border-radius: 10px;
    margin-top: 1rem;
    animation: fadeInUp 0.7s ease-in-out;
}

.academic-term {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.academic-term-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
    animation: slideIn 1s ease forwards;
}

.academic-download-btn {
    padding: 0.6rem 1.2rem;
    background-color: #6c63ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.academic-download-btn:hover {
    transform: scale(1.05);
    background-color: #554fd8;
}

.academic-tab {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.academic-tab:hover {
    background-color: #4b46e0;
    color: #fff;
}

.academic-tab.active {
    background-color: #28a745;
    /* Green */
    color: #fff;
}


/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* COUNTER */
body {
    font-family: sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title {
    text-align: center;
    margin: 1em;
}

.counters {
    padding: 3em 2em;
    background: #064496;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
}

.counters>div {
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em 2em;
    /* Restored gap to prevent unwanted spacing issues */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counter {
    position: relative;
    padding: 1em;
}

.counter h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}






/* Animated number color effect */
@keyframes colorPulse {
    0% {
        color: #ffffff;
    }

    50% {
        color: #ffe600;
    }

    100% {
        color: #c05d0c;
    }
}

.counter span {
    animation: colorPulse 2s ease-in-out infinite;
}

/* MOBILE VIEW FIX */
@media screen and (max-width: 500px) {
    .counters>div {
        grid-template-columns: 1fr;
        row-gap: 1em;
    }

    .counter {
        padding: 0.5em 1em;
    }

    .counter::before {
        content: '';
        background: #fff;
        position: absolute;
        height: 2px;
        width: 80%;
        bottom: -1.5em;
        left: 10%;
    }

    .counter:last-child::before {
        display: none;
    }

    .counter h1 {
        font-size: 2.5em;
        margin-bottom: 0.3em;
    }

    .counter h3 {
        font-size: 1.1em;
    }
}

/* Zoom animation */
@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.counter span {
    animation: colorPulse 2s ease-in-out infinite, zoomPulse 2s ease-in-out infinite;
    display: inline-block;
}

/* Zoom + color animation for numbers */
@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes colorPulse {
    0% {
        color: #ffffff;
    }

    50% {
        color: #ffe600;
    }

    100% {
        color: #cf0e0e;
    }
}

/* Apply animation to number */
.counter span {
    animation: colorPulse 2s ease-in-out infinite, zoomPulse 2s ease-in-out infinite;
    display: inline-block;
}

/* Apply zoom only to h3 text */
.counter h3 {
    animation: zoomPulse 2s ease-in-out infinite;
    display: inline-block;
}


/* FOOTER*/
.footer-area {
    margin-top: 100px;
    padding: 100px 0;
    background: #062f68;

    color: #fff;
    position: relative;
    text-align: left;
    /* Center align content for smaller screens */
}

.main {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;

}

.footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.single-footer {
    width: 230px;
}

.single-footer:first-child {
    width: 400px;
}

.single-footer h4 {

    font-size: 22px;
    margin-bottom: 20px;

}

.footer-social a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.single-footer ul {
    list-style: none;
    padding: 0;
}

.single-footer ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.single-footer ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    /* Add this line */
    padding-left: 20px;
    /* Add this to make space for the icon */
}


.single-footer ul li a:hover {
    text-decoration: underline;
}


/* Style for the powered by text */
.copy .powered-by {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.copy .powered-by a {
    color: #ffab00;
    /* Customize the link color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.copy .powered-by a:hover {
    color: #f39c12;
    /* Hover effect color */
}

.copy {
    text-align: center;
    text-transform: capitalize;
    margin-top: 50px;
}


/* Center the school logo */
.logo-footer {
    width: 230px;
    /* Same width as other sections */
    text-align: center;
    margin: 0 auto;
    /* Centers the logo horizontally */
}

.footer-logo {
    max-width: 180px;
    /* Adjust the size if needed */
    width: 100%;
    height: auto;
}

/* Center the social media icons */
.footer-social-container {
    display: flex;
    justify-content: center;
    /* Center the social media icons */
    align-items: center;
    margin-top: 30px;
    /* Add margin for spacing if needed */
}

.footer-social {
    text-align: center;
    /* Ensures social icons are centered inside the container */
}

/* Mobile View Adjustments */
@media (max-width: 992px) {
    .footer {
        flex-direction: column;
        align-items: center;
        /* Center all footer content */
    }

    .single-footer {
        width: 100%;
        text-align: left;
        /* Center the text on mobile */
    }

    /* Center the logo and social icons on mobile */
    .logo-footer,
    .footer-social-container {
        width: 100%;
        /* Take full width on mobile */
        text-align: center;
        /* Align content to the center */
    }

    .footer-logo {
        max-width: 150px;
        /* Make logo smaller on mobile */
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    /* Shift h4 to the right on mobile */
    .single-footer h4 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-left: 50px;
        /* Add padding to shift h4 slightly to the right */
        text-align: left;
        /* Ensure text aligns left */
    }
}


/* Optional: Logo size adjustment for smaller screens */
@media (max-width: 576px) {
    .footer-logo {
        max-width: 120px;
        /* Even smaller logo on extra small screens */
    }
}

/* Style for the logo image with a round circle */
.logo-footer img {
    width: 150px;
    /* Adjust the size of the logo */
    height: 150px;
    /* Keep the height equal to width for a perfect circle */
    object-fit: cover;
    /* Ensure the image fits within the circle */
    border-radius: 50%;
    /* Creates the circular shape */
    border: 5px solid #fff;
    /* Add a white border around the logo */
    padding: 10px;
    /* Optional: Adds space between the logo and the border */
    transition: all 0.3s ease;
    /* Smooth transition for hover effect */
}

/* Hover effect for the logo */
.logo-footer img:hover {
    transform: scale(1.1);
    /* Slightly enlarge the logo on hover */
    border-color: #ffab00;
    /* Change border color on hover (you can customize the color) */
}

/* Mobile View Adjustments */
@media (max-width: 992px) {
    .logo-footer img {
        width: 120px;
        /* Adjust logo size for mobile */
        height: 120px;
        /* Keep it square for a perfect circle */
        padding: 8px;
        /* Adjust padding for mobile */
    }

    .footer-social-container {
        flex-direction: column;
        /* Stack the social icons vertically on mobile */
        margin-top: 15px;
        /* Add space between logo and icons */
    }

    .footer-social a {
        width: 35px;
        /* Adjust icon size */
        height: 35px;
        line-height: 35px;
    }
}