@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #db1a8a;
    /* Vibrant Pink */
    --secondary-color: #610191;
    /* Deep Purple */
    --accent-color: #ff007f;
    /* Bright Magenta */
    --bg-dark: #0a080c;
    /* Near black with purple tint */
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: radial-gradient(circle at top right, #300142, #0a080c 60%);
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    background: rgba(15, 12, 41, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand img {
    max-height: 60px;
    /* Scaling down slightly for better navbar fit while keeping aspect ratio */
    width: auto;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styling */
.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.store-btn i {
    font-size: 1.8rem;
    margin-right: 12px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text small {
    font-size: 0.7rem;
    opacity: 0.7;
}

.btn-text span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: scale(1.02);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-theme {
    color: var(--primary-color) !important;
}

.btn-theme {
    background: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(219, 26, 138, 0.4);
}

.btn-outline-theme {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-theme:hover {
    background: var(--primary-color);
    color: white;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .download-buttons {
        justify-content: center;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .social-icon:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(219, 26, 138, 0.4);
        border-color: var(--primary-color);
    }


/* Why Choose Section Styles */
.why-choose-section {
    background-color: #ffffff !important;
}

.why-choose-title {
    color: #000000 !important;
    font-size: 2.5rem;
    margin-bottom: 3rem !important;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(219, 26, 138, 0.4);
}

.feature-text {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}
/* Expert Section Styles */
.expert-section {
    background-color: #ffffff !important;
    padding: 60px 0;
}

.expert-title {
    color: #0b011d !important;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700 !important;
}

.expert-btn {
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: white !important;
    min-width: 250px;
}

.whatsapp-btn {
    background-color: #4cc936 !important;
}

    .whatsapp-btn:hover {
        background-color: #38b338 !important;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(76, 201, 54, 0.3);
    }

.call-btn {
    background-color: #1976d2 !important;
}

    .call-btn:hover {
        background-color: #1565c0 !important;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(25, 118, 210, 0.3);
    }

.expert-btn i {
    font-size: 1.5rem;
    margin-right: 15px;
}




/* Community Gallery Styles */
.community-gallery {
    background-color: #ffffff !important;
}

.community-title {
    color: #1a1a1a !important;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-img-lg {
    height: 400px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img-sm {
    height: 250px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .gallery-img-lg,
    .gallery-img-sm {
        height: 200px;
    }
}
