/* Seven Rent-A-Car: Main Stylesheet 2025 */

body {
    background-color: #1a237e;
    color: #d2f1f7;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* --- ১. লোগো এবং হেডার সেকশন (ডেস্কটপ ভিউ) --- */
.top-header-container {
    padding: 30px 0;
}

.v-center {
    display: flex !important;
    align-items: center; 
    flex-wrap: wrap;
} 

.logo-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 40px; 
}

.logo-area img {
    max-width: 420px;      /* ডেস্কটপে লোগোর সাইজ */
    height: auto;
    margin-top: -15px;     /* লোগো একটু ওপরে তোলার জন্য */
    margin-bottom: 0px;
}

.header-title {
    margin-top: 0;          
    margin-bottom: 5px;
}

/* --- ২. কন্টেন্ট এবং টাইপোগ্রাফি --- */
.site-content-col {
    background-color: #31336f;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.text-gold { color: #ffd700 !important; font-weight: bold; }
.text-cyan { 
    color: #00e5ff !important; 
    border-left: 5px solid #00e5ff; 
    padding-left: 15px; 
    margin-bottom: 20px;
}
.text-white { color: #ffffff !important; }

/* --- ৩. নেভিগেশন এবং মেনু --- */
.nav-bar-wrapper {
    background-color: #3f51b5;
    border-bottom: 4px solid #ffd700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1000;
}

.navbar-edit {
    border: none;
    margin-bottom: 0;
}

.navbar-nav > li > a { color: #fff !important; font-weight: 500; }

.navbar-nav .contact-menu-item {
    background-color: #e65100 !important;
    border-radius: 25px;
    margin: 5px 10px;
}

.navbar-brand.visible-xs {
    color: #ffd700 !important;
    font-weight: bold;
}

.dropdown-menu {
    background-color: #3f51b5 !important;
    border: 1px solid #ffd700;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.dropdown-menu > li > a { 
    color: #fff !important; 
    padding: 10px 20px;
}

.dropdown-menu > li > a:hover { 
    background-color: #ffd700 !important; 
    color: #000 !important; 
}

@media (min-width: 768px) {
    .navbar-nav li.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInMenu 0.3s ease-in;
    }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar-toggle {
    border-color: #ffd700 !important;
    background-color: #ffd700 !important;
}

.navbar-toggle .icon-bar {
    background-color: #1a237e !important;
}

/* --- ৪. হোয়াটসঅ্যাপ এবং লিস্ট --- */
.site-content-list { list-style: none; padding-left: 0; }
.site-content-list li {
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
}

/* --- ৫. মোবাইল রেসপনসিভ লেআউট (চূড়ান্ত ফিক্স) --- */
@media (max-width: 768px) {
    .top-header-container {
        padding: 20px 10px !important;
    }
    
    .logo-area {
        justify-content: center !important; /* মোবাইলে সেন্টারে থাকবে */
        padding-left: 0 !important;
        margin-bottom: 10px !important;
    }

    .logo-area img {
        max-width: 280px !important; /* মোবাইলে লোগো ছোট দেখাবে */
        margin-top: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .call-us-area {
        margin-top: 15px !important;
        text-align: center !important;
    }

    .header-title {
        font-size: 22px !important; /* মোবাইলে টেক্সট ছোট করা */
        border-left: none !important;
        padding-left: 0 !important;
    }

    .site-content-col { padding: 20px 15px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    
    .navbar-nav .open .dropdown-menu {
        background-color: rgba(0,0,0,0.2) !important;
    }
}