/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fafafa; /* খুব হালকা গ্রে ব্যাকগ্রাউন্ড */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ন্যাভিগেশন বার */
.navbar {
    display: flex;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 100;
}

.logo img { height: 70px; cursor: pointer; }
.nav-links { margin-left: 40px; }

.nav-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: bold;
}

.nav-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.nav-buttons button {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn-cyan { background: #00B4D8; color: white; }
.btn-login { background: #004d99; color: white; }
/* যেহেতু এটা লগইন পেজ, তাই Log In বাটনটাকে একটু হাইলাইট করতে পারিস */
.btn-login.active-btn { background: #003366; } 

/* লগইন মেইন কন্টেইনার */
.login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    position: relative;
    /* ম্যাপের ছবিটা যেন কন্টেইনারের বাইরে না যায় */
    overflow: hidden; 
}

/* ম্যাজিক: ব্যাকগ্রাউন্ড ম্যাপের Opacity কমানো */
.login-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    /* এখানে তোর ম্যাপের ছবির নাম দিবি */
    background: url('images/worldmap.png') no-repeat center center; 
    background-size: contain;
    opacity: 0.5; /* অপাসিটি কমিয়ে জলছাপ করে দিলাম */
    z-index: -1;
}

.login-container h1 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
    z-index: 1; /* লেখার ওপর যেন ছবি না আসে */
}

/* লগইন অপশন কার্ডগুলোর লিস্ট */
.login-options {
    width: 100%;
    max-width: 700px; /* কার্ডের চওড়া সাইজ */
    display: flex;
    flex-direction: column;
    gap: 15px; /* কার্ডগুলোর মাঝের গ্যাপ */
    z-index: 1;
}

.login-card {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #d0e5f5;
}

.login-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.login-card p {
    font-size: 16px;
    font-weight: bold;
    color: #111;
    flex-grow: 1; /* লেখাকে জায়গা ছেড়ে দিয়ে অ্যারোকে ডানে ঠেলে দেবে */
}

.login-card .arrow {
    color: #aaa;
    font-weight: bold;
    font-size: 18px;
}

/* ফুটার */
.footer {
    background-color: #004d99;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    font-size: 14px;
    z-index: 10;
}

.footer img { height: 30px; }

/* চ্যাটবট */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

.chatbot img {
    width: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ল্যাঙ্গুয়েজ ড্রপডাউন পজিশন */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-list {
    position: absolute;
    top: 45px;
    right: 0;
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    width: 120px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none; /* প্রথমে লুকোনো থাকবে */
    z-index: 200;
}

.lang-list li {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.lang-list li:hover {
    background-color: #f5f5f5;
    color: #0056b3;
}

/* ক্লিক করলে দেখানোর জন্য ক্লাস */
.lang-list.show {
    display: block;
}

/* গুগলের সব রকমের ওপরের ফ্রেম এবং প্যানেল চিরতরে হাইড করার জন্য */
iframe.goog-te-banner-frame, 
.goog-te-banner-frame, 
#goog-te-hoverplace, 
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* অনুবাদ হওয়ার সময় গুগল যে পপআপ বা উইন্ডো দেখায় তা ব্লক করা */
.skiptranslate {
    display: none !important;
}