/* Resetting margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; /* White background for freshness */
    overflow-x: hidden;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #1A1A2E; /* Dark Navy (same as footer) */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
}

/* Logo Styles */
header .logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
}

header .logo img {
    width: 72px; /* Adjust size of logo */
    height: 72px;
    object-fit: contain; /* Ensure logo retains aspect ratio */
}

header .logo span {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFFFFF; /* Match header text color */
    text-transform: uppercase;
    letter-spacing: 1px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* Navigation Links */
nav ul li a {
    text-decoration: none;
    color: #FFFFFF; /* White text */
    font-size: 1.2em;
    font-weight: 500;
    position: relative;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    background: transparent; /* Transparent to blend with navbar */
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
    border: none;
    box-shadow: none;
}

/* Hover Effect: Border and Shadow */
nav ul li a:hover {
    color: #FFA500; /* Bright Orange text on hover */
    text-shadow: none; /* Remove shadow for hover */
    border: 2px solid #FFA500; /* Bright Orange border */
    border-radius: 5px; /* Keep a button-like appearance */
    box-shadow: inset 0 0 10px rgba(255, 165, 0, 0.6); /* Bright inner glow effect */
}


/* Hamburger Icon for Mobile */
.hamburger {
    display: none;
    font-size: 2.5em;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hamburger:hover {
    transform: rotate(90deg); /* Rotate 90 degrees on hover */
}

.hamburger.open {
    transform: rotate(45deg); /* Rotate 45 degrees for a cross icon */
    color: #FFA500; /* Bright orange color when active */
}

/* Mobile Navigation Styling */
@media screen and (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 60px;
        right: 30px;
        background-color: #1A1A2E; /* Dark Navy */
        padding: 20px;
        border-radius: 10px;
    }

    nav.active ul {
        display: flex; /* Show menu when active */
    }

    .hamburger {
        display: block;
    }
}

/* Animation for smooth section appearance */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Hero Section */
.hero {
    margin-top: 60px;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('hero_background2.jpg'); /* Replace with your image */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #FFFFFF;
    height: 100vh; /* Full viewport height */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
}

/* Content Wrapper */
.hero .container {
    max-width: 1200px;
    text-align: center;
    padding: 20px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
}

/* Main Heading */
.hero h2 {
    font-size: 60px; /* Default size for large screens */
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for luxury */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
}

/* Subheading Paragraph */
.hero p {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    margin: 20px 0 40px;
    color: #f0f0f0;
    line-height: 1.8;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Ensures wrapping on small devices */
    justify-content: center;
}

.hero-buttons .btn-order {
    background: linear-gradient(90deg, #ff7f5fd7, #feb47bdb);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-order:hover {
    background: linear-gradient(90deg, #FEB47B, #FF7E5F);
    transform: translateY(-5px);
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 50px; /* Adjust heading size */
    }

    .hero p {
        font-size: 20px; /* Adjust paragraph size */
    }
}

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

    .hero h2 {
        font-size: 42px; /* Smaller heading */
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons .btn-order {
        padding: 12px 30px; /* Compact buttons */
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .hero-buttons .btn-order {
        width: 100%; /* Full-width buttons for small screens */
    }
}





/* About Us Section */
.about-us {
    background-image: url("aboutus_background.jpg");
    background-color: #f8f9fa; /* Light neutral background */
    padding: 80px 20px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.text-section {
    flex: 1;
    min-width: 300px;
    animation: fadeIn 1s ease-in-out;
}

.text-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.read-more-btn {
    background-color: #ff8c00; /* Warm amber color */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}

.read-more-btn:hover {
    background-color: #e67e22;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.image-section {
    background-color: white ;
    flex: 1;
    min-width: 200px;
    max-width: 450px; /* Limit max size of image */
    animation: slideIn 1.2s ease-in-out;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-section img:hover {
    background-color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .image-section {
        margin-top: 20px;
        max-width: 80%; /* Adjust image size on tablets */
    }
}

@media (max-width: 480px) {
    .text-section h2 {
        font-size: 32px;
    }

    .text-section p {
        font-size: 16px;
    }

    .read-more-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .image-section img {
        max-width: 100%; /* Ensure image fits in smaller screens */
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.about-us.animate .text-section,
.about-us.animate .image-section {
    animation-play-state: running;
}



/* Featured Menu Section */
.featured-menu {
    padding: 50px 0;
    background-image: url('menu_background.jpg');
    color: #fff;
    text-align: center;
}

.featured-menu h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffc107;
}

.featured-menu p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-item {
    background-color: #222;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #ffc107;
    transition: transform 0.3s ease;
}

.menu-item h3 {
    margin: 15px 0 5px;
    color: #ffc107;
}

.menu-item p {
    color: #ddd;
    padding: 0 15px 15px;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.menu-item:hover img {
    transform: scale(1.1);
}

/* See Full Menu Button */
.see-full-menu {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #ffc107;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.see-full-menu:hover {
    background-color: #e5a806;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.appear {
    opacity: 1;
    transform: translateY(0);
}



/* Testimonial Section */
.testimonials {
    background-image: url("testimonial_background1.avif");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
    
}

.testimonials h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffcc29;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Container */
.testimonial-box {
    background: linear-gradient(135deg, rgba(255, 204, 41, 0.3), rgba(255, 255, 255, 0.2));
    box-shadow: 0 0 20px 10px rgba(255, 204, 41, 0.2); /* Glowing effect */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Ensures no content overflow */
}

/* Testimonial Slider Adjustments */
.testimonial-slider {
    display: flex;
    transition: transform 0.8s ease-in-out;
    position: relative;
    width: 100%;
}

.testimonial-content {
    flex: 0 0 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #ffffff;
    font-style: italic;
}


.testimonial-content.active {
    opacity: 1;
    border-radius: 25px;
    transform: scale(1); /* Enlarges active testimonials */
}

.testimonial-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 204, 41, 0.3), rgba(255, 255, 255, 0.2));
    border-radius: 25px;
    z-index: -1;
    box-shadow: 0 0 20px 10px rgba(255, 204, 41, 0.2); /* Glowing effect */
}

blockquote {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f2f2f2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

cite {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #ffcc29;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Arrows */
.arrow {
    font-size: 30px;
    background: rgba(255, 204, 41, 0.8);
    border: none;
    border-radius: 50%;
    color: #1c1c1e;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.arrow:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 32px;
    }

    blockquote {
        font-size: 18px;
    }

    cite {
        font-size: 14px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }
}



/* General Footer Styles */
footer {
    background-color: #1A1A2E;/* Dark Navy */
    color: white;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    flex: 1 1 250px;
    text-align: center;
}

.footer-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #FFA500; /* Bright Orange */
    font-size: 1.1em;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1 1 200px;
    min-width: 150px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFA500; /* Orange accent underline */
    display: inline-block;
    padding-bottom: 5px;
}

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

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

.footer-links ul li a {
    text-decoration: none;
    color: #FFFFFF; /* White */
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #FFA500; /* Orange on hover */
}

.footer-contact p {
    color: #FFA500;
    margin: 8px 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.footer-contact a {
    text-decoration: none;
    color: white; /* Link styling */
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #70e0ff; /* Bright blue on hover */
}

/* Social Media Icons */
.footer-social .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    justify-content: start;
}

.footer-social .social-icons a {
    color: white;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #FFA500; /* Orange on hover */
    transform: scale(1.2); /* Slight zoom */
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333; /* Subtle separator line */
    font-size: 0.9em;
    margin-top: 30px;
}

.footer-bottom a {
    text-decoration: none;
    color: #FFA500; /* Link styling */
    position: relative;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #70e0ff; /* Bright blue on hover */
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}



/* About Us Section */
.about-us {
    margin-top: 60px;
    background: #fdf8f5;
    padding: 80px 20px;
    text-align: center;
}

.about-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.about-text {
    flex: 1;
    text-align: justify;
    padding: 20px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #b22222;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    margin-top: 60px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

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

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b22222;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.animated-button {
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.cta-button:hover {
    background-color: #8b1a1a;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Highlights Section */
.special-highlights {
    margin-top: 50px;
    padding: 60px 20px;
    text-align: center;
}

.special-highlights h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #b22222;
}

.highlights-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight {
    flex: 1 1 calc(25% - 30px);
    max-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.highlight:hover {
    transform: scale(1.05);
}

.highlight i {
    font-size: 40px;
    color: #b22222;
    margin-bottom: 15px;
}

.highlight h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.highlight p {
    font-size: 16px;
    color: #555;
}

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

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

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

    .highlight {
        flex: 1 1 100%;
    }
    .about-image img {
        max-width: 300px;
    }
}



.coming-soon {
    background-image: url('ComingSoon.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
}
/* Coming Soon Button Styling */
.coming-soon-button .btn-order {
    margin-top: 800px;
    margin-bottom: 50px;
    display: inline-block;
    padding: 12px 28px;
    font-size: 18px;
    color: #fff; /* White text for contrast */
    background: linear-gradient(135deg, #ff6600, #ff9900); /* Gradient for a dynamic look */
    text-decoration: none;
    border-radius: 25px; /* Rounded button for a sleek look */
    border: 2px solid #ffcc00; /* Add a glowing border */
    box-shadow: 0px 8px 15px rgba(255, 204, 0, 0.5); /* Glowing shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.coming-soon-button .btn-order:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0px 10px 20px rgba(255, 204, 0, 0.8); /* Enhance shadow on hover */
    background: linear-gradient(135deg, #ff9900, #ff6600); /* Reverse gradient on hover */
    color: #fff; /* Ensure text remains visible */
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
    overflow-x: hidden;
}



/* Initially hide the button */
.scrollToTopBtn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    background-color: #ff4d4d; /* Red color */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8); /* Initial size */
}

/* Hover effect */
.scrollToTopBtn:hover {
    background-color: #e60000; /* Darker red on hover */
    transform: scale(1.1); /* Slightly larger on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Increased shadow */
}

/* Active effect */
.scrollToTopBtn:active {
    transform: scale(0.95); /* Shrink a little on click */
}

/* Animating the button appearance */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at normal position */
    }
}

/* Show on larger screens */
@media (min-width: 768px) {
    .scrollToTopBtn {
        display: block;
        animation: fadeIn 0.5s ease-out; /* Add fade-in animation */
    }
}
