/* বেসিক রিসেট */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* body থেকে আগের background gradient টা সরিয়ে ফেল */
body {
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.logo img {
    height: 70px; /* তোর লোগোর সাইজ অনুযায়ী এটা কম-বেশি করে নিবি */
    width: auto;
    object-fit: contain; /* লোগো যেন চ্যাপ্টা না হয়ে যায় */
    cursor: pointer;
}
/* ভিডিওটাকে ফুল স্ক্রিন ব্যাকগ্রাউন্ড বানানোর CSS */
/* নতুন র্যাপারটার স্টাইল */
.top-bg-section {
    position: relative;
    width: 100%;
    padding-bottom: 50px; /* সাদা সেকশন শুরুর আগে একটু গ্যাপ */
}

/* ভিডিওর নতুন পজিশন */
#bg-video {
    position: absolute; /* fixed বাদ দিয়ে absolute করে দিলাম */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* এখন ভিডিওটা শুধু top-bg-section এর সমান লম্বা হবে */
    object-fit: cover;
    z-index: -10; /* লেখার পেছনে পাঠানোর জন্য */
}

/* সাদা সার্ভিস সেকশন */
.services-section {
    position: relative; 
    z-index: 1;
    background: white;
    padding: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -30px; /* ভিডিও আর ম্যাপের ওপর হালকা একটু ওভারল্যাপ করার জন্য */
}

/* নিচের সাদা সার্ভিস সেকশনটা যেন ভিডিওর ওপর সুন্দরভাবে ভেসে ওঠে */
.services-section {
    position: relative; 
    z-index: 1;
    background: white;
    color: #333;
    padding: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 100px; /* ম্যাপ আর ভিডিওর পর একটু স্পেস দেওয়ার জন্য */
}

/* ন্যাভিগেশন বার */
.navbar {
    display: flex;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    box-sizing: border-box; /* প্যাডিংয়ের কারণে যেন স্ক্রিন থেকে বের না হয়ে যায় */
}

/* লোগো আর মেন্যুর মাঝখানে গ্যাপ */
.nav-links {
    margin-left: 40px; 
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: bold;
}

/* বাটনগুলোকে ডানদিকে ধাক্কা দেওয়ার কোড */
.nav-buttons {
    margin-left: auto; /* এই লাইনটাই মেইন ম্যাজিক করবে */
    display: flex;
    gap: 15px; /* বাটনগুলোর মাঝে একটু ফাঁকা জায়গা */
}

/* বাটন ডিজাইন */
.nav-buttons button {
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

.btn-cyan {
    background: #00B4D8;
    color: white;
}

.btn-login {
    background: #006699; 
    color: white;
}

/* হিরো সেকশন (মেইন লেখাগুলো) */
.hero {
    text-align: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 36px; /* মেইন লেখাটা বেশ বড় আর বোল্ড */
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero p {
    font-size: 18px; /* সাব-হেডলাইনের সাইজ */
    color: #b3b3cc; /* হালকা ছাই/অ্যাশ কালার */
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.custom-dropdown {
    position: relative;
    width: 300px;
}

.dropdown-header {
    height: 45px;
    background-color: white;
    border-radius: 8px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.search-input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    width: 90%;
    background: transparent;
    cursor: pointer;
}

.search-input::placeholder {
    color: #a0a0a0;
}

.icon-arrow, .icon-search {
    display: flex;
    align-items: center;
}

.dropdown-list {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown-list.active {
    display: block;
}

.option {
    padding: 10px 20px;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.option img {
    width: 20px;
    border-radius: 2px;
}

.option:hover {
    background-color: #f0f0f0; 
}
/* সুন্দর কাস্টম স্ক্রলবার */
.dropdown-list::-webkit-scrollbar {
    width: 6px;
}
.dropdown-list::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

/* Check বাটনটাকেও 40px হাইট আর মাঝখানে লেখা রাখার জন্য আপডেট কর */
.btn-check {
    height: 40px;
    background: #00B4D8;
    color: white;
    border: none;
    padding: 0 40px;
    line-height: 40px; /* বাটনের লেখাকেও মাঝখানে রাখবে */
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-check:hover {
    background: #0096b4;
}

/* ম্যাপ সেকশন (Placeholder) */
.map-section {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.map-placeholder {
    width: 60%;
    height: 100%;
    /* এখানে 3D ম্যাপের ছবিটা ব্যাকগ্রাউন্ড হিসেবে দিতে পারিস */
    background: radial-gradient(circle, rgba(0,180,216,0.3) 0%, rgba(26,27,75,0) 70%);
}

/* সার্ভিস সেকশন (সাদা অংশ) */
.services-section {
    background: white;
    color: #333;
    padding: 50px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px; /* ম্যাপের সাথে ওভারল্যাপ করার জন্য */
}

.services-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.card {
    background: white;
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card p {
    font-weight: bold;
    flex-grow: 1;
}

/* চ্যাটবট */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

.chatbot img {
    width: 70px;
    border-radius: 10px;
}

/* --- নতুন সেকশনগুলোর স্টাইল --- */

/* সার্ভিস ও ভিসা কান্ট্রি সেকশনের বেসিক সেটআপ */
.services-section, .visa-free-section, .info-section {
    background: white;
    padding: 40px 50px;
    color: #333;
}

.services-section {
    position: relative; 
    z-index: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -30px; 
}

.services-section h2, .visa-free-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #222;
}

/* 4 কলামের কার্ড গ্রিড */
.cards-grid, .country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card-icon { width: 30px; }
.flag-icon { width: 35px; border-radius: 3px; }

.card p {
    font-weight: bold;
    font-size: 14px;
    flex-grow: 1;
}

.card .arrow { color: #888; font-weight: bold; }

/* ভিসা কান্ট্রি ট্যাব */
.country-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 8px 20px;
    border: none;
    background: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    font-size: 14px;
}

.tab-btn.active {
    background: #0056b3;
    color: white;
}

/* ইনফরমেশন বক্স */
.info-section { padding-bottom: 80px; }

.info-box {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    overflow: hidden; /* ভেতরের ছবি যেন বর্ডারের বাইরে না যায় */
}

.info-img-container {
    flex: 1;
    background: #004d99; /* ছবি না পেলে এই নীল রং দেখাবে */
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    flex: 1.5;
    padding: 40px;
}

/* ইনফরমেশন বক্সের কন্টেইনার আপডেট */
.info-img-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white; /* কারণ তোর ছবিগুলোতেই নীল ব্যাকগ্রাউন্ড আছে */
}

.info-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* বাটন ও ট্যাবের স্টাইল */
.info-tabs-container {
    margin-bottom: 20px;
}

.info-tabs-row1 {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.info-tabs-row2 {
    display: flex;
}

.info-tab-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    background: white;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

/* হোভার করলে হালকা শ্যাডো হবে */
.info-tab-btn:hover {
    border-color: #00B4D8;
}

/* অ্যাকটিভ বাটনের কালার (তোর স্ক্রিনশটের মতো আকাশী/নীল) */
.info-tab-btn.active-info-tab {
    background: #00B4D8;
    color: white;
    border-color: #00B4D8;
}

.info-text-content p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.tag.active-tag {
    background: #00B4D8;
    color: white;
    border: none;
}

.tag-large {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.info-content p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* ফুটার (আগে না থাকলে অ্যাড করে নে) */
.footer {
    background-color: #004d99;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    font-size: 14px;
}
.footer img { height: 30px; }

/* ল্যাঙ্গুয়েজ ড্রপডাউন পজিশন */
.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;
}

/* গুগলের ওপরের বোরিং বার হাইড করার জন্য */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}
/* গুগলের অটো সাজেস্টেড টুলটিপ হাইড করার জন্য */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* গুগলের সব রকমের ওপরের ফ্রেম এবং প্যানেল চিরতরে হাইড করার জন্য */
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;
}