
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px
    background-color: #fff0f5;
    color: #333;
}

/* Navbar Container */
.nav-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(255, 10, 84, 0.2);
    transition: all 0.3s ease;
    .nav-container {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency */
    backdrop-filter: blur(10px);
    z-index: 1000; /* Ensures it's above other elements */
    padding: 20px 0;
}
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
    background: #FF0A54;
    color: white;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to right, #ff3366, #ff6699);
    color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(255, 10, 84, 0.2);
}

.hero-content h1 {
    font-size: 40px;
    font-weight: bold;
}

.hero-content .highlight {
    color: #FFEBF0;
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* About Section */
.about {
    padding: 60px 10%;
    text-align: center;
    background: white;
}

h2 {
    font-size: 32px;
    color: #FF0A54;
    font-weight: bold;
}

/* Content Box */
.content-box {
    background: #ffebf0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 3px 8px rgba(255, 10, 84, 0.15);
    margin-bottom: 20px;
}

/* Features */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(255, 10, 84, 0.15);
    text-align: left;
}

.feature h3 {
    color: #ff3366;
    font-size: 22px;
}

.feature ul {
    padding-left: 20px;
    list-style-type: disc;
}

/* Why Choose */
.why-choose {
    background: #fff0f5;
    padding: 25px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0px 3px 8px rgba(255, 10, 84, 0.15);
    text-align: left;
}

.why-choose h2 {
    font-size: 28px;
    color: #FF0A54;
    text-align: center;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose ul li {
    font-size: 18px;
    padding: 6px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #FF0A54;
    color: white;
    margin-top: 50px;
}

/* Home Section */
.home {
    text-align: center;
    padding: 150px 20px 100px;
    animation: fadeInUp 1.5s ease-in-out;
}

.brand-name {
    font-size: 60px;
    font-weight: bold;
    color: #FF0A54;
    opacity: 0;
    display: inline-block;
    animation: fadeIn 2s forwards;
}

.tagline {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

/* Button */
.btn {
    background: #FF0A54;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #D0083E;
    transform: scale(1.05);
}



/* Team */
.team-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap; /* Prevent wrapping on larger screens */
    overflow-x: auto; /* Enable horizontal scrolling on small screens */
    padding: 20px;
    gap: 20px; /* Adds spacing between cards */
}

/* Individual Team Card */
.team-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 230px;
    flex-shrink: 0; /* Prevent shrinking */
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: translateY(-5px); /* Slight hover effect */
}

/* Team Member Image */
.team-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

/* Headings */
.team-card h3 {
    margin: 10px 0;
}

/* Social Icons */
.team-card a {
    color: #FF0A54; /* Pink theme color */
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.team-card a:hover {
    color: #D90746; /* Slightly darker pink on hover */
}

.team-card i {
    transition: color 0.3s ease-in-out;
}

/* 📱 Responsive Design for Mobile (Vertical Layout) */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align team cards */
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .team-card {
        width: 90%; /* Make team cards take up more space */
        max-width: 300px; /* Prevent them from being too wide */
    }
}
