* {
    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 */
}






/* 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 */
    }
}



.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;
}

/* Optional hover effects */
.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: 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);
}









.contact-form-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 250px 20px;
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    position: relative;
    overflow: hidden;

}

/* Contact Container Layout */
.contact-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Contact Information Side */
.contact-info-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    color: white;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff0000, #ff3366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #ff3366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.contact-info-content p, 
.contact-info-content a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #ff3366;
}

/* Social Media Links */
.social-links {
    margin-top: 30px;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
    color: white;
}

.social-icon:hover {
    background: linear-gradient(45deg, #ff0000, #ff3366);
    transform: translateY(-3px);
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff3366;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #ff0000, #ff3366);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

/* Background Elements */
.background-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff000033, #ff336633);
    filter: blur(80px);
}

.shape-1 {
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
}

.shape-2 {
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.contact-info-item {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 80px 20px;
    }

    .contact-info-container,
    .form-container {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .contact-info-header h3 {
        font-size: 1.5rem;
    }
}

/* Success and Error Messages */
.success-message {
    display: none;
    text-align: center;
    color: #00ff88;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.1);
    animation: fadeInUp 0.4s ease forwards;
}

.error-message {
    display: none;
    color: #ff3366;
    font-size: 0.9rem;
    margin-top: 5px;
}

.show {
    display: block;
}
