* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f1724 0%, #1a1f2c 100%);
    color: white;
    line-height: 1.6;
}




.badge {
    max-width: 200px;
    height: auto;
    position: fixed; /* This fixes the badge to the viewport */
    top: 20px; /* Distance from top of screen */
    left: 20px; /* Distance from left of screen */
    margin: 0; /* Remove the auto margins */
    z-index: 1000; /* Ensures badge stays on top of other elements */
}


/* 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;
    }
}






.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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;
    backdrop-filter: blur(10px);
}

.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;
}

.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, #ff3366, #ff0000);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover i {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.jpg') center/cover;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Story Section */
.story-section {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.story-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}














/* Updated Values Section */
.values-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.value-icon img {
    width: 50%;
    height: 65%;
    width: 110%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon img {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    flex-grow: 1;
}

.location-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.location-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .value-card {
        padding: 30px;
    }
    
    .value-icon {
        width: 100px;
        height: 100px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .value-card {
        padding: 25px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
    }
}









/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/cta-bg.jpg') center/cover fixed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff3366, #ff0000);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(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;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}












.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);
}
