/* ==========================================================
   PRIME Q SOLUTION - MASTER STYLESHEET
   ========================================================== */

/* --- Variables for consistent styling --- */
:root {
  --primary-blue: #004aad; /* Trustworthy Blue */
  --secondary-green: #38a3a5; /* Accent Green */
  --white: #ffffff;
  --light-gray: #f9f9f9; /* Light background */
  --text-color: #555555;
  --heading-color: #1a1a1a;
  --dark-blue: #003380;
}

/* --- Base Styles & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; text-align: center; }
h3 { font-size: 1.5em; }

p { margin-bottom: 1em; }

/* ==========================================================
   BUTTONS
   ========================================================== */
.cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  font-size: 1.1em;
}

.cta-button.primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
}

.cta-button.primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

/* ==========================================================
   HEADER & NAVIGATION
   ========================================================== */
header {
  background-color: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo styling */
.logo {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-blue);
}

.logo a {
  color: var(--primary-blue);
  text-decoration: none;
}

.logo img {
  height: 100px;
  width: auto;
  border: none;
  background: transparent;
  object-fit: contain;
}
/* --- Navigation for Mobile Toggle --- */
.main-nav ul {
    list-style: none;
    display: flex; /* ডেস্কটপে মেনু পাশাপাশি থাকবে */
    align-items: center;
    padding: 0;
    
    margin-right: 15px;
}

.main-nav ul li a {
    color: var(--heading-color);
    text-decoration: none;
    padding: 10px 10px; /* প্যাডিং সামঞ্জস্য করা */
    font-size: 16px;
    display: block;
    transition: color 0.3s ease;
}

.hamburger-menu {
    display: none; /* ডেস্কটপে হাইড থাকবে */
    font-size: 2em;
    cursor: pointer;
    color: var(--primary-blue);
}
/* Mobile Devices */
/* --- HEADER & NAVIGATION --- */
/* ... (Desktop styles: .main-nav ul, .hamburger-menu { display: none; } -- এগুলি ঠিক আছে) ... */

/* ==========================================================
   MOBILE NAVIGATION FIX (Max-width: 768px)
   ========================================================== */

@media (max-width: 768px) {
    
    /* 1. Header Container - ensure items stack correctly */
    header .container {
        flex-wrap: wrap; /* লোগো এবং হ্যামবার্গারকে একই লাইনে রাখবে */
    }

    /* 2. Hamburger Icon - Show it on mobile */
    .hamburger-menu {
        display: block !important; /* মোবাইলে আইকন দেখানো নিশ্চিত করুন */
        position: relative; /* z-index যেন ঠিক থাকে */
        z-index: 1001; /* মেনুর উপরে থাকবে */
    }

    /* 3. Main Navigation Container */
    .main-nav {
        /* পূর্ণ প্রস্থে নিচের দিকে আনুন */
        width: 100%;
        position: absolute; /* header-এর নিচে যেন পুরো স্ক্রিন জুড়ে আসে */
        top: 100px; /* Header-এর উচ্চতার নিচে শুরু হবে */
        left: 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        
        /* মেনু বন্ধ করার জন্য উচ্চতা 0 করে হাইড করুন */
        height: 0; 
        overflow: hidden;
        transition: height 0.4s ease-in-out;
    }

    /* 4. Main Navigation List (ul) */
    .main-nav ul {
        /* ডেস্কটপ flex override করে vertically stack করবে */
        display: block !important; 
        flex-direction: column;
        width: 100%;
        padding: 10px 0; /* প্যাডিং যোগ করুন যাতে আইটেমগুলির মধ্যে জায়গা থাকে */
    }

    /* 5. Navigation Items (li) and Links (a) */
    .main-nav ul li {
        border-bottom: 1px solid var(--light-gray);
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        padding: 12px 20px;
        text-align: left;
    }

    /* 6. Active State (Menu Open) */
    /* JS যখন .main-nav-এ 'active' ক্লাস যোগ করবে */
    .main-nav.active {
        height: auto;
        /* একটা সর্বোচ্চ উচ্চতা সেট করুন, যাতে ট্রানজিশন স্মুথ হয় */
        max-height: 500px; 
        overflow: auto;
    }
}
/* Mobile Devices */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px; /* <-- padding আছে */
    justify-content: center;
    text-align: center;
  }
  /* ... */
}
/* ==================================== */
/* Navigation Link Styling for Active Page */
/* ==================================== */

/* Nav লিঙ্কের সাধারণ স্টাইল */
.main-nav ul li a {
    position: relative; /* ::after সিউডো-এলিমেন্টকে পজিশন করার জন্য প্রয়োজন */
    text-decoration: none; /* ডিফল্ট আন্ডারলাইন সরিয়ে দেওয়া */
    padding-bottom: 5px; /* আন্ডারলাইনের জন্য জায়গা তৈরি করা */
    transition: color 0.3s;
}

/* ::after ব্যবহার করে আন্ডারলাইন তৈরি করা */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; /* ডিফল্ট অবস্থায় আন্ডারলাইন নেই */
    height: 3px; /* আন্ডারলাইনের উচ্চতা */
    background-color: var(--primary-blue); /* আপনার প্রধান রঙ ব্যবহার করা */
    left: 50%; /* মাঝখান থেকে শুরু করার জন্য */
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease-out; /* অ্যানিমেশনের জন্য */
}

/* Hover করলে আন্ডারলাইন দেখান */
.main-nav ul li a:hover::after {
    width: 100%; /* হোভার করলে আন্ডারলাইন পুরোটা দেখাবে */
}


/* ⭐ Active Class Styling ⭐ */

/* যখন কোনো লিঙ্কে 'active' ক্লাস থাকবে, তখন আন্ডারলাইন সবসময় দেখানো হবে */
.main-nav ul li a.active::after {
    width: 100%; 
}

/* Active এবং Hover-এর রঙের সামঞ্জস্য */
.main-nav ul li a.active {
    color: var(--primary-blue); /* Active link-এর জন্য গাঢ় বা প্রধান রঙ ব্যবহার করা */
    font-weight: 600; /* একটু মোটা ফন্ট ব্যবহার করা */
}


/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  position: relative;
  background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
   min-height: 80vh !important;
  overflow: hidden;
   padding: 100px 0;
}

/* ==================================== */
/* MODAL / POPUP STYLES */
/* ==================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* প্রাথমিকভাবে লুকানো থাকবে */
    align-items: center;
    justify-content: center;
    z-index: 1000; /* নিশ্চিত করা হলো যেন সবার উপরে থাকে */
}

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    text-align: left;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h3 {
    color: var(--primary-blue);
    margin-top: 0;
}

.modal-content label {
    display: block;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.modal-content .radio-group input {
    margin-right: 5px;
}

.modal-content .radio-group {
    margin-bottom: 10px;
}

.modal-content button.cta-button {
    width: 100%;
    margin-top: 15px;
}

/* ==========================================================
   ৩. মোবাইল রেসপনসিভনেস
   ========================================================== */
@media (max-width: 992px) {
    .hero-section.hero-carousel {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    /* মোবাইলে গ্লো জোন নিষ্ক্রিয় করা (Touchscreen-এ ভালো কাজ করে না) */
    .focus-overlay-area {
        display: none;
    }
    
    .hero-section.hero-carousel h1 {
        font-size: 2.5em;
    }
}
@media (max-width: 768px) {
    .hero-section.hero-carousel h1 {
        font-size: 2.2em;
    }
    .hero-section.hero-carousel p {
        font-size: 1em;
    }
}
/* ==========================================================
   ১. HERO SECTION: IMAGE CAROUSEL BASE STYLE
   ========================================================== */
.hero-section.hero-carousel {
    position: relative; /* ::after কে সঠিকভাবে অবস্থান করতে */
    color: var(--white); 
    padding: 150px 0;
    min-height: 80vh;
    overflow: hidden; /* ইমেজের বাইরের অংশ লুকানোর জন্য */
    
    /* কন্টেন্টকে সেন্টারে আনার জন্য */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* কন্টেন্টকে ইমেজের উপরে আনার জন্য */
.hero-section.hero-carousel .container {
    position: relative;
    z-index: 2; /* ব্যাকগ্রাউন্ড ইমেজের উপরে থাকবে */
}

/* ইমেজ ক্যারোসেল তৈরির জন্য ::after ব্যবহার */
.hero-section.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* কন্টেন্টের নিচে থাকবে */
    
    /* প্রথম ইমেজ এবং অপাসিটি ওভারলে */
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), 
                      url('images/hero-bg-1.jpg'); /* <-- আপনার প্রথম ছবির পাথ */
                      
    background-size: cover;
    background-position: center center;
    opacity: 1;
    transition: background-image 1s ease-in-out; /* ট্রানজিশন ইফেক্ট */
}

/* টেক্সট স্টাইল নিশ্চিত করা */
.hero-section.hero-carousel h1 {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
.hero-section.hero-carousel p {
    font-size: 1.2em;
    color: var(--white);
    opacity: 1; 
    margin: 0 auto 30px auto;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* মোবাইলের জন্য রেসপনসিভনেস */
@media (max-width: 768px) {
    .hero-section.hero-carousel {
        padding: 80px 0;
        min-height: 60vh;
    }
    .hero-section.hero-carousel h1 {
        font-size: 2.2em;
    }
}
/* এই অংশটি স্টাইলশিটে পরিবর্তন করুন */
.hero-section.hero-carousel::after {
    /* ... অন্যান্য স্টাইল ... */
    
    /* JavaScript এর মান ব্যবহারের জন্য 'background-image' এখানে 'var(--current-bg)' দিয়ে প্রতিস্থাপন করুন */
    background-image: var(--current-bg); 
    
    /* ব্যাকআপ যদি JavaScript কাজ না করে (ঐচ্ছিক) */
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('images/hero-bg-1.jpg'); */
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.2em;
  line-height: 1.3;
  color: var(--white);
}

.hero-content p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

/* ====================================
   // WhatsApp Floating Button Styles
   // ==================================== */


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* নিচ থেকে দূরত্ব */
    right: 40px; /* ডান দিক থেকে দূরত্ব */
    background-color: #25d366; /* হোয়াটসঅ্যাপের অফিসিয়াল রং */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* যেন সবকিছুর উপরে থাকে */
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration-line: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e; /* হোভার করার সময় গাঢ় সবুজ */
    transform: scale(1.1); /* হোভার করার সময় হালকা বড় হবে */
}

/* মোবাইলের জন্য ছোট করা */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* ==========================================================
   SPECIALIZED SERVICES
   ========================================================== */
.specialized-services {
  padding: 80px 0;
  background-color: var(--white);
}

.specialized-services h2 {
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
  
}

.service-card {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-blue);
}

.service-card i {
  font-size: 2.5em;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}
/* --- New Styles for 4 Service Cards --- */

/* Service Cards container */
.service-cards {
    display: flex;
    flex-wrap: wrap; /* ছোট স্ক্রিনের জন্য wrap করার অনুমতি */
    justify-content: center; /* কার্ডগুলো যেন মাঝখানে থাকে */
    gap: 30px; /* কার্ডগুলোর মধ্যে দূরত্ব */
    margin-top: 40px;
}

/* Individual Card Sizing (Standard/Desktop) */
.service-cards .service-card {
    /* 4টি কার্ডকে এক লাইনে রাখার জন্য, 25% এর চেয়ে কিছুটা কম প্রস্থ দিন, gaps সহ */
    flex-basis: calc(25% - 30px); 
    min-width: 250px; /* যাতে খুব বেশি ছোট না হয়ে যায় */
    text-align: center;
}

/* ==========================================================
   RESPONSIVENESS ADJUSTMENT FOR SERVICE CARDS
   ========================================================== */

/* Tablets (Max-width: 992px) - 2 cards per row */
@media (max-width: 992px) {
    .service-cards .service-card {
        flex-basis: calc(50% - 30px); /* 2টি কার্ড এক লাইনে দেখাবে */
    }
}

/* Mobile (Max-width: 576px) - 1 card per row */
@media (max-width: 576px) {
    .service-cards .service-card {
        flex-basis: 100%; /* 1টি কার্ড এক লাইনে দেখাবে */
    }
}

/* ==========================================================
   WHY CHOOSE US
   ========================================================== */
.why-choose {
  background: linear-gradient(135deg, #f9f9f9 0%, #eaf3ff 100%);
  padding: 100px 0;
}

.why-choose .content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  text-align: left;
}

.why-choose h2 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 2.2em;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.image-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-choose .feature-list .list-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-choose .list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
/* Responsive Design */
@media (max-width: 992px) {
    /* WHY CHOOSE US - Tablet/Small Desktop */
    .why-choose .content-wrapper {
        flex-direction: column; /* ছোট স্ক্রিনে কন্টেন্ট উপরে-নিচে দেখাবে */
        text-align: center; /* টেক্সট মাঝখানে অ্যালাইন হবে */
    }

    .why-choose h2 {
        text-align: center; /* টাইটেল মাঝখানে অ্যালাইন হবে */
    }

    .image-content {
        order: -1; /* ছবিটি টেক্সটের উপরে দেখানোর জন্য */
        text-align: center; /* ছবির কন্টেইনারের টেক্সট-অ্যালাইনমেন্ট সেন্টার */
        margin-bottom: 30px; /* ছবি এবং টেক্সটের মধ্যে স্পেস */
    }
    
    .text-content {
        order: 0;
    }

    /* ... অন্যান্য কোড ... */
}

@media (max-width: 768px) {
    /* WHY CHOOSE US - Mobile */
    /* এখানে image-content বা image-content img এর জন্য আলাদা করে max-width বা height সেট করার দরকার নেই,
       কারণ 992px এর মিডিয়া কোয়েরি এবং বেস স্টাইলগুলো এটি হ্যান্ডেল করবে। */

    /* ... অন্যান্য কোড ... */
}
/* ==================================== */
/* COUNTER SECTION: অ্যানিমেটেড কাউন্টার উইথ ইমপ্যাক্ট */
/* ==================================== */

/* সংখ্যার সাইজ বড় ও গাঢ় করা */
.counter-item .count {
    font-size: 4em; /* বিশাল ফন্ট */
    font-weight: 800; /* এক্সট্রা গাঢ় */
    display: block;
    margin-bottom: 5px;
    color: var(--white); /* বা অন্য হাইলাইট রং */
}

/* বর্তমান মেট্রিক */
.counter-item .current-metric {
    font-size: 1.1em;
    font-weight: 600;
    opacity: 1; 
    margin-top: 0;
    margin-bottom: 5px; /* সুবিধা টেক্সট থেকে দূরত্ব */
    text-transform: uppercase;
}

/* ক্লায়েন্টের সুবিধা (Benefit) টেক্সট */
.counter-item .client-benefit {
    font-size: 1em;
    opacity: 0.85; 
    font-style: italic; /* হালকা ইটালিক করা যেতে পারে */
    max-width: 250px;
    margin: 0 auto;
}

/* ট্রাস্ট সীল এরিয়া */
.trust-seal-area {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================
   STATISTICS BAR
   ========================================================== */
.statistics-bar {
    background: linear-gradient(90deg, var(--primary-blue), #1a66cc);
    color: var(--white); /* এইটা খুব জরুরি, যাতে লেখাগুলি সাদা হয় */
    text-align: center;
    padding: 60px 0;
}

.statistics-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
}

.statistics-bar .stat-item h3 {
    font-size: 2.8em;
    margin-bottom: 5px;
    font-weight: 700;
    opacity: 1; /* নিশ্চিত করুন যে এটি লুকানো নেই */
    visibility: visible;
}

.stat-item p {
  font-size: 1em;
  margin: 0;
  text-transform: uppercase;
  color: white;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.testimonials .subtitle {
  margin-bottom: 50px;
  font-size: 1.1em;
  color: var(--text-color);
}

.testimonial-card {
  background: linear-gradient(to bottom right, #ffffff, #f0f8ff);
  border: none;
  border-top: 5px solid var(--secondary-green);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card i.fa-quote-left {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2em;
  color: rgba(0, 74, 173, 0.1);
}

.testimonial-card p {
  font-style: italic;
  margin-top: 25px;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.1em;
}

.testimonial-card .client-title {
  font-size: 0.9em;
  color: #888;
}

/* ==========================================================
   BOTTOM CTA
   ========================================================== */
.cta-bottom.final-cta {
  background: linear-gradient(135deg, #004aad, #0066cc);
  padding: 80px 20px;
  text-align: center;
}

.cta-bottom.final-cta .cta-button {
  background-color: var(--white);
  color: var(--primary-blue);
  border: none;
  padding: 18px 45px;
  font-size: 1.1em;
  border-radius: 50px;
  font-weight: 600;
}

.cta-bottom.final-cta .cta-button:hover {
  background-color: #eaf3ff;
  color: var(--dark-blue);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #0a1a44;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px 20px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
  border: none;
}
.footer-section img.footer-logo {
    /* লোগোর জন্য সাদা ব্যাকগ্রাউন্ড এবং প্যাডিং যোগ করা হলো */
    background-color: var(--white); /* Variables: #FFFFFF */
    padding: 5px; /* লোগোর চারপাশে একটু জায়গা */
    border-radius: 4px; /* হালকা গোল কোণা */
    display: block; /* যাতে মার্জিন ঠিকমতো কাজ করে */
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-section p {
  margin: 6px 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #00b4d8;
}

.social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00b4d8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #1e2d5a;
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin: 20px 0;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */

/* Tablets and Medium Devices */
@media (max-width: 992px) {
  .why-choose .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-choose h2 {
    text-align: center;
  }

  .image-content {
    order: -1;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1, 
  .hero-content p {
    max-width: 100%;
    text-align: center;
  }

  .statistics-bar .container {
    flex-direction: column;
    gap: 30px;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ==========================================================
   SERVICES PAGE STYLES
   ========================================================== */

/* Services Hero Section (Smaller, Focus on title) */
.services-hero {
    background-color: #ffffff; 
    padding: 0;
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3em;
    color: var(--white);
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.1em;
    color: #e0e0e0;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail:nth-child(even) {
    background-color: var(--light-gray); /* প্রতি দ্বিতীয় সেকশনে হালকা গ্রে ব্যাকগ্রাউন্ড */
}

.service-detail h2 {
    text-align: left; /* টাইটেল বাম দিকে থাকবে */
    font-size: 2.5em;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-detail .detail-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.service-detail .text-content {
    flex: 1;
    min-width: 300px;
}

.service-detail .image-content {
    flex: 1;
    min-width: 300px;
}

.service-detail .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Service Points List */
.service-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-points li {
    font-size: 1.1em;
    margin-bottom: 12px;
}

.service-points i {
    color: var(--secondary-green);
    margin-right: 10px;
}

/* Alternating Layout (Image Left, Text Right) */
.service-detail.alt-layout .detail-wrapper {
    flex-direction: row-reverse; /* ছবি ডানে, লেখা বামে */
}

/* service-detail.alt-layout-এর জন্য এটি নিশ্চিত করুন যে style.css-এ আছে */
.service-detail.alt-layout .detail-wrapper {
    flex-direction: row-reverse; /* ছবি ডানে, লেখা বামে */
}
/* === Proven Process Section === */
.proven-process {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.proven-process h2 {
    margin-bottom: 10px;
}

.proven-process .subtitle {
    margin-bottom: 60px;
    font-size: 1.1em;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    max-width: 250px;
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-card i {
    font-size: 3em;
    color: var(--primary-blue);
    margin-bottom: 15px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    padding: 15px;
}

.step-card h4 {
    font-size: 1.3em;
    color: var(--heading-color);
}
/* Tablets and Medium Devices */
@media (max-width: 992px) {
    /* ... অন্যান্য কোড ... */
    
    /* Service Detail Mobile Stack */
    .service-detail .detail-wrapper {
        flex-direction: column; /* উপরে-নিচে করে দেখাবে */
        text-align: center;
    }
    
    .service-detail .text-content {
        order: 1; /* টেক্সট নিচে থাকবে */
    }

    .service-detail .image-content {
        order: 0; /* ছবি উপরে থাকবে */
        margin-bottom: 30px;
    }

    .service-detail h2 {
        text-align: center; /* মোবাইলে টাইটেল মাঝখানে আসবে */
    }
    
    .service-points {
        text-align: left; /* লিস্ট পয়েন্টগুলো বামে থাকবে */
    }

    /* Process Steps Stacking */
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        max-width: 90%;
        margin-bottom: 20px;
    }
}
/* --- Global Styles for Footer --- */
.site-footer {
    background-color: #0b1130; /* গাঢ় নেভি ব্লু ব্যাকগ্রাউন্ড */
    color: #f0f0f0; /* হালকা টেক্সট কালার */
    padding: 40px 0 0; /* উপরে ও নিচে প্যাডিং */
    font-family: Arial, sans-serif; /* ফন্ট পরিবর্তন করতে পারেন */
}

.site-footer a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #4db8ff; /* হোভারে নীল রং (আপনার ব্র্যান্ডের রঙের সাথে মেলাতে পারেন) */
}

.container {
    max-width: 1200px; /* কন্টেইনারের সর্বোচ্চ প্রস্থ */
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Main Footer Content Layout --- */
.footer-content {
    display: flex;
    flex-wrap: wrap; /* ছোট স্ক্রিনের জন্য wrap করা */
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* সেকশন আলাদা করার জন্য হালকা বর্ডার */
}

.footer-section {
    width: 30%; /* প্রতিটি সেকশনের প্রস্থ */
    margin-bottom: 30px;
}

/* ছোট স্ক্রিনের জন্য প্রস্থের পরিবর্তন */
@media (max-width: 992px) {
    .footer-section {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .footer-section {
        width: 100%; /* মোবাইল স্ক্রিনে সম্পূর্ণ প্রস্থ */
    }
}


/* --- 1. Company Info Styles --- */
.company-info .logo-area {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo {
    width: 40px; /* লোগোর প্রস্থ */
    height: 40px;
    margin-right: 10px;
}

.company-info h2 {
    font-size: 1.5em;
    margin: 0;
    font-weight: bold;
}

.company-info p {
    font-size: 0.9em;
    line-height: 1.6;
}


/* --- 2. Quick Links Styles --- */
.quick-links h3, .contact-social h3 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 3px solid #4db8ff; /* আগের ডিজাইনের নীল রঙের সাথে মেলাতে */
    padding-left: 10px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 8px;
    font-size: 0.9em;
}


/* --- 3. Contact & Social Styles --- */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.contact-item i {
    margin-right: 10px;
    color: #4db8ff; /* আইকন কালার */
    font-size: 1.1em;
}

.follow-us {
    margin-top: 25px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.1em;
}

.social-links a:hover {
    background-color: #4db8ff;
    border-color: #4db8ff;
    color: #0b1130;
}


/* --- Copyright Bar Styles --- */
.footer-bottom {
    background-color: #080c25; /* ফুটরের থেকে সামান্য গাঢ় শেড */
    padding: 15px 0;
    text-align: center;
    font-size: 0.8em;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
}

/* ==================================== */
/* ABOUT US HERO SECTION */
/* ==================================== */
.about-hero .blue-header { /* Reusing the blue-header from services.html */
    background-color: #0b1130; /* Darker blue as in the image */
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero .blue-header h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero .blue-header p {
    font-size: 1.2em;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================================== */
/* VISION & MISSION SECTION */
/* ==================================== */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.vm-grid {
    display: flex;
    gap: 30px;
}

.vm-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.vm-card h2 {
    color: #0d6efd;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.vm-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #444;
}

/* ==================================== */
/* OUR STORY SECTION */
/* ==================================== */
.our-story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-text {
    flex: 1;
    padding-right: 20px;
}

.story-text h2 {
    color: #0b1130;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================================== */
/* CORE VALUES SECTION */
/* ==================================== */
.core-values-section {
    padding: 80px 0;
    background-color: #f0f4f8; /* Light blueish background */
    text-align: center;
}

.core-values-section h2 {
    color: #0b1130;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.core-values-section .subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-basis: calc(25% - 30px); /* Approx 4 items per row */
    text-align: center;
}

.value-card i {
    font-size: 2.5em;
    color: #0d6efd;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.2em;
    color: #0b1130;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* ==================================== */
/* OUR JOURNEY SECTION */
/* ==================================== */
.our-journey-section {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.our-journey-section h2 {
    color: #0b1130;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.journey-timeline::before { /* Horizontal line */
    content: '';
    position: absolute;
    top: 50px; /* Adjust based on year-circle position */
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.timeline-item {
    flex: 1;
    position: relative;
    z-index: 2;
    background-color: #fff; /* To cover the line */
    padding-top: 70px; /* Space for the circle */
}

.year-circle {
    width: 80px;
    height: 80px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff; /* White border as in image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item h4 {
    font-size: 1.2em;
    color: #0b1130;
    margin-top: 15px;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 0.95em;
    color: #666;
}


/* ==================================== */
/* MEET OUR EXPERT TEAM SECTION */
/* ==================================== */
.team-section {
    padding: 80px 0;
    background-color: #f7f9fc;
    text-align: center;
}

.team-section h2 {
    color: #0b1130;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex-basis: calc(25% - 30px); /* 4 members per row */
    min-width: 250px; /* Minimum width for responsiveness */
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0d6efd; /* Blue border for profile pic */
}

.team-member h4 {
    font-size: 1.3em;
    color: #0b1130;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.team-member .social-icons a {
    color: #0d6efd;
    font-size: 1.2em;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.team-member .social-icons a:hover {
    color: #0b5ed7;
}

/* ==================================== */
/* WHY CHOOSE US / COUNTER SECTION */
/* ==================================== */
.choose-us-section {
    background-color: #0d6efd; /* Full blue background */
    color: white;
    padding: 60px 0;
    text-align: center;
}

.choose-us-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.counter-item {
    flex: 1;
    padding: 20px;
    /* background-color: rgba(255, 255, 255, 0.1); */ /* Optional: subtle background for each item */
    border-radius: 8px;
}

.counter-item .count {
    font-size: 3em;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 1em;
    opacity: 0.9;
}

/* ==========================================================
   'WHY CHOOSE US' PAGE STYLES (why-work-with-us.html)
   ========================================================== */

/* --- 1. Hero Section: Why Choose Us --- */
.hero-section.blue-bg {
    /* Variables: --primary-blue: #004aad (Master Stylesheet থেকে নেওয়া) */
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 100px 0; 
    text-align: center;
}

.hero-section.blue-bg h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    /* h1-এর রং এখানে সাদা থাকবে কারণ এটি blue-bg ক্লাসের ভেতরে আছে */
    color: var(--white); 
}

.hero-section.blue-bg p {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}


/* --- 2. Proposal Points Section (Feature Grid) --- */
.proposal-points-section {
    padding: 80px 0;
    background-color: var(--white);
}
.proposal-points-section p {
    background-color: var(--white);
    text-align: center;
}

.section-heading {
    /* এটি গ্লোবাল স্টাইল থেকে আসবে (h2), কিন্তু টেক্সট কালার নিশ্চিত করা হলো */
    color: var(--heading-color); 
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1em;
    color: var(--text-color); /* মাস্টার স্টাইলশীট থেকে */
    margin-bottom: 50px;
}

/* Feature Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Feature Card Styling */
.feature-card {
    padding: 30px;
    border: none;
    border-radius: 12px;
    text-align: center;
    /* Variables: --light-gray (Master Stylesheet থেকে #f9f9f9) ব্যবহার করা হলো */
    background-color: var(--light-gray); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); 
    /* হোভার শেডো: নীল রং ব্যবহার করা হলো (Master --primary-blue) */
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.15); 
}

.feature-card i {
    font-size: 2.5em;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    /* Variables: --dark-blue ব্যবহার করা হলো (Master Stylesheet থেকে #003380) */
    color: var(--dark-blue); 
}

.feature-card p {
    color: var(--text-color);
}
/* Feature Card (Proposal Points) - এর উপর হোভার ইফেক্টকে আরও স্মুথ করা */
.feature-card {
    /* পূর্বের কোডে এই ট্রানজিশনটি আছে, এটি নিশ্চিত করা হলো */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px); /* হোভার ইফেক্ট (আরেকটু বেশি উপরে উঠবে) */
    /* নীল রঙের উজ্জ্বল শেডো */
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2); 
    background-color: var(--white); /* হোভারের সময় সাদা ব্যাকগ্রাউন্ড */
}

/* Core Value Pillars এর জন্য হালকা জুম ও শ্যাডো ইফেক্ট */
.core-values-section .pillar-item {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: default; /* কার্সার পরিবর্তন করা হলো */
}

.core-values-section .pillar-item:hover {
    transform: scale(1.05); /* হালকা জুম */
}
/* CTA Button: হালকা পালস অ্যানিমেশনের সংজ্ঞা */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.final-cta-section .cta-button.primary {
    /* পূর্বের ট্রানজিশনের সাথে বক্স-শ্যাডো যোগ করা হলো */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
    /* প্রাথমিক বক্স-শ্যাডো যোগ */
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    /* অ্যানিমেশন চালু করা হলো */
    animation: pulse 2s infinite; 
}

.final-cta-section .cta-button.primary:hover {
    background-color: var(--secondary-blue);
    /* হোভারের সময় পালস বন্ধ করে স্থির শেডো দেওয়া হলো */
    animation: none; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: blue;
}

/* --- 3. Final CTA Section (Light Background) --- */
.final-cta-section {
    /* Variables: --bg-light (Master Stylesheet থেকে #f9f9f9) ব্যবহার করা হলো */
    background-color: var(--light-gray) !important; 
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}
/* অ্যানিমেশনের মূল সংজ্ঞা: নিচে থেকে ধীরে ধীরে উপরে উঠে আসা */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section লোড হওয়ার সময় একবার ফেড-ইন হবে */
.hero-section {
    animation: fadeInUp 1s ease-out 0.5s forwards; /* 0.5s দেরিতে শুরু হবে */
    opacity: 0; /* শুরুতে লুকানো থাকবে */
}

/* অন্যান্য সেকশনের জন্য: (যদি আপনি JavaScript ব্যবহার করে স্ক্রল করার সময় এই ক্লাসটি যোগ করেন) */
/*
.section-fade-in {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}
*/
/* --- হোভার ইফেক্ট বাতিল: শুধুমাত্র নন-টাচ স্ক্রিনের জন্য --- */
@media (hover: hover) and (pointer: fine) {
    /* শুধুমাত্র মাউস-নির্ভর ডিভাইসের জন্য হোভার ইফেক্ট চালু থাকবে */
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2); 
        background-color: var(--white);
    }
    
    .core-values-section .pillar-item:hover {
        transform: scale(1.05);
    }
}

/* টাচ-স্ক্রিন ডিভাইসের জন্য: হোভারের বদলে 'active' স্টেট ব্যবহার করা যায়, তবে এখানে স্থির রাখা হলো */
.feature-card:active {
    /* টাচ করার সময় হালকা প্রতিক্রিয়া */
    transform: translateY(-2px); 
}
@media (max-width: 992px) {
    /* হিরো সেকশনটি কলাম হিসেবে সাজানো */
    .hero-section.primary-hero .container {
        flex-direction: column; 
        text-align: center;
    }
    .hero-section.primary-hero .hero-image-area {
        order: -1; 
        margin-bottom: 30px;
    }
    
    .hero-section.primary-hero h1 {
        font-size: 2.5em; /* হেডলাইনের সাইজ কমানো হলো */
    }
    .hero-section.primary-hero .lead-text {
        font-size: 1.1em; /* টেক্সট সাইজ কমানো হলো */
    }
    
    /* Core Value Pillars-কে উল্লম্বভাবে সাজানো */
    .core-values-section .value-pillars {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    /* প্রধান সেকশনগুলির প্যাডিং কমানো হলো */
    .proposal-points-section, .final-cta-section, .testimonial-section {
        padding: 60px 0;
    }

    /* ফিচার গ্রিডকে ১ কলামে আনা হলো */
    .feature-grid.two-column-grid {
        grid-template-columns: 1fr; 
    }
    
    /* কার্ডের প্যাডিং কমানো এবং টেক্সট অ্যালাইনমেন্ট ঠিক করা */
    .feature-card.large-card {
        text-align: left;
        padding: 25px; 
    }
    
    .feature-card.large-card i {
        float: none; /* আইকন ফ্লোট বন্ধ করা হলো */
        margin-right: 0;
        margin-bottom: 10px;
        display: block; /* আইকনটিকে সেন্টারে আনতে */
    }
    
    /* CTA বাটনের প্রস্থ বাড়ানো হলো */
    .final-cta-section .cta-button.primary {
        width: 100%;
        max-width: 350px;
    }
}
/* ==========================================================
   HERO SECTION: SPLIT LAYOUT (কন্টেন্ট + ইমেজ)
   ========================================================== */

/* ১. বেসিক লেআউট (Desktop) */
.hero-section.primary-hero.split-layout {
    background-color: var(--white); /* পরিষ্কার সাদা ব্যাকগ্রাউন্ড */
    color: white; 
    padding: 120px 0; /* উপরে ও নিচে পর্যাপ্ত প্যাডিং */
    text-align: left;
    opacity: 0.2;
}

.hero-section.primary-hero .container {
    display: flex;
    align-items: center; /* উল্লম্বভাবে সেন্টারে রাখবে */
    gap: 50px; /* কন্টেন্ট এবং ছবির মধ্যে দূরত্ব */
    max-width: 1200px; 
}

.hero-section.primary-hero .hero-content {
    flex: 1; /* কন্টেন্টের জন্য অর্ধেক জায়গা */
    padding-right: 20px;
}

.hero-section.primary-hero .hero-image-area {
    flex: 1; /* ছবির জন্য অর্ধেক জায়গা */
    min-width: 400px; 
}

/* ২. টেক্সট স্টাইল */
.hero-section.primary-hero .subheading {
    font-size: 1.05em;
    font-weight: 600;
    color: white; /* নীল রং দিয়ে হাইলাইট */
    margin-bottom: 10px;
    display: block;
}

.hero-section.primary-hero h1 {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-section.primary-hero p {
    
    color: white;
    
}

.hero-section.primary-hero .lead-text {
    font-size: 1.25em;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ৩. ইমেজ স্টাইল */
.hero-section.primary-hero .hero-image-area img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* ধারগুলি সামান্য গোলাকার */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* ছবির নিচে গাঢ় শ্যাডো */
    transition: transform 0.3s ease;
    display: block;
}
/* ==========================================================
   HERO SECTION: FULL COVER BACKGROUND IMAGE STYLE
   ========================================================== */
.hero-section.hero-with-bg-image {
   
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/your-new-image-name.jpg'); /* <-- আপনার নতুন ছবির পাথ দিন! */
    
    background-size: cover; /* পুরো সেকশন কভার করবে */
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white); /* টেক্সট সাদা হবে */
    padding: 150px 0; 
    text-align: center; 
    min-height: 60vh; 
}

/* টেক্সট আরও স্পষ্টভাবে তুলে ধরার জন্য শ্যাডো ব্যবহার করা হয়েছে */
.hero-section.hero-with-bg-image h1,
.hero-section.hero-with-bg-image .lead-text {
    text-shadow:  text-shadow: 2px 2px 5px blue; /* টেক্সটের শ্যাডো যোগ করা হলো */
}


@media (max-width: 992px) {
    
    .hero-section.primary-hero {
        padding: 80px 0;
    }
    
    .hero-section.primary-hero .container {
        flex-direction: column; /* মোবাইলে উল্লম্বভাবে সাজানো */
        text-align: center;
        gap: 30px;
    }
    
    .hero-section.primary-hero .hero-content {
        order: 2; /* কন্টেন্ট নিচে থাকবে */
        padding-right: 0;
    }
    
    .hero-section.primary-hero .hero-image-area {
        order: 1; /* ছবিটি কন্টেন্টের উপরে আসবে */
        min-width: 100%;
    }

    .hero-section.primary-hero h1 {
        font-size: 2.8em;
    }
    .hero-section.primary-hero .lead-text {
        font-size: 1.1em;
    }
}

/* ৫. ছোট ফোন স্ক্রিনের জন্য (768px এর নিচে) */
@media (max-width: 768px) {
    .hero-section.primary-hero h1 {
        font-size: 2.2em;
    }
    .hero-section.primary-hero .lead-text {
        font-size: 1em;
    }
    .hero-section.primary-hero .cta-button.primary {
        width: 100%;
        max-width: 300px;
    }
}


/* ==================================== */
/* READY TO WORK WITH US CTA (Reusing final-cta) */
/* ==================================== */
.final-cta {
    background-color: #0b1130; /* Dark Navy Background */
    color: white;
    padding: 60px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.final-cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================== */
/* RESPONSIVENESS (for About Us Page) */
/* ==================================== */
@media (max-width: 992px) {
    .vm-grid, .story-wrapper, .values-grid, .journey-timeline, .team-grid, .counter-grid {
        flex-direction: column;
        gap: 30px;
    }

    .story-image {
        order: -1; /* Image always on top on mobile */
    }

    .value-card, .team-member {
        flex-basis: 100%; /* Full width on small screens */
    }

    .journey-timeline::before { /* Hide horizontal line on mobile */
        display: none;
    }

    .timeline-item {
        padding-top: 0;
        border-left: 2px solid #e0e0e0; /* Vertical line for mobile timeline */
        padding-left: 20px;
        text-align: left;
    }

    .year-circle {
        position: static;
        transform: none;
        margin-bottom: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.2em;
        border: 3px solid #fff;
    }
}
/* /* ======================================= */
/* 5. PORTFOLIO PAGE STYLES (CLEAN VERSION) */
/* ======================================= */

/* --- Hero Section --- */
.portfolio-hero-full {
    background: url('images/portfolio-hero-bg.jpg') no-repeat center center/cover, #007bff;
    background-blend-mode: multiply;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    /* ✅ Center Content */
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertically center */
    align-items: center; /* horizontally center */
    text-align: center;

    /* ✅ Adjust spacing */
    min-height: 50vh; /* Optional: adjust height if needed */
    padding: 80px 20px; /* Reduce top/bottom space */
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  line-height: 1.6;
}

/* --- Key Stats Section --- */
.key-stats-section {
    padding: 30px 20px 60px;
    background-color: #fff;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    flex-basis: 22%;
}

.stat-item i {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-count {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* --- Section Header --- */
.section-header-centered {
    text-align: center;
    padding: 60px 20px 20px;
}

.section-header-centered h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.section-header-centered .subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* --- New Portfolio Grid Styles --- */

/* 1. Grid Container */
.portfolio-grid {
    display: grid;
    /* 3 কলামের রেসপনসিভ গ্রিড */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
    padding: 0 0 50px 0;
}

/* 2. Individual Item Card */
.portfolio-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

/* 3. Hover Effect (Card Lift) */
.portfolio-item:hover {
    transform: translateY(-8px); /* কার্ডটি সামান্য উপরে উঠবে */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 4. Image Container and Zoom Effect */
.project-image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer; /* লাইটবক্স বোঝানোর জন্য */
    height: 250px; /* ফিক্সড হাইট */
}

.project-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ছবি যেন কন্টেইনারে পুরোপুরি ভরে */
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* Image Zoom In on Hover */
.portfolio-item:hover .project-image-container img {
    transform: scale(1.1); 
}

/* 5. Overlay for Title */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0; /* শুরুতে লুকানো */
    transition: opacity 0.4s ease-in-out;
    padding: 20px;
}

/* Overlay Fade In on Hover */
.portfolio-item:hover .project-overlay {
    opacity: 1; 
}

.project-title {
    color: white;
    font-size: 1.4em;
    margin-bottom: 5px;
    text-align: center;
}

.project-overlay .tag {
    /* ট্যাগ স্টাইলকে ওভারলে-এর জন্য পরিবর্তন করা */
    background-color: #007bff; /* উদাহরণ কালার */
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8em;
}


/* 6. Project Details */
.project-details {
    padding: 15px;
    text-align: center;
}

.project-details h4 {
    font-size: 1.2em;
    margin-top: 5px;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.project-details .cta-button {
    /* বাটন স্টাইল */
    display: inline-block;
    background-color: #17a2b8; /* নতুন কালার */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.project-details .cta-button:hover {
    background-color: #138496;
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1)} 
    to {transform: scale(1)}
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-btn:hover, .close-btn:focus {
    color: #bbb;
}
/* --- CTA Section --- */
.portfolio-cta-bottom {
    background-color: #007bff;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.portfolio-cta-bottom h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-cta-bottom p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.portfolio-cta-bottom .cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.portfolio-cta-bottom .cta-button {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.white-bg {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
}

.cta-button.white-bg:hover {
    background-color: #f0f0f0;
    color: #0056b3;
}

.cta-button.blue-bg {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.blue-bg:hover {
    background-color: #0056b3;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .case-study-card {
        flex-direction: column;
        align-items: center;
    }

    .case-study-image {
        width: 100%;
        margin-bottom: 25px;
    }

    .case-study-content {
        padding: 0;
    }

    .case-study-card.right-image .testimonial {
        border-right: none;
        border-left: 3px solid #007bff;
        margin-left: 0;
    }

    .case-study-card.right-image .client-info {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .portfolio-hero-full h1 {
        font-size: 36px;
    }
    .portfolio-hero-full p {
        font-size: 18px;
    }
    .stat-item {
        flex-basis: 45%;
    }
    .portfolio-cta-bottom h2 {
        font-size: 32px;
    }
    .portfolio-cta-bottom .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    .portfolio-cta-bottom .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .stat-item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}
/* --- 1. হ্যাঁমবার্গার আইকন স্টাইল (ডেস্কটপে লুকানো) --- */
.hamburger-menu {
    display: none; /* ডিফল্টভাবে লুকিয়ে রাখা */
    font-size: 1.8em;
    cursor: pointer;
    color: #007bff; /* আপনার ব্র্যান্ড কালার */
    z-index: 1001; /* মেনুর চেয়ে বেশি z-index */
    transition: color 0.3s;
    line-height: 1; /* আইকন ভার্টিক্যালি ঠিক করার জন্য */
}

/* --- 2. মোবাইল স্ক্রিনের জন্য Media Query --- */
@media (max-width: 768px) {
    
    /* হ্যাঁমবার্গার আইকন দেখাও */
    .hamburger-menu {
        display: block;
        position: relative; /* আইকনটিকে header এর উপরে রাখতে */
        align-self: center; /* header এর মধ্যে মাঝখানে আনতে */
        z-index: 1001; /* মেনুর চেয়ে বেশি (মেনু 1000)
    }

    /* main-nav কন্টেইনার (মোবাইল মেনু) */
    header .main-nav {
        /* ডান দিক থেকে লুকানো থাকবে */
        position: fixed;
        top: 0;
        right: -250px; /* <--- মেনুর উইড্থ এর সমান negative value */
        width: 250px; /* <--- কম্প্যাক্ট উইড্থ */
        height: 100%;
        background-color: #ffffff; /* সাদা ব্যাকগ্রাউন্ড */
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out; /* স্লাইড-ইন/আউট অ্যানিমেশন */
        z-index: 1000; 
        padding-top: 60px; /* উপরে স্পেস */
        overflow-y: auto; /* যদি মেনু লম্বা হয়, তবে স্ক্রল করার সুবিধা */
    }

    /* যখন 'nav-open' ক্লাস যোগ হবে (মেনু খোলা) */
    header .main-nav.nav-open {
        right: 0;
    }
    
    /* মেনুর ভেতরের ul স্টাইল */
    header .main-nav ul {
        flex-direction: column;
        display: block; /* ডিসপ্লে ফ্লেক্স থেকে ডিসপ্লে ব্লক করুন */
    }

    /* মেনু আইটেম স্টাইল */
    header .main-nav ul li a {
        display: block;
        padding: 15px 20px;
        text-align: left;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #eee;
    }
    
    /* অ্যাক্টিভ মেনু আইটেম */
    header .main-nav ul li a.active {
        background-color: #f1f1f1;
        border-left: 5px solid #007bff;
        padding-left: 15px;
    }

    /* CTA বাটন স্টাইল (মেনুর ভেতরের শেষ আইটেম) */
    header .main-nav ul li:last-child a.cta-button {
        background-color: #007bff;
        color: white;
        margin: 20px 20px 0 20px;
        padding: 10px 15px;
        border-radius: 5px;
        border-bottom: none;
        text-align: center;
    }
}


/* --- 3. ওভারলে স্টাইল (যদি আপনি HTML-এ #mobile-menu-overlay যোগ করে থাকেন) --- */
#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998; 
    display: none; 
}

/* যখন মেনু খোলা থাকবে, ওভারলে দেখাবে */
header .main-nav.nav-open ~ #mobile-menu-overlay {
    display: block;
}
/* ==========================================================
   PORTFOLIO PAGE SPECIFIC STYLES
   ========================================================== */

/* Portfolio Hero Section */
.portfolio-hero-full {
    position: relative;
    background: linear-gradient(rgba(0, 51, 128, 0.8), rgba(0, 51, 128, 0.9)), url('../images/portfolio-hero-bg.jpg'); /* আপনার ব্যাকগ্রাউন্ড ইমেজ পাথ দিন */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.portfolio-hero-full h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-hero-full p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Key Stats Section */
.key-stats-section {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    padding: 15px 20px;
    min-width: 200px;
}

.stat-item i {
    font-size: 2em;
    color: var(--secondary-green);
    margin-right: 10px;
}

.stat-item .stat-count {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-block;
    vertical-align: middle;
}

.stat-item p {
    font-weight: 600;
    color: var(--heading-color);
    margin: 5px 0 0;
}

/* Case Studies Grid */
.case-studies-section {
    padding: 60px 0 100px;
    background-color: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    position: relative;
    overflow: hidden;
    height: 250px; /* ইউনিফর্ম হাইট সেট করা হলো */
}

.project-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .project-thumb {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 15px;
}

.project-title {
    font-size: 1.4em;
    margin: 0;
}

.tag {
    display: inline-block;
    font-size: 0.8em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 600;
}

.tag-blue { background-color: var(--primary-blue); color: var(--white); }
.tag-marketing { background-color: var(--secondary-green); color: var(--white); }
.tag-web { background-color: #ff9900; color: var(--white); }

.project-details {
    padding: 20px;
}

.project-details h4 {
    color: var(--primary-blue);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.project-details p {
    font-size: 0.9em;
    margin-bottom: 15px;
}

.project-details .cta-button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    background-color: var(--secondary-green);
    color: var(--white);
}

.project-details .cta-button:hover {
    background-color: var(--dark-blue);
}


/* Portfolio CTA Bottom Section */
.portfolio-cta-bottom {
    background: linear-gradient(135deg, var(--primary-blue), #0066cc);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.portfolio-cta-bottom h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-cta-bottom p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-bottom .cta-button.white-bg {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

.cta-bottom .cta-button.white-bg:hover {
    background-color: #eaf3ff;
}

.cta-bottom .cta-button.blue-bg {
    background-color: var(--secondary-green);
    color: var(--white);
    border: 2px solid var(--secondary-green);
}

.cta-bottom .cta-button.blue-bg:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}


/* ==========================================================
   CASE STUDY DETAIL PAGE (portfolio-details-*.html) STYLES
   ========================================================== */
.case-study-detail {
    padding: 80px 0 100px;
    background-color: var(--white);
}
/* --- Case Study Header --- */
.detail-header h1 {
    font-size: 3.2em; /* টাইটেল বড় করা হয়েছে */
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.meta-info {
    color: #777; /* টেক্সট কালার হালকা করা হয়েছে */
    font-size: 1.1em;
}

/* --- Main Image --- */
.main-image {
    width: 100%;
    height: auto;
    max-height: 550px; 
    object-fit: cover;
    border-radius: 10px; 
    margin-bottom: 50px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* স্পষ্ট শ্যাডো */
}

.detail-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.detail-header h1 {
    font-size: 3.2em; /* টাইটেল বড় করা হয়েছে */
    color: var(--primary-blue);
    margin-bottom: 15px; /* মার্জিন বাড়ানো হয়েছে */
    line-height: 1.2;
    font-weight: 700;
}

.meta-info {
    color: var(--text-color);
    font-style: italic;
    font-size: 1.1em; /* মেটা ইনফো একটু বড় করা হয়েছে */
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 550px; /* ছবির উচ্চতা একটু বাড়ানো হয়েছে */
    object-fit: cover;
    border-radius: 10px; /* বর্ডার রেডিয়াস বাড়ানো হয়েছে */
    margin-bottom: 50px; /* ছবি ও টেক্সটের মধ্যে মার্জিন বাড়ানো হয়েছে */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* শ্যাডো আরও স্পষ্ট করা হয়েছে */
}

.content-grid {
    display: flex;
    gap: 60px; /* কলামগুলির মধ্যে গ্যাপ বাড়ানো হয়েছে */
    flex-wrap: wrap;
}

.main-content {
    flex: 2; /* মূল কনটেন্ট সাইডবারের দ্বিগুণ প্রশস্ত হবে */
    min-width: 320px; /* ছোট স্ক্রিনে সর্বনিম্ন প্রস্থ */
}

.sidebar {
    flex: 1; /* সাইডবার মূল কনটেন্টের অর্ধেক প্রশস্ত হবে */
    min-width: 280px; /* ছোট স্ক্রিনে সর্বনিম্ন প্রস্থ */
    background-color: var(--light-gray);
    padding: 35px; /* প্যাডিং বাড়ানো হয়েছে */
    border-radius: 10px; /* বর্ডার রেডিয়াস বাড়ানো হয়েছে */
    height: fit-content; /* কনটেন্টের উপর ভিত্তি করে উচ্চতা */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* শ্যাডো বাড়ানো হয়েছে */
}

.main-content h2 {
    color: var(--primary-blue);
    font-size: 2.5em; /* প্রধান হেডিং বড় করা হয়েছে */
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-green); /* আন্ডারলাইন মোটা করা হয়েছে */
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 700;
}

/* প্রথম H2 এর জন্য উপরের মার্জিন সরিয়ে নেওয়া হয়েছে */
.main-content h2:first-of-type {
    margin-top: 0;
}

.main-content p {
    font-size: 1.05em; /* প্যারাগ্রাফ ফন্ট সাইজ বাড়ানো হয়েছে */
    line-height: 1.7; /* লাইন হাইট বাড়ানো হয়েছে */
    margin-bottom: 1em;
    color: #333;
}

/* Service points list */
.service-points {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-points li {
    font-size: 1.05em; /* লিস্ট আইটেমের ফন্ট সাইজ */
    margin-bottom: 12px;
    line-height: 1.5;
    color: #444;
}

.service-points i {
    margin-right: 12px; /* আইকন এবং টেক্সটের মধ্যে দূরত্ব বাড়ানো হয়েছে */
    font-size: 1.2em; /* আইকন সাইজ বাড়ানো হয়েছে */
    vertical-align: middle; /* আইকন ভার্টিক্যালি অ্যালাইন করা হয়েছে */
}
.service-points i.fa-check-circle { color: var(--secondary-green); } /* চেক আইকনের জন্য সবুজ */
.service-points i.fa-times-circle { color: #dc3545; } /* ক্রস আইকনের জন্য লাল */


.sidebar h3 {
    color: var(--primary-blue); /* সাইডবার হেডিং নীল করা হয়েছে */
    font-size: 1.8em; /* সাইডবার হেডিং বড় করা হয়েছে */
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center; /* সাইডবার হেডিং মাঝখানে */
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    background-color: var(--white);
    padding: 12px 18px; /* প্যাডিং বাড়ানো হয়েছে */
    margin-bottom: 12px; /* মার্জিন বাড়ানো হয়েছে */
    border-radius: 6px;
    font-size: 1em; /* ফন্ট সাইজ বাড়ানো হয়েছে */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease;
}

.sidebar ul li:hover {
    transform: translateX(5px);
}

.sidebar ul li strong {
    color: var(--dark-blue); /* স্ট্রং টেক্সটের জন্য গাঢ় নীল */
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.9em; /* লেবেলের ফন্ট সাইজ */
}

/* Results Highlight Section */
.results-highlight {
    background-color: #e6f0ff; /* Light blue background */
    padding: 40px;
    border-radius: 10px; /* বর্ডার রেডিয়াস বাড়ানো হয়েছে */
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.results-highlight h3 {
    color: var(--primary-blue);
    font-size: 2.2em; /* হেডিং সাইজ বাড়ানো হয়েছে */
    margin-bottom: 15px;
    font-weight: 700;
}

.results-highlight p {
    font-size: 1.15em; /* প্যারাগ্রাফ ফন্ট সাইজ বাড়ানো হয়েছে */
    color: #222;
    font-weight: 600;
    line-height: 1.6;
}

.results-highlight p strong {
    color: var(--dark-blue); /* স্ট্রং টেক্সটের জন্য গাঢ় নীল */
}

/* CTA Button in Sidebar */
.sidebar .cta-button {
    margin-top: 30px !important; /* মার্জিন বাড়ানো হয়েছে */
    width: 100%;
    text-align: center;
    padding: 15px 25px;
    font-size: 1.1em;
    border-radius: 50px; /* গোলাকার বোতাম */
}
.content-grid {
    display: flex;
    gap: 60px; /* কলামগুলির মধ্যে দূরত্ব বাড়ানো হয়েছে */
    flex-wrap: wrap; /* ছোট স্ক্রিনের জন্য অপরিহার্য */
}

.main-content {
    flex: 2; /* মূল কনটেন্ট সাইডবারের তুলনায় বড় হবে */
    min-width: 320px;
}

.sidebar {
    flex: 1; 
    min-width: 280px; 
    background-color: var(--light-gray);
    padding: 35px; 
    border-radius: 10px; 
    height: fit-content;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
}

/* --- Main Content Typography --- */
.main-content h2 {
    color: var(--primary-blue);
    font-size: 2.4em; /* হেডিং স্পষ্ট করা হয়েছে */
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-green); /* সবুজ আন্ডারলাইন */
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 700;
}

.main-content p {
    font-size: 1.05em; 
    line-height: 1.7; 
    margin-bottom: 1em;
    color: #333;
}
/* --- Service Points / Checklist Styling --- */
.service-points {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.service-points li {
    font-size: 1.05em; 
    margin-bottom: 12px;
    line-height: 1.5;
    color: #444;
}

.service-points i {
    margin-right: 12px; 
    font-size: 1.2em; 
    vertical-align: middle; 
}
.service-points i.fa-check-circle { color: var(--secondary-green); } /* সবুজ আইকন */
.service-points i.fa-times-circle { color: #dc3545; } /* লাল আইকন */

/* --- Sidebar Quick Facts Styling --- */
.sidebar h3 {
    color: var(--primary-blue); 
    font-size: 1.8em; 
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.sidebar ul li {
    background-color: #fff;
    padding: 12px 18px; 
    margin-bottom: 12px; 
    border-left: 4px solid var(--primary-blue); /* নীল বর্ডার যোগ করা হয়েছে */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar ul li strong {
    color: var(--heading-color);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.9em;
}

/* ==========================================================
   RESPONSIVE DESIGN FOR CASE STUDY DETAIL PAGE
   ========================================================== */
@media (max-width: 992px) {
    .detail-header h1 { font-size: 2.8em; }
    .content-grid { flex-direction: column; gap: 40px; } /* কলামগুলি উল্লম্বভাবে স্ট্যাক হবে */
    .sidebar { order: -1; margin-bottom: 30px; } /* সাইডবার উপরে আসবে */
    .main-content h2 { font-size: 2.2em; }
}

@media (max-width: 768px) {
    .case-study-detail { padding: 60px 0 80px; }
    .detail-header h1 { font-size: 2.2em; margin-bottom: 10px; }
    .meta-info { font-size: 1em; }
    .main-image { max-height: 350px; margin-bottom: 30px; }
    .main-content h2 { font-size: 2em; margin-bottom: 15px; }
    .main-content p, .service-points li { font-size: 1em; }
    .sidebar { padding: 25px; }
    .sidebar h3 { font-size: 1.6em; }
    .results-highlight { padding: 30px; margin-top: 30px; }
    .results-highlight h3 { font-size: 1.8em; }
    .results-highlight p { font-size: 1.05em; }
    .sidebar .cta-button { font-size: 1em; padding: 12px 20px; }
}

@media (max-width: 576px) {
    .detail-header h1 { font-size: 1.8em; }
    .main-image { max-height: 250px; }
    .main-content h2 { font-size: 1.8em; }
    .sidebar h3 { font-size: 1.4em; }
}

/* ======================================= */
/* OPTIMIZED & FIXED BLOG PAGE CSS         */
/* ======================================= */

/* --- Blog Hero Header --- */
.blog-hero-header {
    background: url('../images/blog-hero-bg.png') no-repeat center/cover;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.blog-hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.blog-hero-header .hero-text {
    position: relative;
    z-index: 2;
}

.blog-hero-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-hero-header p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

/* --- Categories Section --- */
.blog-categories {
    background: var(--white);
    padding: 20px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #ccc;
    background: var(--light-gray);
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s ease;
    text-decoration-line: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* --- Article Sections --- */
.featured-articles-section,
.latest-articles-section {
    padding: 60px 20px;
    background: var(--light-gray);
}

.featured-articles-section h2,
.latest-articles-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

/* --- Grid Layout --- */
.featured-articles-grid,
.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Card --- */
.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    background: #f0f8ff;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-time-tag,
.read-time-info {
    position: absolute;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    z-index: 5;
}

.read-time-tag {
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.read-time-tag.tag-blue { background: var(--primary-blue); }
.read-time-tag.tag-marketing { background: #ff6a00; }
.read-time-tag.tag-web-it { background: var(--secondary-green); }

.read-time-info {
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.85);
}

/* Card Content */
.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    flex-grow: 1;
}

.article-card p {
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more-btn {
    background: var(--secondary-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    margin-top: auto;
    display: inline-block; /* বাটন হিসাবে ঠিকভাবে দেখানোর জন্য */
    text-align: center;
}

.read-more-btn:hover {
    background: #2a7c7e;
}

/* Meta */
.article-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.author-info {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.author-info i {
    margin-right: 8px;
    font-size: 22px;
    color: var(--primary-blue);
}

.author-title {
    color: #6c757d;
}

.article-date {
    color: #6c757d;
    font-size: 14px;
}

/* Hide When Filtering */
.article-card.hidden { display: none !important; }




/* ======================================= */
/* MEDIA QUERIES (OPTIMIZED) */
/* ======================================= */

/* Tablets and Medium Devices (992px এর নিচে) */
@media (max-width: 992px) {
    /* দুটি গ্রিডকেই 2 কলামে সেট করা */
    .featured-articles-grid,
    .latest-articles-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
    }
    
    .latest-articles-section, 
    .featured-articles-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }
    
    /* অন্যান্য 992px ফিক্সগুলি */
    .why-choose .content-wrapper {
        flex-direction: column; 
        text-align: center;
    }

    .why-choose h2 {
        text-align: center;
    }

    .image-content {
        order: -1; 
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Mobile Devices (768px এর নিচে) */
@media (max-width: 768px) {
    .blog-hero-header { height: 220px; }
    .blog-hero-header h1 { font-size: 36px; }

    /* ক্যাটাগরি বাটনগুলিকে স্ক্রল করার অনুমতি দেওয়া */
    .filter-buttons-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 10px;
    }
    
    /* দুটি গ্রিডকেই 1 কলামে সেট করা */
    .featured-articles-grid,
    .latest-articles-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .featured-articles-section,
    .latest-articles-section {
        padding: 40px 15px; /* মোবাইলের জন্য সামান্য প্যাডিং */
    }

    .card-image { height: 180px; }
    .article-card h3 { font-size: 18px; }
    
    /* Hero, Statistics Bar ইত্যাদির জন্য বিদ্যমান মোবাইল ফিক্সগুলি */
    .hero-section {
        padding: 100px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content h1, 
    .hero-content p {
        max-width: 100%;
        text-align: center;
    }

    .statistics-bar .container {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* ---------------------------------------------------------------------- */
/* 1. CONTACT HERO SECTION (Top Blue Banner) */
/* ---------------------------------------------------------------------- */




.contact-hero-full .hero-content {
  position: relative;
  z-index: 3;
  padding: 0 20px; /* small side padding only */
  width: 100%;
}

.contact-hero-full h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  white-space: nowrap; /* prevents text from wrapping */
}

.contact-hero-full p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* 2. MAIN CONTACT CONTENT (Form and Details Grid) */
/* ---------------------------------------------------------------------- */

.contact-form-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    /* Sets up Form (3 parts) and Details (2 parts) side-by-side */
    grid-template-columns: 3fr 2fr; 
    gap: 50px;
}

.consulting-form-container h2,
.contact-details-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-text);
}

/* --- Form Styling --- */

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; 
}

.contact-form textarea {
    resize: vertical;
}

.schedule-btn {
    width: 100%;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    padding: 15px;
    margin-top: 10px;
    /* Reusing your cta-button styling for the primary blue button */
    background-color: var(--primary-blue); 
    color: var(--white);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}

/* --- Contact Details Styling --- */

.contact-details-container {
    padding-top: 50px; 
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-right: 15px;
    /* Light blue circle background for icons */
    background-color: #e6f0ff; 
    padding: 10px;
    border-radius: 50%;
}

.contact-info-item h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--secondary-blue);
}

.contact-info-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.contact-info-item .reply-time,
.contact-info-item .hours {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.map-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.google-map-placeholder {
    width: 100%;
    height: 200px;
    background-color: #eee; /* Light gray box for map */
    margin-top: 15px;
    border: 1px solid var(--border-color);
}


/* ==========================================================
   FAQ SECTION STYLING (For 2-Column Layout)
   ========================================================== */

/* ১. FAQ List-কে বামদিকে অ্যালাইন করা (যদি কন্টেইনার সেন্টারে থাকে) */
.faq-list {
    /* এটি নিশ্চিত করে যে কলামগুলি কন্টেইনারের মধ্যে বাম দিকে শুরু হবে */
    justify-content: flex-start; 
    
    /* পূর্বের 2-column ফ্লেক্সবক্স স্টাইল বজায় রাখা */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* ২. প্রতিটি FAQ Item-এর ভেতরের টেক্সট বাম দিকে ফিক্স করা */
.faq-item {
    width: calc(50% - 10px); 
    /* নিশ্চিত করা যে ভেতরের লেখা বাম দিকে থাকবে */
    text-align: left; 
    
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question-header {
    display: flex;
    align-items: flex-start; /* আইকন এবং লেখা একই সারিতে (উপরে) রাখার জন্য */
    margin-bottom: 10px;
    text-align: left; /* পুরো হেডার বামে অ্যালাইন করা */
}

/* আইকন স্টাইল (রঙ যোগ) */
.faq-question-header i {
    /* *** আইকনের রঙ সেট করা হচ্ছে *** */
    color: #007bff; /* আপনার Primary Blue কালার কোড দিন, বা var(--primary-blue) ব্যবহার করুন */
    
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0; /* আইকন যেন ছোট না হয়ে যায় */
}

/* শিরোনাম স্টাইল (বাম দিকে ফিক্সড) */
.faq-question-header h4 {
    text-align: left;
    margin: 0; /* নিশ্চিত করা যেন h4-এর কোনো অতিরিক্ত মার্জিন না থাকে */
    font-weight: 600; /* প্রশ্নটিকে বোল্ড করার জন্য */
}


.faq-item p {
    text-align: left; /* উত্তরের প্যারাগ্রাফ বামে অ্যালাইন করা */
}

/* মোবাইল রেসপনসিভনেস */
@media (max-width: 768px) {
    .faq-item {
        width: 100%;
    }
}
/* ==========================================================
   FAQ ITEM HOVER EFFECT (Multi-color/Dynamic Shadow)
   ========================================================== */

/* ১. ট্রানজিশন যোগ করা: এটিকে মসৃণ রাখবে */
.faq-item {
    transition: all 0.3s ease-in-out; 
    /* পূর্বের স্টাইল */
    border: 1px solid #e0e0e0;
}

/* ২. হোভার স্টাইল: ডাইনামিক, সফট মাল্টিকালার শেডো */
.faq-item:hover {
    /* সামান্য উপরের দিকে উঠে আসার ইফেক্ট */
    transform: translateY(-5px); 
    
    /* মাল্টিকালার, ডিপ শেডো ইফেক্ট: 
       এখানে একাধিক ছায়ার স্তর ব্যবহার করা হয়েছে, যা মাল্টিকালার ইফেক্ট দেবে।
       (নীল, হালকা নীল ও ধূসর) 
    */
    box-shadow: 
        0 4px 10px rgba(0, 123, 255, 0.2), /* Blue tint */
        0 8px 20px rgba(0, 0, 0, 0.1),    /* Primary shadow */
        0 12px 30px rgba(70, 130, 180, 0.1); /* Steel Blue tint */
    
    /* হোভার করার সময় বর্ডার পরিবর্তন (আরো হাইলাইট করার জন্য) */
    border-color: #007bff; /* Primary Blue */
}

/* ৩. হোভার করার সময় প্রশ্নের রঙ পরিবর্তন (ঐচ্ছিক - ফোকাস বাড়ানোর জন্য) */
.faq-item:hover h4 {
    color: #007bff; /* Primary Blue */
}

/* ---------------------------------------------------------------------- */
/* 4. FINAL CTA SECTION (Bottom Blue Banner) */
/* ---------------------------------------------------------------------- */

.contact-bottom-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.contact-bottom-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.contact-bottom-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Specific button styles for the bottom banner */
.white-text-btn {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

.white-outline-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* ---------------------------------------------------------------------- */
/* 5. RESPONSIVENESS (Mobile and Tablet) */
/* ---------------------------------------------------------------------- */

@media (max-width: 992px) {
    .contact-grid {
        /* Stack the form and details vertically on tablets */
        grid-template-columns: 1fr; 
    }
    .contact-details-container {
        padding-top: 0;
    }
}

@media (max-width: 576px) {
    .contact-hero-full h1 {
        font-size: 2rem;
    }
    
    .form-row {
        /* Stack fields in a row vertically on mobile */
        flex-direction: column; 
        gap: 0;
    }

    .cta-buttons-container {
        /* Stack the two buttons vertically on mobile */
        flex-direction: column;
        gap: 10px;
    }
    
    .white-text-btn, .white-outline-btn {
        width: 100%;
        text-align: center;
    }
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    
    /* 1. Normal অবস্থায় একটি হালকা দৃশ্যমান বর্ডার যোগ করুন */
    border: 1px solid #d4d4d4; /* Light gray border */
    
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; 
    
    /* 2. হালকা ইনসাইড বক্স শ্যাডো যোগ করুন */
    /* এটি বক্সটিকে সামান্য ভেতরের দিকে চাপা মনে করাবে, যা ভিজ্যুয়াল ডেপথ দেবে */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08); 
    
    background-color: #ffffff; 
    
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Hover এবং Focus effect (আগের মতোই থাকবে) */
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: #b0b0b0; /* Hover-এ বর্ডার সামান্য গাঢ় করুন */
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    /* Focus-এ আপনার ব্র্যান্ড কালার দিয়ে হাইলাইট করুন */
    border-color: var(--primary-blue); 
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2); 
    outline: none; 
}


