/* =========================================
   1. CSS VARIABLES & GLOBAL SETUP
   ========================================= */
:root {
    --primary: #4F46E5;
    --secondary: #0EA5E9;
    --dark: #0F172A;
    --light: #F8FAFC;
    --gray: #64748B;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --font-stack: 'Outfit', sans-serif;
    --fw-thin: 300; --fw-reg: 400; --fw-med: 500; --fw-bold: 700;
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(79, 70, 229, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* FIX: Added padding-top to body so content doesn't hide behind fixed header */
body { 
    font-family: var(--font-stack); 
    background-color: var(--white); 
    color: var(--dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    font-weight: var(--fw-reg);
    padding-top: 80px; 
}

h1, h2, h3, h4 { font-weight: var(--fw-bold); line-height: 1.2; color: var(--dark); }
h1 { font-size: 4rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.75rem; }
p { font-size: 1.1rem; color: var(--gray); margin-bottom: 1.5rem; font-weight: var(--fw-reg); }

/* Gradient Text */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-white { color: var(--white) !important; }

.tagline { display: block; color: var(--primary); font-weight: var(--fw-med); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.9rem; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-padding); }
.bg-light { background-color: var(--light); }
.center { text-align: center; }
.mt-30 { margin-top: 30px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; padding: 14px 32px; border-radius: 50px; font-weight: var(--fw-med); text-decoration: none; transition: all 0.3s ease; border: 2px solid transparent; font-size: 1rem; }
.btn i { margin-left: 10px; transition: 0.3s; }
.btn:hover i { transform: translateX(5px); }
.btn-primary { background: var(--gradient); color: var(--white); box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3); }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5); transform: translateY(-3px); }
.btn-secondary { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--light); transform: translateY(-3px); }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* Image Hover */
.img-hover-zoom { overflow: hidden; border-radius: var(--border-radius); }
.img-hover-zoom img { width: 100%; height: auto; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); display: block; }
.img-hover-zoom:hover img { transform: scale(1.08); }
.rounded-corners { border-radius: 30px; }

/* =========================================
   2. NAVBAR & HEADER
   ========================================= */
.navbar { height: 80px; display: flex; align-items: center; position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo { font-size: 1.3rem; font-weight: var(--fw-bold); color: var(--dark); text-decoration: none !important; display: flex; align-items: center; }
.logo.white { color: white !important; }

.nav-menu { display: flex; align-items: center; list-style: none; gap: 30px; }
.nav-link { text-decoration: none; color: var(--dark); font-weight: var(--fw-med); transition: 0.3s; font-size: 1rem; display: flex; align-items: center; gap: 5px; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.btn-nav { background: var(--primary); color: white !important; padding: 10px 25px; border-radius: 30px; }
.btn-nav:hover { background: var(--secondary); }

/* Desktop Dropdown */
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 10px; width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: 0.3s ease; padding: 10px 0; list-style: none; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; color: var(--dark); font-size: 0.95rem; text-decoration: none; transition: 0.2s; }
.dropdown-menu li a:hover { background: var(--light); color: var(--primary); padding-left: 25px; }

/* Hamburger Menu */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background-color: #0F172A !important; margin: 5px auto; transition: 0.3s; border-radius: 3px; }

/* Mobile Menu Header (Hidden on Desktop) */
.mobile-menu-head { display: none; }

/* =========================================
   3. HOME SECTIONS (Hero, Stats, Services)
   ========================================= */
.hero { padding: 80px 0 100px; background: linear-gradient(to right, #ffffff, #f0f7ff); overflow: hidden; }
.hero-container { display: flex; align-items: center; justify-content: space-between; }
.hero-content { flex: 1; max-width: 600px; }
.hero-btns { display: flex; gap: 15px; margin: 30px 0; }
.trust-badge { display: flex; align-items: center; gap: 15px; color: var(--gray); font-weight: var(--fw-med); }
.stars { color: #FFD700; }
.hero-image-wrapper { flex: 1; display: flex; justify-content: flex-end; }
.hero-img { max-width: 100%; border-radius: 30px 5px 30px 5px; box-shadow: var(--shadow); }

.stats-section { padding: 60px 0; background: var(--white); }
.stats-grid { display: flex; justify-content: space-around; text-align: center; }
.stat-item h2 { font-size: 3rem; color: var(--primary); margin-bottom: 5px; }

.section-header { margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto;}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); transition: 0.4s ease; border: 1px solid rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-hover); border-color: rgba(79, 70, 229, 0.1); }
.icon-box { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: white; margin-bottom: 25px; }
.gradient-1 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.gradient-2 { background: linear-gradient(135deg, #4F46E5, #0EA5E9); }
.gradient-3 { background: linear-gradient(135deg, #10B981, #3B82F6); }
.read-more { color: var(--primary); text-decoration: none; font-weight: var(--fw-med); display: inline-flex; align-items: center; margin-top: 20px; }

/* About & Split */
.split-container { display: flex; align-items: center; gap: 60px; }
.split-image, .split-content { flex: 1; }
.feature-list { list-style: none; margin-top: 30px; }
.feature-list li { margin-bottom: 15px; display: flex; align-items: center; font-weight: var(--fw-med); color: var(--dark); }
.feature-list i { color: var(--primary); margin-right: 12px; font-size: 1.2rem; }

/* Testimonials */
.swiper { padding-bottom: 50px !important; }
.testimonial-card { background: var(--light); padding: 40px; border-radius: 20px; }
.quote-icon { font-size: 2rem; color: var(--primary); opacity: 0.3; margin-bottom: 20px; }
.client-info { display: flex; align-items: center; margin-top: 30px; }
.client-info img { width: 60px; height: 60px; border-radius: 50%; margin-right: 15px; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* CTA Section */
.cta-section { margin: 50px 20px; }
.cta-content { background: var(--gradient); padding: 80px; border-radius: 30px; color: var(--white); }
.cta-content h2, .cta-content p { color: var(--white) !important; text-fill-color: initial; -webkit-text-fill-color: initial; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 40px; }

/* =========================================
   4. FOOTER
   ========================================= */
.footer { background: var(--dark); padding: 80px 0 30px; color: #94a3b8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.logo.white .logo-mark { background: rgba(255,255,255,0.1); }
.footer h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: inherit; text-decoration: none; transition: 0.3s; }
.footer ul li a:hover { color: var(--primary); padding-left: 5px; }

/* Social Links */
.social-links { display: flex; gap: 10px; flex-wrap: nowrap; margin-top: 10px; }
.social-links a { color: var(--white); background: rgba(255,255,255,0.1); width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; flex-shrink: 0; text-decoration: none !important; border: none !important; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.9rem; }
.footer-bottom i { color: #ef4444; }

/* =========================================
   5. PORTFOLIO & BLOG STYLES
   ========================================= */
/* Portfolio Grid & Card */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; }
.portfolio-thumb { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow); }
.portfolio-thumb img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease; }
.portfolio-thumb:hover .overlay { opacity: 1; }
.view-btn { width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.2rem; transform: translateY(20px); transition: 0.4s ease; }
.portfolio-thumb:hover .view-btn { transform: translateY(0); }
.portfolio-info h3 { font-size: 1.4rem; margin-bottom: 5px; color: var(--dark); }
.portfolio-info span { color: var(--primary); font-size: 0.9rem; font-weight: var(--fw-med); text-transform: uppercase; letter-spacing: 1px; }

/* Portfolio Slider Card */
.portfolio-card { border-radius: 15px; overflow: hidden; height: 250px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.1); cursor: pointer; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-card::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0); font-size: 2rem; color: white; background: rgba(79, 70, 229, 0.7); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s ease; opacity: 0; }
.portfolio-card:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.blog-thumb { position: relative; height: 220px; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-date { position: absolute; top: 20px; right: 20px; background: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: var(--fw-bold); color: var(--primary); }
.blog-content { padding: 25px; }
.blog-cat { font-size: 0.8rem; text-transform: uppercase; color: var(--secondary); font-weight: var(--fw-bold); margin-bottom: 10px; display: block; }
.blog-content h3 { margin-bottom: 15px; font-size: 1.3rem; }
.blog-content h3 a { text-decoration: none; color: var(--dark); transition: 0.3s; }
.blog-content h3 a:hover { color: var(--primary); }

/* =========================================
   6. LIGHTBOX STYLES
   ========================================= */
.lightbox { position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90%; max-height: 85vh; position: relative; text-align: center; transform: scale(0.9); transition: 0.3s ease; }
.lightbox.active .lightbox-content { transform: scale(1); }
#lightbox-img { width: auto; max-width: 100%; max-height: 75vh; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; z-index: 10001; }
.close-lightbox:hover { color: var(--primary); transform: rotate(90deg); }

/* Navigation Arrows */
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; transition: 0.3s; z-index: 10002; display: flex; align-items: center; justify-content: center; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Share Controls */
.share-controls { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 15px; color: rgba(255,255,255,0.7); }
.share-controls a, .share-controls button { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: 0.3s; border: none; cursor: pointer; font-size: 1.1rem; }
.share-controls a:hover, .share-controls button:hover { background: var(--primary); transform: translateY(-3px); }

/* =========================================
   7. CONTACT PAGE
   ========================================= */
.contact-container { display: flex; gap: 60px; align-items: flex-start; }
.contact-info { flex: 1; }
.info-box { display: flex; align-items: center; gap: 20px; background: var(--white); padding: 20px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; }
.info-box:hover { transform: translateX(10px); box-shadow: var(--shadow); }
.info-box .icon { width: 50px; height: 50px; background: rgba(79, 70, 229, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-form-wrapper { flex: 1.2; background: var(--white); padding: 40px; border-radius: 20px; box-shadow: var(--shadow); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #e2e8f0; border-radius: 8px; font-family: var(--font-stack); font-size: 1rem; transition: 0.3s; background: #f8fafc; margin-bottom: 20px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); }
.full-width { width: 100%; justify-content: center; font-size: 1.1rem; padding: 15px; }

/* =========================================
   8. RESPONSIVE FIXES (Mobile & Tablet)
   ========================================= */
@media screen and (max-width: 991px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    .hero-container, .split-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-btns { justify-content: center; }
    .hero-image-wrapper { justify-content: center; margin-top: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-container { flex-direction: column; }
}

@media screen and (max-width: 768px) {
    /* Font Adjustments */
    h1 { font-size: 25px !important; }
    h2 { font-size: 20px; }
    h3 { font-size: 18px; }
    p { font-size: 15px; }

    /* Layout Adjustments */
    .hero { padding-top: 120px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; justify-content: center; }
    
    /* Stats Grid (2 Columns) */
    .stats-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 15px; padding: 0 10px; }
    .stat-item { width: 100% !important; margin-bottom: 10px; padding: 10px; }
    .stat-item h2 { font-size: 2rem !important; }

    /* Footer Mobile */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col.branding { display: flex; flex-direction: column; align-items: center; }
    .social-links { justify-content: center; }

    /* Hamburger Position */
    .nav-container { position: relative; padding: 0 20px; }
    .hamburger { display: block; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); z-index: 1001; }

    /* Mobile Menu Drawer */
    .nav-menu { position: fixed; left: -100%; top: 0; flex-direction: column; background-color: #ffffff; width: 85%; max-width: 300px; height: 100vh; justify-content: flex-start; transition: 0.4s ease-in-out; box-shadow: 5px 0 15px rgba(0,0,0,0.1); padding-top: 0; z-index: 1000; overflow-y: auto; display: block; }
    .nav-menu.active { left: 0; }
    
    /* Menu Items */
    .nav-menu li { width: 100%; display: block; border-bottom: 1px solid #f8fafc; }
    .nav-link { padding: 15px 20px; display: flex; justify-content: space-between; font-size: 1rem; color: var(--dark); }
    .btn-nav { margin: 20px; width: calc(100% - 40px) !important; text-align: center; }

    /* Mobile Dropdown */
    .dropdown-menu { position: static; visibility: visible; opacity: 1; transform: none; box-shadow: none; width: 100%; background: #f8fafc; display: none; padding-left: 20px; transition: none; }
    .dropdown-menu li { border: none; }
    .dropdown-menu li a { padding: 12px 20px; font-size: 0.95rem; }
    .dropdown.open .dropdown-menu { display: block; }
    .dropdown-toggle i { transition: transform 0.3s ease; }
    .dropdown.open .dropdown-toggle i { transform: rotate(180deg); }

    /* Mobile Menu Header FIX (X button and Logo) */
    .mobile-menu-head { 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        padding: 20px; 
        border-bottom: 1px solid #f1f5f9; 
        margin-bottom: 20px; 
        background: #f8fafc; 
        gap: 15px; /* Added gap to prevent overlap */
    }
    .mobile-logo { display: flex; align-items: center; font-weight: 700; font-size: 1.2rem; color: var(--dark); }
    .mobile-logo img { height: 30px; margin-right: 8px; }
    .close-menu { font-size: 2rem; cursor: pointer; color: var(--dark); line-height: 1; min-width: 30px; text-align: right; }

    /* Lightbox Mobile */
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.2rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}


/* =========================================
   --- EMERGENCY LOGO & OVERLAP FIX (UPDATED) ---
   ========================================= */

/* 1. লোগো সাইজ ফিক্স (সব ক্লাস টার্গেট করা হলো) */
.navbar .logo img, 
.mobile-logo img, 
.footer .logo img,
img.logo-img,
.site-logo img, 
.custom-logo-link img {
    height: 40px !important;       /* হাইট ফিক্সড */
    width: auto !important;        /* উইডথ অটো */
    max-width: 150px !important;   /* এর বেশি চওড়া হবে না */
    min-width: 0 !important;
    object-fit: contain !important; 
    display: block !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. ওভারল্যাপ সমস্যা ফিক্স */
.navbar {
    z-index: 9999 !important; /* মেনু সবার উপরে থাকবে */
    background: #ffffff !important; /* ব্যাকগ্রাউন্ড সাদা */
    overflow: visible !important;
}

/* লোগো যাতে টেক্সটের সাথে সুন্দরভাবে থাকে */
.logo, .mobile-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important; /* লোগো ও টেক্সটের মাঝে ফাঁকা */
}

/* --- Privacy Policy Specific Styles --- */
.privacy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--gray);
}

.privacy-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.privacy-content strong {
    color: var(--primary);
}

/* =========================================
   --- PRIVACY POLICY PAGE STYLES ---
   ========================================= */

/* 1. হেডিং ওভারল্যাপ ফিক্স */
.privacy-section {
    /* ফিক্সড হেডারের উচ্চতা (80px) অনুযায়ী প্যাডিং দেওয়া হলো */
    padding-top: 100px !important; 
}

/* 2. ছবির স্টাইল (Floating & Full Width) */
.privacy-img-float-right {
    float: right;
    width: 40%; /* ডেস্কটপে ডানপাশে থাকবে */
    max-width: 400px;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.privacy-img-full {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.clearfix {
    clear: both;
}

/* 4. মোবাইল রেসপন্সিভ */
@media screen and (max-width: 768px) {
    .privacy-section {
        padding-top: 120px !important; /* মোবাইলে একটু বেশি প্যাডিং */
    }
    .privacy-img-float-right {
        float: none;
        width: 100%; /* মোবাইলে ফুল উইডথ হবে */
        margin-left: 0;
        margin-top: 20px;
    }
}

/* =========================================
   --- CTA BUTTON FIX (MOBILE) ---
   ========================================= */

@media screen and (max-width: 768px) {
    /* 1. বাটনগুলো উপরে-নিচে সাজানো */
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important; /* পাশাপাশি নয়, নিচে নিচে */
        gap: 15px !important;              /* মাঝখানে ফাঁকা */
        align-items: center !important;
    }

    /* 2. বাটনের সাইজ ও শেপ ঠিক করা */
    .cta-buttons .btn {
        width: 100% !important;            /* পুরো চওড়া হবে */
        max-width: 350px !important;       /* খুব বেশি বড় হবে না */
        height: auto !important;           /* ফিক্সড হাইট রিমুভ */
        padding: 15px 30px !important;     /* সুন্দর প্যাডিং */
        border-radius: 50px !important;    /* চ্যাপ্টা পিল শেপ (গোল নয়) */
        justify-content: center !important; /* লেখা মাঝখানে */
        white-space: nowrap !important;    /* লেখা ভাঙবে না */
    }
}



/* =========================================
   --- MARKETING PAGE FULL STYLES (FINAL) ---
   ========================================= */

/* 1. Process Section (Strategy Steps) */
.process-steps {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 30px !important;
    margin-top: 50px !important;
}

.step-card {
    flex: 1 !important;
    background: #ffffff !important;   /* সাদা ব্যাকগ্রাউন্ড */
    padding: 40px 30px !important;
    border-radius: 20px !important;   /* গোল কোণা */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important; /* শ্যাডো */
    border: 1px solid #f1f5f9 !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    transition: 0.3s !important;
}

.step-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
}

.step-number {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: rgba(79, 70, 229, 0.08) !important; /* হালকা জলছাপ */
    position: absolute !important;
    top: 0px !important;
    right: 20px !important;
    line-height: 1 !important;
    z-index: 0 !important;
}

.step-card h3 {
    margin-bottom: 15px !important;
    font-size: 1.5rem !important;
    position: relative !important;
    z-index: 1 !important;
    color: var(--dark) !important;
}

/* 2. Pricing Grid (Plan Cards) */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* ৩ কলাম */
    gap: 30px !important;
    margin-top: 50px !important;
    align-items: center !important;
}

.pricing-card {
    background: #ffffff !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08) !important;
    text-align: center !important;
    border: 1px solid #f1f5f9 !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

/* লিস্ট আইটেম (বুলেট পয়েন্ট) ঠিক করা */
.pricing-card ul, 
.pricing-card .price-list {
    text-align: left !important;
    padding-left: 0 !important;
    margin: 20px 0 30px 0 !important;
    list-style: none !important;
}

.pricing-card ul li,
.pricing-card .price-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    font-size: 0.95rem !important;
    color: var(--gray) !important;
}

.pricing-card i {
    color: #4F46E5 !important;
    flex-shrink: 0 !important;
}

/* পপুলার কার্ড হাইলাইট */
.pricing-card.popular {
    border: 2px solid #4F46E5 !important;
    transform: scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.15) !important;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 3. Mobile Responsive (মার্কেটিং পেজের জন্য) */
@media screen and (max-width: 991px) {
    .process-steps {
        flex-direction: column !important; /* নিচে নিচে */
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important; /* ১ কলাম */
    }
    
    .pricing-card.popular {
        transform: scale(1) !important;
        margin: 20px 0 !important;
    }
    
    .step-card {
        margin-bottom: 20px !important;
    }
}

/* =========================================
   --- PROJECT DETAILS PAGE STYLES (MISSING FIX) ---
   ========================================= */

/* 1. Project Info Bar (Client, Date, etc.) */
.project-info-bar {
    background: #f8fafc !important; /* হালকা ব্যাকগ্রাউন্ড */
    padding: 30px 40px !important;
    border-radius: 15px !important;
    margin-bottom: 50px !important;
    border: 1px solid #e2e8f0 !important;
}

.info-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* ৪ কলামে ভাগ হবে */
    gap: 20px !important;
}

.info-item span {
    display: block !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    color: var(--gray) !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.info-item h4 {
    font-size: 1.1rem !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
}

.info-item a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}

/* 2. Project Gallery Grid (নিচের ছবিগুলো) */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* ২ কলামে ছবি থাকবে */
    gap: 30px !important;
    margin-top: 40px !important;
}

.gallery-item {
    position: relative !important;
    height: 350px !important;        /* ফিক্সড হাইট */
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    border: 1px solid #f1f5f9 !important;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;    /* ছবি চ্যাপ্টা হবে না */
    transition: transform 0.5s ease !important;
}

.gallery-item:hover img {
    transform: scale(1.05) !important; /* জুম এফেক্ট */
}

/* 3. Challenge & Solution Section Styling */
.project-details-content h3 {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    font-size: 1.8rem !important;
}

.project-details-content ul {
    margin: 20px 0 !important;
    padding-left: 20px !important;
}

.project-details-content ul li {
    margin-bottom: 10px !important;
    list-style: disc !important;
}

/* 4. Responsive Fix (Mobile) */
@media screen and (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr !important; /* মোবাইলে নিচে নিচে */
        gap: 30px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important; /* মোবাইলে ১টি করে ছবি */
    }

    .gallery-item {
        height: 250px !important; /* হাইট একটু কম */
    }
}

/* =========================================
   --- PROJECT DETAILS & GALLERY FIX ---
   ========================================= */

/* 1. Project Gallery Grid (Desktop: 3 Column) */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* ডেস্কটপে ৩ কলাম */
    gap: 30px !important;
    margin-top: 40px !important;
}

.gallery-item {
    position: relative !important;
    height: 300px !important;        /* ফিক্সড হাইট (একটু কমানো হলো) */
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    cursor: pointer !important;
    border: 1px solid #f1f5f9 !important;
    transition: transform 0.3s ease !important;
}

.gallery-item:hover {
    transform: translateY(-5px) !important;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;    /* ছবি চ্যাপ্টা হবে না */
    transition: transform 0.5s ease !important;
}

.gallery-item:hover img {
    transform: scale(1.1) !important; /* জুম এফেক্ট */
}

/* জুম আইকন (Optional) */
.gallery-item::after {
    content: '\f00e'; /* FontAwesome Zoom Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    color: white;
    background: rgba(79, 70, 229, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    opacity: 0;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/* 2. Responsive Fix (Mobile & Tablet: 2 Column) */
@media screen and (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* ট্যাবলেট ও মোবাইলে ২ কলাম */
        gap: 20px !important;
    }

    .gallery-item {
        height: 220px !important; /* হাইট কমানো হলো */
    }
}

@media screen and (max-width: 480px) {
    /* ছোট মোবাইলে চাইলে ১ কলাম করতে পারেন, তবে আপনি ২ চেয়েছেন তাই এটি বাদ দিলাম */
    /* grid-template-columns: 1fr !important; */
}

/* =========================================
   --- TRUSTED CLIENTS & FORM STYLES ---
   ========================================= */

/* Trusted Clients Flags */
.trusted-clients-box {
    margin-top: 40px !important;
    padding-top: 30px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.trusted-clients-box h5 {
    font-size: 0.95rem !important;
    color: var(--gray) !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.flag-grid {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.flag-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.9rem !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    background: #f8fafc !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    border: 1px solid #f1f5f9 !important;
}

.flag-item img {
    width: 24px !important;
    height: auto !important;
    border-radius: 3px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Success Box Animation */
#success-box {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   --- MOBILE SPACING FIX (REDUCE GAPS) ---
   ========================================= */

@media screen and (max-width: 768px) {
    
    /* 1. সেকশন প্যাডিং কমানো (আগে 100px ছিল, এখন 40px হবে) */
    .section {
        padding: 40px 0 !important; 
    }

    /* 2. হিরো সেকশন প্যাডিং এডজাস্টমেন্ট */
    .hero, .project-hero {
        padding-top: 100px !important; /* ফিক্সড হেডারের জন্য স্পেস */
        padding-bottom: 40px !important;
        min-height: auto !important;   /* অতিরিক্ত হাইট রিমুভ */
    }

    /* 3. সেকশন হেডার এবং কন্টেন্ট এর মাঝখানের গ্যাপ কমানো */
    .section-header {
        margin-bottom: 30px !important; /* 60px থেকে কমিয়ে 30px */
    }

    /* 4. বিভিন্ন গ্রিড সেকশনের উপরের মার্জিন কমানো */
    .process-steps, 
    .pricing-grid, 
    .team-grid, 
    .services-grid, 
    .blog-grid,
    .portfolio-filter {
        margin-top: 30px !important; /* 50px থেকে কমিয়ে 30px */
        margin-bottom: 30px !important;
    }

    /* 5. প্যারাগ্রাফ ও হেডিং এর স্পেস ফিক্স */
    h1, h2, h3 {
        margin-bottom: 15px !important;
    }
    
    p {
        margin-bottom: 15px !important;
    }
}

/* =========================================
   --- PORTFOLIO FILTER BUTTONS FIX ---
   ========================================= */

.portfolio-filter {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 50px !important;
    flex-wrap: wrap !important;
}

.filter-btn {
    padding: 12px 30px !important;
    border: 1px solid #e2e8f0 !important; /* হালকা বর্ডার */
    background: transparent !important;
    border-radius: 50px !important;       /* পিল শেপ */
    font-weight: 600 !important;
    color: var(--gray) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
}

/* বাটন হোভার এবং অ্যাক্টিভ স্টাইল */
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary) !important; /* নীল ব্যাকগ্রাউন্ড */
    color: #ffffff !important;             /* সাদা টেক্সট */
    border-color: var(--primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2) !important;
}


/* =========================================
   --- MISSING CODES (TEAM, ABOUT, BLOG & FIXES) ---
   ========================================= */

/* 1. PAGE HEADER SPACING FIX (অন্য পেজে মেনুর নিচে লেখা ঢুকে যাওয়া আটকানো) */
.page-header {
    padding-top: 160px !important;
    padding-bottom: 60px !important;
    background-color: #f8fafc !important;
    margin-top: -80px !important;
}
.project-hero {
    padding-top: 160px !important;
}
@media screen and (max-width: 768px) {
    .page-header, .project-hero {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
    }
}

/* 2. TEAM PAGE STYLES */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    text-align: center;
}
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}
.team-img-box {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.team-card:hover .team-img-box img {
    transform: scale(1.1) rotate(2deg);
}
.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.team-card:hover .team-social {
    transform: translateY(0);
}
.team-social a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.team-social a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}
.team-info { padding: 25px 20px; }
.team-info h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 5px; font-weight: 700; }
.designation { display: block; font-size: 0.95rem; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.contact-details { border-top: 1px solid #f1f5f9; padding-top: 15px; display: flex; flex-direction: column; gap: 8px; }
.contact-details a { font-size: 0.9rem; color: var(--gray); text-decoration: none; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-details a:hover { color: var(--primary); }

/* 3. ABOUT PAGE STYLES */
.lead-text { font-size: 1.25rem !important; line-height: 1.8 !important; color: var(--dark) !important; font-weight: 500 !important; }
.center-icon { display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.bg-dark { background-color: var(--dark) !important; color: white !important; }
.bg-dark h2, .bg-dark h3, .bg-dark p { color: white !important; }
.why-list { list-style: none !important; padding: 0 !important; margin-top: 30px !important; }
.why-list li { display: flex !important; align-items: center !important; gap: 15px !important; margin-bottom: 20px !important; font-size: 1.1rem !important; color: #cbd5e1 !important; }
.why-list li i { color: #4F46E5 !important; font-size: 1.2rem !important; }
.promise-box { background: rgba(255, 255, 255, 0.05) !important; padding: 40px !important; border-radius: 20px !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; }
.rounded-corners { border-radius: 20px; }
.shadow-lg { box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* 4. BLOG PAGE FIXES (Newsletter, Pagination, Styles) */
.newsletter-section { background: var(--gradient) !important; padding: 60px 20px !important; border-radius: 20px !important; text-align: center !important; color: white !important; margin-top: 50px !important; box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2) !important; }
.newsletter-form { display: flex !important; justify-content: center !important; gap: 15px !important; margin-top: 30px !important; max-width: 600px !important; margin-left: auto !important; margin-right: auto !important; }
.newsletter-form input { flex: 1 !important; padding: 16px 20px !important; border-radius: 50px !important; border: none !important; font-size: 1rem !important; outline: none !important; }
.newsletter-form button { padding: 16px 35px !important; border-radius: 50px !important; border: none !important; background: #0F172A !important; color: white !important; font-weight: 600 !important; cursor: pointer !important; transition: 0.3s !important; }
.newsletter-form button:hover { background: #334155 !important; transform: translateY(-2px) !important; }
.read-more-link { text-decoration: none !important; color: var(--primary) !important; font-weight: 600 !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; margin-top: 15px !important; transition: 0.3s !important; }
.read-more-link:hover { gap: 12px !important; color: var(--secondary) !important; }
.pagination { display: flex !important; justify-content: center !important; gap: 10px !important; margin-top: 50px !important; margin-bottom: 50px !important; }
.page-link { width: 45px !important; height: 45px !important; display: flex !important; align-items: center !important; justify-content: center !important; border-radius: 50% !important; background: #ffffff !important; color: var(--dark) !important; text-decoration: none !important; font-weight: 600 !important; box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important; border: 1px solid #e2e8f0 !important; transition: 0.3s !important; }
.page-link:hover, .page-link.active { background: var(--primary) !important; color: white !important; border-color: var(--primary) !important; transform: translateY(-3px) !important; }
/* Blog Details Typography */
.blog-text p { line-height: 1.8 !important; margin-bottom: 25px !important; font-size: 1.12rem !important; color: #475569 !important; }
.blog-text ul { margin: 30px 0 !important; padding-left: 0 !important; list-style: none !important; }
.blog-text ul li { position: relative !important; padding-left: 30px !important; margin-bottom: 15px !important; line-height: 1.6 !important; color: var(--dark) !important; font-weight: 500 !important; }
.blog-text ul li::before { content: '' !important; position: absolute !important; left: 0 !important; top: 10px !important; width: 10px !important; height: 10px !important; background-color: var(--primary) !important; border-radius: 50% !important; }

/* 5. LIGHTBOX SHARE BUTTON FIX (Bottom Center) */
.lightbox { flex-direction: column !important; justify-content: center !important; padding: 20px !important; }
#lightbox-img { max-height: 80vh !important; max-width: 90% !important; margin-bottom: 20px !important; }
.share-controls { position: relative !important; top: auto !important; right: auto !important; bottom: auto !important; left: auto !important; display: flex !important; justify-content: center !important; gap: 15px !important; width: 100% !important; margin-top: 0 !important; }
.share-controls button, .share-controls a { width: 45px !important; height: 45px !important; background: rgba(255, 255, 255, 0.1) !important; border: 1px solid rgba(255, 255, 255, 0.2) !important; color: white !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; transition: 0.3s !important; }
.share-controls button:hover, .share-controls a:hover { background: #4F46E5 !important; transform: translateY(-3px) !important; }

/* 6. MOBILE MENU BUTTON FIX (Center Align) */
@media screen and (max-width: 768px) {
    .nav-menu .btn-nav {
        width: auto !important;
        display: table !important;
        margin: 30px auto 20px auto !important;
        padding: 12px 40px !important;
        text-align: center !important;
        border-radius: 50px !important;
        float: none !important;
    }
    .nav-menu li:last-child { border-bottom: none !important; }
    
    /* Responsive Grid Fixes */
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-img-box { height: 300px; }
    .split-container { flex-direction: column !important; gap: 40px !important; }
    .promise-box { margin-top: 20px !important; }
    .newsletter-form { flex-direction: column !important; }
}

/* 7. BOOST ENERGY HERO FIX */
.project-hero { position: relative !important; height: 60vh !important; min-height: 400px !important; display: flex !important; align-items: center !important; justify-content: center !important; background-color: var(--dark) !important; overflow: hidden !important; }
.hero-bg-img { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; z-index: 0 !important; opacity: 0.6 !important; }
.hero-text-center { position: relative !important; z-index: 10 !important; }
.project-hero h1 { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.project-details-content ul { list-style: none !important; padding-left: 0 !important; }
.project-details-content ul li { display: flex !important; align-items: flex-start !important; gap: 10px !important; font-size: 1.1rem !important; margin-bottom: 10px !important; color: var(--gray) !important; }
.project-details-content ul li i { color: var(--primary) !important; margin-top: 5px; }
.gallery-item { cursor: zoom-in !important; }


/* =========================================
   --- NEWSLETTER BOXED STYLE (FIXED) ---
   ========================================= */

.newsletter-section {
    background: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 100%) !important; /* নীল গ্রাডিয়েন্ট */
    
    /* Box Layout Fixes (বক্স স্টাইল ও মাঝখানে আনা) */
    max-width: 1100px !important;       /* বক্সের সর্বোচ্চ চওড়া */
    width: 90% !important;              /* মোবাইলে সাইড গ্যাপ রাখার জন্য */
    margin: 60px auto 100px auto !important; /* উপরে ৬০, ডানে-বামে অটো, নিচে ১০০ গ্যাপ */
    
    padding: 80px 40px !important;
    border-radius: 30px !important;     /* গোল কোণা */
    text-align: center !important;
    color: white !important;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.25) !important;
    position: relative !important;
    overflow: hidden !important;        /* ভেতরের কিছু বাইরে যাবে না */
}

/* হেডিং এবং টেক্সট কালার */
.newsletter-section h2 {
    color: white !important;
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
}

.newsletter-section p {
    color: #e2e8f0 !important;
    font-size: 1.1rem !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ফর্ম ডিজাইন (ইনপুট ও বাটন) */
.newsletter-form {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.newsletter-form input {
    flex: 1 !important;
    padding: 18px 30px !important; /* ইনপুট ফিল্ড একটু বড় */
    border-radius: 50px !important;
    border: none !important;
    background: #ffffff !important;
    color: #333 !important;
    font-size: 1rem !important;
    outline: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.newsletter-form button {
    padding: 18px 40px !important;
    border-radius: 50px !important;
    border: none !important;
    background: #0F172A !important; /* কালো বাটন */
    color: white !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
    white-space: nowrap !important; /* লেখা এক লাইনে থাকবে */
}

.newsletter-form button:hover {
    background: #334155 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* Responsive Fix for Mobile */
@media screen and (max-width: 768px) {
    .newsletter-section {
        padding: 60px 20px !important;
        margin: 40px auto 60px auto !important;
        width: 95% !important;
    }

    .newsletter-section h2 {
        font-size: 1.8rem !important;
    }

    .newsletter-form {
        flex-direction: column !important; /* মোবাইলে নিচে নিচে */
        gap: 20px !important;
    }

    .newsletter-form input, 
    .newsletter-form button {
        width: 100% !important;
    }
}

/* =========================================
   --- ABOUT PAGE IMAGE FIX ---
   ========================================= */

/* 1. ছবির কলাম ছোট করা (40%) এবং টেক্সট বড় করা (60%) */
.split-container {
    align-items: center !important; /* লম্বালম্বি মাঝখানে থাকবে */
}

.split-image {
    flex: 0 0 40% !important; /* ইমেজের জন্য ৪০% জায়গা */
    max-width: 40% !important;
    text-align: center !important; /* ইমেজ সেন্টারে থাকবে */
}

.split-content {
    flex: 0 0 60% !important; /* লেখার জন্য ৬০% জায়গা */
    max-width: 60% !important;
    padding-left: 30px !important; /* ইমেজ থেকে লেখার দূরত্ব */
}

/* 2. ইমেজের সাইজ কন্ট্রোল করা */
.split-image img {
    max-height: 450px !important; /* ইমেজের উচ্চতা ফিক্সড (এর বেশি বড় হবে না) */
    width: auto !important;       /* উচ্চতা অনুযায়ী চওড়া হবে */
    max-width: 100% !important;   /* কন্টেইনারের বাইরে যাবে না */
    object-fit: cover !important; /* ছবি চ্যাপ্টা হবে না */
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; /* সুন্দর শ্যাডো */
    display: inline-block !important;
}

/* 3. মোবাইল রেসপন্সিভ ফিক্স */
@media screen and (max-width: 991px) {
    .split-container {
        flex-direction: column !important; /* মোবাইলে নিচে নিচে */
        text-align: center !important;
    }

    .split-image, 
    .split-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
    }

    .split-image {
        margin-bottom: 30px !important;
    }
    
    .split-image img {
        max-height: 350px !important; /* মোবাইলে ইমেজ একটু ছোট */
        width: 100% !important;
        object-fit: contain !important; /* পুরো ছবি দেখা যাবে */
    }
}