@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&display=swap');

.font-assamese {
    font-family: "Noto Serif Bengali", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

:root {
    --puch-green: #21C35D;
    --puch-light-green: #e9f9ef;
    --puch-text: #1a1a1a;
    --puch-gray: #666;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--puch-text);
    background-color: #fff;
}

/* Navbar Styling */
.navbar {
    background: white;
    border-radius: 50px;
    margin: 20px auto;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 30px;
}

.logo {
    width: 20%;
}

.nav-link {
    color: var(--puch-text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 10px;
}

.btn-try {
    background-color: var(--puch-green);
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-top: 40px;
}

.hero-title span {
    color: var(--puch-green);
}

.hero-subtitle {
    color: var(--puch-gray);
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.6;
}

.btn-whatsapp {
    background-color: var(--puch-green);
    color: white;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-call {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Video Placeholder */
.video-container {
    max-width: 800px;
    margin: 50px auto;
    /* background: white; */
    /* border: 1px solid #eee; */
    border-radius: 20px;
    /* height: 450px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03); */
}

.hero-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.play-btn {
    font-size: 4rem;
    color: #ddd;
    cursor: pointer;
}

/* Messi Banner */
.messi-banner {
    /* background: linear-gradient(90deg, #a7f3d0 0%, #ffffff 50%, #7dd3fc 100%); */
    border-radius: 30px;
    /* padding: 40px; */
    /* position: relative; */
    overflow: hidden;
    margin: 80px 0;
}

.banner {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.messi-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 1;
}

/* Features Section */
.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.feature-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, var(--puch-green), transparent);
}

.feature-badge {
    border: 1px solid var(--puch-green);
    color: var(--puch-green);
    padding: 5px 20px;
    border-radius: 20px;
    background: white;
    z-index: 2;
}

.feature-pill {
    border-radius: 20px;
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    font-size: 0.85rem;
    border: 1px solid #eee;
    margin: 5px;
    white-space: nowrap;
    cursor: pointer;
}

.feature-pill.active {
    background: #dcfce7;
    color: var(--puch-green);
    border-color: var(--puch-green);
}

/* Chat Showcase */
.chat-preview-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    border-radius: 40px;
    background: #1a1a1a;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-content {
    background: #242526;
    height: 450px;
    border-radius: 30px;
    position: relative;
}

/* Final CTA */
.cta-box {
    background: radial-gradient(circle at center, #dcfce7 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 100px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    margin-top: 80px;
}

/* Footer */
.footer {
    /* padding: 60px 0; */
    border-top: 1px solid #eee;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: #eee;
    border-radius: 10px;
    padding: 10px;
}

/* Form Card Styling */
.form-container {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    max-width: 900px;
    margin: auto;
}

.form-title {
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

/* Modern Floating Labels */
.form-floating>.form-control:focus,
.form-floating>.form-select:focus {
    border-color: var(--puch-green);
    box-shadow: 0 0 0 0.25px rgba(33, 195, 93, 0.25);
}

.form-floating>label {
    color: #888;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 12px;
}

/* File Input Styling */
.file-label-custom {
    font-size: 0.75rem;
    color: var(--puch-green);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Custom Button */
.btn-puch {
    background-color: var(--puch-green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-puch:hover {
    background-color: #1ba34e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(33, 195, 93, 0.2);
    color: white;
}

.text-danger {
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

textarea.form-control {
    height: 100px;
}

/* Phone Carousel Styling */
.carousel-item {
    padding: 40px 0;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    /* background: #1a1a1a; */
    /* border-radius: 40px; */
    /* padding: 12px; */
    margin: 0 auto;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); */
    position: relative;
    /* border: 4px solid #333; */
}

.chat-screen {
    /* background: #242526; */
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* padding: 20px; */
    /* color: white; */
    /* text-align: left; */
}

/* Decorations */
.feature-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.feature-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, var(--puch-green), transparent);
}

.feature-badge {
    border: 1px solid var(--puch-green);
    color: var(--puch-green);
    padding: 5px 20px;
    border-radius: 20px;
    background: white;
}

.cta-box {
    background: radial-gradient(circle at center, #dcfce7 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 80px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

/* Tabs/Pills Styling */
.nav-pills .nav-link {
    border-radius: 20px;
    padding: 8px 20px;
    background: #f8f9fa;
    color: #666;
    font-size: 0.85rem;
    border: 1px solid #eee;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: #dcfce7 !important;
    color: var(--puch-green) !important;
    border-color: var(--puch-green) !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar-brand>.logo {
        width: 54%;
    }
}
