* {
    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 */
}



.whiteText {
color: rgb(155, 250, 77) !important;
margin: auto !important;

display: flex !important;
justify-content: center;
}

/* Marquee Section */
.marquee-section {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    padding: 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 */
    }
}












/* Navbar Styles */
.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: 600px;
    z-index: 1000; /* Add this to ensure navbar stays on top */

}

.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);
}











/* Navbar Styles */
.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: 600px;
    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;
    position: relative;
    z-index: 2;
}

.nav-links a span {
    position: relative;
    z-index: 2;
}

.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: 1;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover i {
    transform: scale(1.2) rotate(5deg);
}

















/* Services Page Styles */
.services-page {
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    padding: 100px 20px;
    min-height: 100vh;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
    padding-top: 10px;
}

.services-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.services-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    transition: all 0.3s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(255, 51, 102, 0.1);
}

.service-card:hover .service-image {
    filter: brightness(1.2);
}

.service-card h3 {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.service-types {
    margin-bottom: 25px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 10px;
}

.item-name {
    color: rgba(255, 255, 255, 0.9);
}

.item-price {
    color: #ff3366;
    font-weight: 600;
}

.book-now {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
    animation: pulse 1.5s infinite;
}

/* Enhanced Service Info Section */
.service-info {
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 51, 102, 0.1),
        rgba(255, 0, 0, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 28px;
    color: white;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-content h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.info-details {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.info-details li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.info-details li i {
    color: #ff3366;
    font-size: 14px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff3366;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.info-link i {
    transition: transform 0.3s ease;
}

.info-link:hover {
    color: #ff0000;
}

.info-link:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

.info-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.info-card:nth-child(1) { animation-delay: 0.2s; }
.info-card:nth-child(2) { animation-delay: 0.4s; }
.info-card:nth-child(3) { animation-delay: 0.6s; }

/* 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;
    }

    .services-header h1 {
        font-size: 2.2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .service-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-icon {
        width: 100px;
        height: 100px;
    }

    .info-card {
        padding: 25px;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 24px;
    }

    .info-content h4 {
        font-size: 1.2rem;
    }
}
