/* Start custom CSS *//* --- Royal Landing Page CSS (Final Fixed Version) --- */

:root {
    --royal-blue: #002e5b;      /* মেটলাইফ ডিপ ব্লু */
    --royal-dark: #001f3f;      /* গাঢ় ব্যাকগ্রাউন্ড */
    --royal-gold: #c5a059;      /* প্রিমিয়াম গোল্ড */
    --royal-gold-grad: linear-gradient(135deg, #c5a059 0%, #e6b800 100%);
    --text-white: #ffffff;
    --text-gray: #f4f6f9;
}

/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind Siliguri', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* ইউটিলিটি */
.royal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ১. টপ বার */
.top-identity-bar {
    background: var(--royal-dark);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ২. ন্যাভিগেশন */
.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 55px;
}

.logo-text h2 {
    color: var(--royal-blue);
    font-family: 'Noto Serif Bengali', serif;
    font-size: 1.6rem;
    line-height: 1;
    margin: 0;
}

.logo-text span {
    color: #e65100;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-btn {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 0.95rem;
}

/* ৩. হিরো সেকশন */
.hero-wrapper {
    background: linear-gradient(135deg, #002e5b 0%, #001529 100%);
    padding: 80px 0 100px;
    text-align: center;
    color: white;
    position: relative;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Noto Serif Bengali', serif;
    line-height: 1.3;
}

.gold-text { color: var(--royal-gold); }

.hero-desc {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.agent-trust-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--royal-gold);
    margin-bottom: 40px;
    text-align: left;
}

/* বাটনস */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary { background: var(--royal-gold-grad); color: #000; }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: white; }

/* ৪. ফিচার সেকশন (কেন মেটলাইফ) */
.concept-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--royal-blue);
    font-family: 'Noto Serif Bengali', serif;
    margin: 10px 0;
}

.gold-divider {
    height: 3px;
    width: 70px;
    background: var(--royal-gold);
    margin: 15px auto;
}

/* গ্রিড ফিক্স (১০০% লেখা ঠিক করার জন্য) */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.concept-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.concept-card:hover {
    transform: translateY(-5px);
    border-color: var(--royal-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon-box {
    width: 70px; height: 70px;
    background: white;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.8rem; color: var(--royal-blue);
}

.concept-card h3 {
    color: var(--royal-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-family: 'Noto Serif Bengali', serif;
}

/* ৫. প্রোডাক্ট সেকশন */
.products-section {
    background: var(--royal-blue);
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 5px solid transparent;
}

.product-card:hover {
    transform: translateY(-7px);
    border-bottom-color: var(--royal-gold);
}

.product-card.featured {
    border: 2px solid var(--royal-gold);
}

/* ব্যাজ এবং লিস্ট */
.badge {
    position: absolute; top: 20px; right: 20px;
    background: #eef2f7; color: var(--royal-blue);
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
}

.product-list { list-style: none; margin: 20px 0; flex-grow: 1; }
.product-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: #555; }
.product-list i { color: var(--royal-gold); }

/* ৬. ফুটার */
.cta-footer {
    margin-top: -60px;
    position: relative; z-index: 10;
    padding-bottom: 30px;
}

.verification-card {
    background: white;
    padding: 40px; border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #e65100;
}

.main-footer {
    background: var(--royal-dark);
    color: #aab2bd;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-disclaimer {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* রেসপন্সিভ */
@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .flex-between { flex-direction: column; gap: 10px; text-align: center; }
    .nav-btn { width: 100%; justify-content: center; }
    .footer-disclaimer { font-size: 0.8rem; }
}/* End custom CSS */