:root {
    --primary-color: #89022a;
    --secondary-color: #0f93eb;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
}

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

.dropdown-menu {
    background-color: var(--primary-color);
}

.dropdown-item:hover {
    color: black !important;
}

.dropdown-menu .dropdown-item {
    color: white;
}

.navbar-brand {
    width: 150px;
    height: 50px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.4s ease;
    border: none;
    outline: none;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

/* Gradient overlay to ensure text readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(4, 10, 47, 0.7) 0%,
        rgba(4, 10, 47, 0.3) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.hero-cta-btn:hover {
    background-color: #e56000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    color: white;
}

.hero-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
        min-height: auto;
    }

    .dropdown-menu .dropdown-item {
        color: white;
        text-wrap: wrap;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Statistics Section */
.stat-section {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Overlap effect */
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 15px;
    border-bottom: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .stat-card {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .stat-section {
        margin-top: -17px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* About Section */
.about-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    font-size: clamp(1.2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-img-wrapper {
    position: relative;
    padding: 10px;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
}

.btn-about {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 147, 235, 0.2);
}

@media (max-width: 768px) {
    .about-section {
        text-align: center;
    }

    .about-img-wrapper {
        margin-top: 30px;
    }
}

/* Affiliate Section */
.affiliate-section {
    background-color: #f8f9fa;
}

.affiliate-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.affiliate-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.affiliate-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Service Section */
.service-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.service-title {
    font-size: clamp(1.2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-section .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .view-all-link {
        margin-top: 20px;
        display: inline-block;
    }
}

/* Why Choose Us Section */
.why-section {
    background-color: var(--primary-color);
    color: #ffffff;
}

.why-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-title {
    font-size: clamp(1.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 500px;
}

.feature-icon-box {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-feature-item:hover .feature-icon-box {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.why-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (max-width: 991px) {
    .why-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .why-title {
        margin-left: auto;
        margin-right: auto;
    }

    .why-feature-item {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Step Process Section */
.process-section {
    background-color: #f8faff;
    overflow: hidden;
}

.process-main-title {
    font-size: clamp(1.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
}

.process-subtitle {
    color: #666;
    max-width: 600px;
    font-size: 1.1rem;
}

.process-wrapper {
    position: relative;
    z-index: 10;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--secondary-color) 0,
        var(--secondary-color) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1;
    opacity: 0.3;
}

.process-step {
    transition: all 0.4s ease;
}

.process-icon-box {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 3px solid #ffffff;
    transition: all 0.4s ease;
}

.process-icon-box i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.step-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 2px solid #ffffff;
}

.process-step:hover .process-icon-box {
    transform: translateY(-10px);
    background: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(15, 147, 235, 0.3);
}

.process-step:hover .process-icon-box i {
    color: #ffffff;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .process-line {
        display: none;
    }

    .process-step {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 15px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: #fcfbf8;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        135deg,
        rgba(15, 147, 235, 0.03) 0%,
        transparent 100%
    );
    z-index: 1;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-title {
    font-size: clamp(1.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    margin: 20px 15px;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    font-weight: 400;
}

.client-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-profile {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.client-location {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-section .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonial-section .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    margin: 5px 7px !important;
    transition: all 0.3s ease !important;
}

.testimonial-section .owl-dot.active span {
    background: var(--secondary-color) !important;
    width: 30px !important;
}

/* Contact Section */
.contact-section {
    background-color: #f8faff;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border: none;
}

.contact-info-side {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-diag-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.contact-diag-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--secondary-color);
}

.contact-item i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-map-placeholder {
    margin-top: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 15px;
    overflow: hidden;
}

.contact-form-side {
    padding: 60px 50px;
}

.contact-form .form-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-control-custom {
    background-color: #f2f4f7;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}

.form-select-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23040a2f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-submit-btn {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-weight: 700;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 147, 235, 0.2);
}

@media (max-width: 991px) {
    .contact-info-side,
    .contact-form-side {
        padding: 40px;
    }

    .contact-diag-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-map-placeholder {
        margin-top: 30px;
    }
}

/* Footer Section */
.footer-main {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 80px 0 0;
    font-family: "Be Vietnam Pro", sans-serif;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.designer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.designer-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 991px) {
    .footer-main {
        padding-top: 60px;
    }

    .footer-title {
        margin-top: 30px;
    }
}

/* Blog Section */
.blog-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(15, 147, 235, 0.3);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 20px;
    }
}

/* Our Story Section */
.our-story {
    background-color: #ffffff;
}

.story-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.story-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.story-img-wrapper img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.story-img-wrapper:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

 #go-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }
        
        #call {
            position: fixed;
            top: 50%;
            right: 20px;
            z-index: 999;
            background-color: #002051;
        }
        #whatsapp {
            position: fixed;
            top: 60%;
            right: 20px;
            z-index: 999;
        }
        
        @keyframes scaleUpDown {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }
        
        #call, #whatsapp {
            animation: scaleUpDown 1.5s ease-in-out infinite;
        }

        .float-button .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-bottom: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease-in-out;
        }

        .float-button .btn i {
            font-size: 20px;
        }

        .float-button .btn:hover {
            transform: scale(1.1);
        }

        #go-to-top {
            display: none;
        }

