@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-pink: #df1b60;
    --primary-pink-hover: #c21952;
    --text-dark: #1a1a24;
    --text-gray: #646473;
    --bg-white: #ffffff;
    --bg-light: #fef7fa;
    --border-color: #e5e5f0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.text-pink { color: var(--primary-pink) !important; }
.bg-pink { background-color: var(--primary-pink) !important; }
.bg-light-pink { background-color: var(--bg-light) !important; }

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Inner Page Navbar Fix */
body.inner-page .navbar {
    background-color: var(--bg-white);
    position: relative;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
    margin-bottom: 30px;
}
.navbar-brand img {
    height: 60px; /* Adjust based on logo size */
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 15px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--primary-pink) !important;
}
.lang-selector {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Custom Sign In Button */
.sign-in-btn {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 8px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(223, 27, 96, 0.1);
}
.sign-in-icon {
    color: var(--primary-pink);
    font-size: 1.2rem;
}
.sign-in-divider {
    width: 1px;
    height: 20px;
    background-color: #ddd;
    margin: 0 15px;
}
.sign-in-text {
    line-height: 1.2;
}
.sign-in-text small {
    font-size: 0.65rem;
    color: var(--text-gray);
    display: block;
}
.sign-in-text strong {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, #fff5f8 0%, #fff 70%);
    overflow: visible;
}
.hero-title {
    font-size: 3.8rem;
    background: linear-gradient(135deg, var(--primary-pink), #ff4d88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* App Download Button */
.app-download-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}
.app-download-btn {
    display: flex;
    align-items: center;
    background: var(--primary-pink);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    text-decoration: none;
}
.app-download-btn i {
    font-size: 1.3rem;
    color: white;
}
.app-btn-divider {
    width: 1px;
    height: 18px;
    background-color: rgba(255,255,255,0.4);
    margin: 0 12px;
}
.app-download-text {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.4;
    max-width: 280px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
}
.hero-main-img {
    border-radius: 300px 300px 20px 20px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    height: auto;
    aspect-ratio: 48/55;
    object-fit: cover;
}

/* Vertical Floating Badge */
.vertical-badge-wrap {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}
.vertical-badge-glow {
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    background: rgba(255,255,255,0.7);
    border-radius: 60px;
    filter: blur(10px);
    z-index: 1;
}
.vertical-badge {
    position: relative;
    background: white;
    border-radius: 60px;
    padding: 20px 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    min-width: 100px;
    border: 1px solid #f9f9f9;
}
.vertical-badge img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}
.vertical-badge h6 {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}
.vertical-badge p {
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-pink);
    font-weight: 700;
}

/* Search Box */
.search-box-container {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}
.search-box {
    background: white;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(223, 27, 96, 0.08);
    display: flex;
    align-items: stretch; /* crucial for button height */
    padding: 0;
    border: 1px solid #fcfcfc;
}
.search-form-group {
    padding: 15px 20px;
    flex: 1;
    position: relative;
}
/* Dividers between search fields */
.search-form-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: #eee;
}
.search-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 3px;
    padding-left: 5px;
}
.search-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-select {
    border: none;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    outline: none;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 5px;
    padding-right: 25px;
    color: var(--text-dark);
}
.search-select-wrapper i {
    position: absolute;
    right: 5px;
    color: var(--primary-pink);
    font-size: 0.8rem;
    pointer-events: none;
}
.search-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 180px;
}
.search-btn:hover {
    background: var(--primary-pink-hover);
}
.search-btn .btn-text {
    text-align: left;
    margin-right: 15px;
    line-height: 1.2;
}
.search-btn .btn-text small {
    font-size: 0.8rem;
}
.search-btn .btn-text strong {
    font-size: 1rem;
    font-weight: 500;
}
.search-btn i {
    font-size: 1.2rem;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

/* Awards Section */
.awards-section {
    background: #fef7fa; /* Exact very light pink background from image */
    padding: 30px 0;
    border-top: 1px solid #feeef4;
    border-bottom: 1px solid #feeef4;
    margin-top: 50px;
}
.award-logo {
    height: 60px;
    margin-right: 15px;
    object-fit: contain;
}
.award-btn {
    background-color: transparent;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.award-btn:hover {
    background-color: var(--primary-pink);
    color: white;
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background: white;
}
.circle-img-left {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.about-play-badge {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(25%, -50%);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    border-radius: 60px;
    padding: 30px 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #fcfcfc;
    min-width: 140px;
    text-align: center;
}
.about-play-badge h6 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}
.about-play-badge .play-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(223, 27, 96, 0.3);
    margin-bottom: 15px;
}
.about-play-badge p {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin: 0;
}
.about-text-small {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.inline-logo {
    height: 50px; /* Adjust height of inline "Dehadak" logo */
    margin: 0 15px;
    vertical-align: middle;
}
.btn-outline-pink {
    background-color: transparent;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    color: white;
}

/* Our Specialty Section */
.specialty-section {
    padding: 80px 0;
    background: radial-gradient(circle at center left, #fdf8fb 0%, #fff 60%);
    position: relative;
}
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #fafafa;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(223, 27, 96, 0.1);
    border-color: #fce8f0;
}
.feature-icon {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-top: 5px;
}
.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 10px;
}
.feature-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.5;
}
.feature-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--primary-pink);
    font-size: 1.2rem;
}
.arch-img-right {
    border-radius: 300px 300px 0 0; /* Arch shape (rounded top, flat bottom) */
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 48/60;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Specialty Badges & Animations */
@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}
@keyframes floatDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0); }
}

.specialty-badge {
    position: absolute;
    background: white;
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 2;
    min-width: 120px;
    border: 1px solid #fdfdfd;
}
.specialty-badge.top-left {
    top: 5%;
    left: -20px;
    animation: floatUp 4s ease-in-out infinite;
}
.specialty-badge.bottom-right {
    bottom: 5%;
    right: -20px;
    border-radius: 50%;
    padding: 10px;
    min-width: auto;
    animation: floatDown 5s ease-in-out infinite;
}
.specialty-badge img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.specialty-badge.bottom-right img {
    width: 80px;
    height: 80px;
}
.specialty-badge h6 {
    margin: 5px 0 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}
.specialty-badge p {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-pink);
    font-weight: 700;
}

/* Stacked Circle Buttons (Far Left) */
.stacked-buttons {
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}
.specialty-slider-container {
    height: 330px;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
}
.specialty-slider-track {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.stacked-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.stacked-btn:hover {
    transform: scale(1.15);
}
.stacked-btn.btn-white {
    background: white;
    color: var(--text-gray);
    border: 1px solid #f0f0f0;
}
.stacked-btn.btn-pink {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 5px 20px rgba(223, 27, 96, 0.4);
}

/* Preloader */
.preloader-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.preloader-logo-container {
    position: relative;
    display: inline-block;
}
.preloader-logo {
    height: 80px;
    position: relative;
    z-index: 2;
}
.preloader-pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
    animation: pulse 1.5s infinite;
    z-index: 1;
}
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Mobile responsive overrides */
@media (max-width: 991px) {
    .search-box {
        flex-direction: column;
        border-radius: 20px;
        overflow: hidden;
    }
    .search-form-group:not(:last-child)::after {
        display: none;
    }
    .search-form-group {
        border-bottom: 1px solid #eee;
    }
    .search-btn {
        border-radius: 0 0 20px 20px;
        padding: 20px;
        width: 100%;
    }
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stacked-buttons {
        position: relative;
        flex-direction: row;
        top: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin: 30px 0;
    }
    .about-play-badge {
        transform: translate(0, -50%);
        right: 5%;
        padding: 20px 15px;
        min-width: 120px;
    }
    .specialty-badge {
        padding: 10px 15px;
        min-width: 100px;
    }
    .specialty-badge.top-left {
        left: -10px;
        top: 2%;
    }
    .specialty-badge.bottom-right {
        right: -10px;
    }
    .vertical-badge-wrap {
        right: 0;
        transform: scale(0.8) translateY(-50%);
        transform-origin: right center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .specialty-slider-container {
        height: 380px; /* Give more room if cards wrap on mobile */
    }
}

/* Utility Classes for Internal Pages */
.bg-soft-pink { background-color: #fef7fa !important; }
.text-maroon { color: #8e1039 !important; }
.font-serif { font-family: 'Poppins', serif !important; }
.btn-pink { 
    background-color: var(--primary-pink) !important; 
    color: white !important; 
    transition: 0.3s;
    border: none;
}
.btn-pink:hover { 
    background-color: var(--primary-pink-hover) !important; 
}
.badge-trust {
    background-color: #fce8f0;
    color: var(--primary-pink);
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Profile Cards */
.profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f9f9f9;
    transition: transform 0.3s;
}
.profile-card:hover {
    transform: translateY(-5px);
}
.profile-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.badge-match {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--primary-pink);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.profile-card-body {
    padding: 20px;
}
.profile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}
.profile-info {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}
.profile-info i {
    width: 18px;
}
.badge-verified-sm {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 500;
}
