* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%); /* Match the hero section */
}



.shipping-banner {
    position: fixed;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(255, 51, 102, 0.2);
    z-index: 1000;
    animation: fadeInLeft 0.5s ease forwards;
}

.shipping-banner p {
    color: white;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add media query for mobile responsiveness */
@media screen and (max-width: 768px) {
    .shipping-banner {
        top: 10px;
        left: 10px;
        padding: 6px 12px;
    }

    .shipping-banner p {
        font-size: 12px;
    }
}











.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 36, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background: linear-gradient(135deg, #1a1f2c, #0f1724);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 51, 102, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.5s ease forwards;
}

.modal h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.modal .highlight {
    color: #ff3366;
    font-size: 32px;
    font-weight: 600;
    display: block;
    margin: 15px 0;
}

.modal-subtitle {
    color: #ffffff99;
    margin-bottom: 25px;
}

.modal-button {
    background: linear-gradient(45deg, #ff3366, #ff0000);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff99;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff3366;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/*
.logo-container {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-container img {
    height: 120px;
    width: 120px;
    display: block;
    transition: all 0.3s ease;
}


.logo-container:hover {
    transform: translateY(-2px);
} */




/* Tablets and medium-sized screens */
@media screen and (max-width: 1024px) {
    .logo-container {
        top: 25px;
        left: 25px;
    }

    .logo-container img {
        height: 80px;
        width: 80px;
    }
}

/* Mobile devices - landscape */
@media screen and (max-width: 768px) {
    .logo-container {
        top: 20px;
        left: 20px;
    }

    .logo-container img {
        height: 60px;
        width: 60px;
    }
}

/* Mobile devices - portrait */
@media screen and (max-width: 480px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }

    .logo-container img {
        height: 45px;
        width: 45px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 320px) {
    .logo-container {
        top: 10px;
        left: 10px;
    }

    .logo-container img {
        height: 35px;
        width: 35px;
    }
}




.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.116);
    padding: 20px 40px;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 700px;
    z-index: 1000;

}





.nav-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 24px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    overflow: hidden;
}

.nav-links a i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.nav-links a span {
    position: relative;
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

/* Hover effects */
.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Active state */
.nav-links a.active {
    color: white;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Click effect */
.nav-links a:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.2);
}







/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:last-child {
    top: 20px;
}

/* Hamburger Animation */
.hamburger.active span:first-child {
    transform: rotate(45deg);
    top: 10px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    top: 10px;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.3s ease;
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.6s;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }


    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s ease;
        z-index: 98;
    }

    .nav-overlay.active {
        visibility: visible;
        opacity: 1;
    }
}

/* Prevent scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}







.hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    overflow: hidden;
    padding: 2rem;
    padding-top: 120px; /* Add this to create space for the navbar */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.gradient-text {
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight {
    display: block;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.cta-primary, .cta-secondary, .cta-third {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #ff3366, #ff0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
}

.cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.cta-third {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    background: rgba(255, 21, 21, 0.788);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-graphics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}


.floating-shape {
    position: absolute;
    animation: slideLeftToRight 15s linear infinite;
    top: 50%;
    left: 31%;
    transform: translateY(-50%);
    width: 200px;
    height: 300px;
    filter: brightness(0.8) contrast(1.2);
    pointer-events: none;
}


.shape-1 {
    width: 600px;
    animation: float 8s ease-in-out infinite;
    opacity: 0.2;
    height: 400px;
}

@keyframes slideLeftToRight {
    0% {
        left: -200px; /* Start from outside the viewport */
    }
    100% {
        left: 100%; /* Move all the way past the right edge */
    }
}

/* .shape-2 {
    width: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
    opacity: 0.6;
}

.shape-3 {
    width: 150px;
    top: 50%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
    opacity: 0.7;
} */








/* Marquee Section */
.marquee-section {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    padding: 10px 10px;
    position: relative;
    z-index: 1; /* Ensure it stays below the navbar but above other content */
    margin-top: 120px; /* Adjust this to push it just below the navbar */
    margin: auto;

}

.marquee-content {
    display: flex;
    width: max-content; /* Allows content to expand based on images */
    animation: marquee 30s linear infinite; /* Animation for the scrolling effect */
    gap: 120px;
}

.marquee-image {
    height: 90px; /* Adjust height as needed */
    width: auto;
    margin-right: 20px; /* Space between images for seamless looping */
    background-color: transparent !important;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves half the total width for seamless loop */
    }
}

/* Hover Effect to Pause Animation */
.marquee-section:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .marquee-section {
        margin-top: 80px; /* Adjust for smaller screens */
    }

    .marquee-image {
        height: 60px; /* Smaller height for mobile */
    }
}




.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 1s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Loading animation */
.navbar {
    animation: floatIn 0.5s ease forwards;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        min-width: 90%;
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 10px 16px;
    }

    .nav-links a i {
        font-size: 18px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-shape {
        max-width: 200px;
    }

    .shape-1 {
        width: 200px;
    }

    .shape-2 {
        width: 150px;
    }

    .shape-3 {
        width: 100px;
    }
}

/* Optional: Add subtle animation to icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.nav-links a:hover i {
    animation: float 1s ease infinite;
}

.circle-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}







.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    border-radius: 2px;
}

.testimonials-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: white;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff3366;
}

.author-info h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.rating {
    color: #ff3366;
    font-size: 1rem;
}

.rating i {
    margin-right: 2px;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: 100%;
    }
}

/* Optional: Add hover effect to stars */
.rating i {
    transition: transform 0.2s ease;
}

.testimonial-card:hover .rating i {
    transform: scale(1.2);
}

.rating i:hover {
    transform: scale(1.4) rotate(20deg);
    color: #ff0000;
}



/* Hamburger-nav- Of screen menu */


/* off-screen-menu */
.off-screen-menu {
    background-color:  rgb(34, 37, 49);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
}
.off-screen-menu.active {
    right: 0;
}



/* nav */
nav {
    padding: 1rem;
    display: flex;
    background-color: rgb(34, 37, 49);
}



/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #6F86FF;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
















.footer {
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Main Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Section Styling */
.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #ff3366, #ff0000);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #ff3366;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Info */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.contact-info i {
    color: #ff3366;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff3366;
}

/* Background Effect */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.1), transparent 50%);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animation for links */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-links li {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.footer-links li:nth-child(1) { animation-delay: 0.1s; }
.footer-links li:nth-child(2) { animation-delay: 0.2s; }
.footer-links li:nth-child(3) { animation-delay: 0.3s; }
.footer-links li:nth-child(4) { animation-delay: 0.4s; }
.footer-links li:nth-child(5) { animation-delay: 0.5s; }

/* Hover effect for contact info */
.contact-info p:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Optional: Add a top border */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 51, 102, 0.5), transparent);
}
