:root {
    --primary: #184989;
    --primary-dark: #3a56d4;
    --secondary: #3f37c9;
    --dark: #1b263b;
    --dark-alt: #415a77;
    --light: #f8f9fa;
    --light-alt: #e9ecef;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #4cc9f0;
    --warning: #f8961e;
    --danger: #ef233c;
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

#menuIcon,
#MenuClone,
.hamburger,
.nav-links-parent,
.nav-links {
    max-width: 100vw;
    overflow-x: hidden;
}

img,
div,
nav,
header,
footer {
    max-width: 100%;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red; for drawing border lie */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #184989;
    border-radius: 200px;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #184989;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #fff;
    color: #184989;
    border-color: #184989;
}

.btn-outline {
    background-color: #292c29;
    color: #fff;
}

.btn-outline:hover {
    border-color: #292c29;
    background-color: var(--white);
    color: #292c29;
}

.btn-large {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========== NAVBAR ========== */
.navbar {
    height: 5rem;
    /* 👈 Fixed height */
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Clone navbar starts hidden and translated up */
.clone-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    justify-content: center;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Show clone navbar: fade in + slide down */
.clone-navbar.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    /* ← Slide in to original position */
}

.clone-navbar .shown {
    display: flex;
}

.reach {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
    background: var(--white);
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


.logo {
    display: inline-block;
    position: relative;
    display: flex;
    padding-top: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 11rem;
    height: 3.5rem;
}

.logo img {
    width: 11rem;
    height: 11rem;
}



.shiny-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.img-shine-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    transform: rotate(30deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.25) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%);
    animation: shinePass 10s ease-in-out infinite;
    opacity: 1;
}

@keyframes shinePass {
    0% {
        left: -60%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        left: 130%;
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}





.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.nav-links-parent {
    display: flex;
    gap: 1.5rem
}

#menuIcon,
#MenuClone {
    display: none;
}

.menu__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    cursor: pointer;
    z-index: 1001;
    position: relative
}

/* Line base style */
.menu__icon span {
    height: 3px;
    border-radius: 2px;
    background-color: black;
    display: block;
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0);
    animation: growFromLeft 0.4s forwards;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    border-radius: 2rem;
    position: relative
}

/* Varying widths */
.menu__icon span:nth-child(3) {
    width: 60%;
    animation-delay: 0.1s;
}

.menu__icon span:nth-child(2) {
    width: 75%;
    animation-delay: 0.25s;
}

.menu__icon span:nth-child(1) {
    width: 100%;
    animation-delay: 0.4s;
}

/* Grow from left animation */
@keyframes growFromLeft {
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Disable animation when active */
.menu__icon.active span {
    animation: none !important;
    transform: none;
    /* Reset transform so we can rotate cleanly */
    opacity: 1;
}

/* X formation */
.menu__icon.active span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg) translateY(6px);
    margin-top: 0;
}

.menu__icon.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu__icon.active span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translateY(-6px);
    margin-left: 0;
}



/* Animate from left to right */
@keyframes slideInRight {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Animate to X shape on click */
.hamburger.active .line1 {
    transform: rotate(45deg) translate(4px, 4px);
    width: 24px;
    opacity: 1;
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 24px;
    opacity: 1;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white, #fff);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-menu-clone {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white, #fff);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* transform: translateY(-150%); */
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

/* ========== FOOTER ========== */
.footer {
    background-color: #064dbc;
    color: var(--light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #000;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    #menuIcon,
    #MenuClone {
        display: flex;
    }

    .reach {
        display: none;
    }

    .nav-links-parent {
        display: none
    }

    .nav-links {
        display: none;

    }

    .hamburger {
        display: block;
        background-color: red;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 40px 0 80px;
    background: var(--white);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;

}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 4px;
    background-position: center;
    background-size: cover;
    height: 25rem;
    width: 20rem;
    background-color: #ffffff;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out, filter 0.5s ease-in-out;
    filter: blur(10px);
}

.hero-image.loaded {
    filter: blur(0);
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1;
}

.hero h1 span {
    font-size: 1.5rem;
}

.hero .lead {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    transform: translateX(50px);
    /* Start from the right */
    transition: opacity 0.6s ease, transform 0.6s ease;
}



.feature-card.in-view {
    opacity: 1;
    transform: translateX(0);
    /* Move to natural position */
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.in-view.fade-in-left,
.in-view.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}


.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    color: var(--primary);
    font-size: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-alt);
}

.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: rgba(67, 97, 238, 0.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px 20px;
    }

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

/* ========== CTA SECTION ========== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-alt) 0%, var(--light-alt) 100%);
    color: #000;
    text-align: center;
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        flex: none;
        width: 100%;
    }

    
.hero-image {
    flex: none;
    background-size: cover;
    background-position: 35% center;
    background-repeat: no-repeat;
}

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .feature-card {
        padding: 20px;
    }
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(248, 249, 250, 1) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    margin-bottom: 30px;
    color: #000;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-card p {
    margin: 0;
    color: var(--gray);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-alt);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    display: block;
    width: 100%;
}

.contact-map {
    padding: 0 0 60px;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 100px 0 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-content {
        padding: 40px 0;
    }
}

/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(248, 249, 250, 1) 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-hero p {
    font-size: 1.2rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text {
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 20px;
    color: #000;
}

.story-image {
    width: 100%;
    max-width: 35rem;  /* Limits it on larger screens */
    height: auto;
    aspect-ratio: 4 / 3; /* Maintains proportion (can be adjusted) */
    border-radius: 10px;
    background-position: center;
    background-size: cover;
    background-color: #eeeeee6e;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: background-image 0.5s ease-in-out, filter 0.5s ease-in-out;
    filter: blur(10px);
}

.story-image.loaded {
    filter: blur(0);
}


.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.our-team {
    padding: 80px 0;
    background-color: var(--light-alt);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(67, 97, 238, 0.8);
    display: flex;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .social-links {
    opacity: 1;
}

.social-links a {
    color: var(--white);
    margin: 0 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.team-member .position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.our-values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(67, 97, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


#backToTop {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    bottom: 40px;
    right: 30px;
    z-index: 1000;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    pointer-events: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

#backToTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#backToTop:hover {
    background-color: #0056b3;
}

#backToTop i {
    font-size: 16px;
}