﻿@font-face {
    font-family: 'SolaimanLipi';
    src: url('../fonts/SolaimanLipi.ttf');
}

@font-face {
    font-family: 'NotoSerifBengali1';
    src: url('../fonts/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHkqg6rk.woff2');
}

@font-face {
    font-family: 'NotoSerifBengali2';
    src: url('../fonts/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHkqu6rngHw.woff2');
}

@font-face {
    font-family: 'NotoSerifBengali3';
    src: url('../fonts/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHkqy6rngHw.woff2');
}

@font-face {
    font-family: 'Cheltenhm BdCn BT'; /* The name you'll use to reference the font */
    src: url('../fonts/CheltenhmBdCnBT/CheltenhamBT-BoldCondensed.woff2') format('woff2'), /* Path to the font file */
    url('../fonts/CheltenhmBdCnBT/CheltenhamBT-BoldCondensed.woff') format('woff'); /* Add multiple formats for wider browser support */
    font-weight: normal; /* Specify the font's weight */
    font-style: normal; /* Specify the font's style */
}

@font-face {
    font-family: 'Montserrat'; /* The name you'll use to reference the font */
    src: url('../fonts/Montserrat-Regular/Montserrat-Regular.woff2') format('woff2'), /* Path to the font file */
    url('../fonts/Montserrat-Regular/Montserrat-Regular.woff') format('woff'); /* Add multiple formats for wider browser support */
    font-weight: normal; /* Specify the font's weight */
    font-style: normal; /* Specify the font's style */
}

:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #1abc9c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --metro-primary: #0078D7;
    --metro-secondary: #00BCF2;
    --metro-accent: #FFB900;
    --metro-success: #107C10;
    --metro-purple: #8661C5;
    --metro-light: #F4F4F4;
    --metro-dark: #323130;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.navbar, .dropdown-menu {
    background: linear-gradient(90deg, #2b9348, #55a630);
}

    .dropdown-menu > li > a:hover {
        background: linear-gradient(90deg, #55a630, #2b9348);
    }

.privacy-hero {
    background: linear-gradient(135deg, var(--metro-primary) 0%, var(--metro-secondary) 100%);
    color: white;
    padding: 80px 0 60px;
}

.privacy-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.section-title {
    color: var(--metro-primary);
    border-bottom: 2px solid var(--metro-light);
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.policy-card {
    border-left: 4px solid var(--metro-primary);
    background-color: var(--metro-light);
    border-radius: 0 8px 8px 0;
    padding: 20px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

    .policy-card:hover {
        transform: translateX(5px);
    }

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.info-icon {
    background-color: var(--metro-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-card {
    background: linear-gradient(135deg, var(--metro-light) 0%, #e8f4f8 100%);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
    border: 1px solid #e1e5e9;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--metro-primary);
    margin-bottom: 15px;
}

.last-updated {
    background-color: var(--metro-accent);
    color: var(--metro-dark);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer {
    background: var(--primary);
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--metro-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .back-to-top:hover {
        background: var(--metro-secondary);
        transform: translateY(-3px);
    }

.privacy-toc {
    background-color: var(--metro-light);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.toc-title {
    color: var(--metro-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

    .toc-list li {
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

        .toc-list li:before {
            content: "•";
            color: var(--metro-primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

    .toc-list a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .toc-list a:hover {
            color: var(--metro-primary);
        }

.highlight {
    background-color: rgba(255, 185, 0, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 500;
}

/* --Mouse hover dropdown starts here-- */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-menu-end {
    display: none;
}

.dropend:hover .dropdown-menu-end {
    display: block;
}
/* --Mouse hover dropdown ends here-- */

@media (max-width: 768px) {
    .privacy-content {
        padding: 25px;
        margin-top: -30px;
    }

    .privacy-hero {
        padding: 60px 0 40px;
    }
}
