/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
    background: #ffffff;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    width: 100%;
    padding: 18px 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #e53935;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #1f2937;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #5f0fda;
}

.nav-btn {
    background: #5be535;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
}

/* ===============================
   HERO SECTION (ASTRA STYLE)
================================ */
.hero {
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        #3a0ca3 0%,
        #5f0fda 35%,
        #7209b7 65%,
        #560bad 100%
    );
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 40%,
        rgba(255,255,255,0.08),
        transparent 60%
    );
}

/* Hero side-by-side alignment */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Map Section Design */
.map-section {
    padding: 60px 0;
    background: #fff;
}

.map-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Fix */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ===============================
   HERO CONTENT
================================ */
.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.05rem;
    max-width: 520px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* ===============================
   BUTTONS
================================ */
.cta-group {
    display: flex;
    gap: 16px;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-red {
    background: #ffd166;
    color: #1f2937;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #3a0ca3;
}

/* ===============================
   HERO ANIMATION
================================ */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- আগের কোড ঠিক থাকবে, শুধু এই অংশগুলো আপডেট করো --- */

@media (max-width: 992px) {
    .hero {
        padding: 80px 20px; /* মোবাইলে উপর-নিচে গ্যাপ বাড়ানোর জন্য */
        min-height: auto; /* মোবাইলে উচ্চতা কন্টেন্ট অনুযায়ী হবে */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    @media (max-width: 992px) {
    /* মেইন হেডিং বড় করা */
    .hero-content h1 {
        font-size: 2.8rem !important; /* আগের চেয়ে বড় করা হলো */
        line-height: 1.2;
        margin-bottom: 25px; /* নিচের প্যারাগ্রাফ থেকে দূরত্ব */
    }

    /* প্যারাগ্রাফের ফন্ট সাইজ এবং লাইন হাইট বাড়ানো */
    .hero-content p {
        font-size: 1.15rem !important; /* পড়ার সুবিধার্থে বড় করা হলো */
        line-height: 1.6;
        margin-bottom: 40px !important; /* "Get a Quote" ব্লকের আগে গ্যাপ বাড়ানো হলো */
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    /* বাটন গ্রুপের পজিশন */
    .cta-group {
        margin-top: 20px; /* অতিরিক্ত সেফটি গ্যাপ */
        gap: 20px; /* বাটন দুটোর মাঝখানে গ্যাপ */
    }
}
    .btn {
        width: 100%; /* বাটন ফুল উইডথ হবে */
        text-align: center;
    }
}

/* ৩২০পিএক্স থেকে ৪৮০পিএক্স স্ক্রিনের জন্য আরও ছোট ফন্ট */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* ===============================
   SECTIONS
================================ */
.section {
    padding: 80px 60px;
}

.bg-light {
    background: #f9fafb;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/* ===============================
   ABOUT
================================ */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vm-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #3a0ca3;
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card h3 {
    color: #3a0ca3;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.vm-card p {
    font-size: 0.95rem;
    color: #475569;
}
/* ===============================
   GRID & CARDS
================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card i {
    font-size: 40px;
    color: #5f0fda;
    margin-bottom: 15px;
}

/* ===============================
   BLOG
================================ */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.blog-img {
    height: 160px;
}

.red-bg {
    background: linear-gradient(135deg, #e53935, #ff6f61);
}

.blue-bg {
    background: linear-gradient(135deg, #3a0ca3, #5f0fda);
}

.blog-info {
    padding: 25px;
}

.blog-tag {
    display: inline-block;
    background: #e53935;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* ===============================
   CONTACT
================================ */
.contact-section {
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.submit-btn {
    background: #ffd166;
    color: #1f2937;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
}

/* ===============================
   FOOTER
================================ */
/* SOCIAL ICONS STYLING */
.footer {
    padding: 50px 20px;
    background: #0f172a; /* Darker professional background */
    text-align: center;
}

.social-icons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    color: #94a3b8; /* Light gray by default */
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Colors */
.social-icons a:hover {
    transform: translateY(-5px); /* Chotto ekta jump effect */
}

.social-icons a .fa-facebook:hover {
    color: #1877f2; /* Facebook Blue */
}

.social-icons a .fa-instagram:hover {
    color: #e4405f; /* Instagram Pink/Red */
}

.social-icons a .fa-linkedin:hover {
    color: #0077b5; /* LinkedIn Blue */
}

.footer p {
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* ===============================
   WHATSAPP BUTTON
================================ */
/* style.css e update koro */
/* WHATSAPP BUTTON - Tawk.to upore tule dilam */
.chat-btn {
    position: fixed;
    bottom: 225px;            /* 25px theke 95px korlam jate Tawk.to-r upore thake */
    right: 0px;
    width: 55px;
    height: 55px;
    background: #5be535;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;          /* Widget-er sathe overlap avoid korte */
    transition: transform 0.3s ease;
}

.chat-btn:hover {
    transform: scale(1.1);
}

/* Call Button position-o ektu adjust korte paro jodi overlap hoy */
.call-btn-middle {
    /* Middle right-e thakle thik ache */
    top: 15% !important;     /* WhatsApp upor-e uthle eta ektu upore kora bhalo */
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-content p {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 15px 30px;
    }

}
@media (max-width: 576px) {
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 90px;
        right: 18px;
    }
}

.logo img {
    height: 45px;          /* navbar height অনুযায়ী */
    width: auto;
    display: block;
}
/* Middle Right Call Button - Updated Position */
.call-btn-middle {
    position: fixed;
    right: 0;
    top: 20%; /* ৪0% থেকে কমিয়ে ৩০% করা হয়েছে আরও উপরে তোলার জন্য */
    transform: translateY(-50%);
    width: 50px;
    height: 60px;
    background: #5be535;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 10px 0 0 10px; 
    cursor: pointer;
    z-index: 2000;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.call-btn-middle:hover {
    width: 65px;
    padding-right: 5px;
}

/* Modal Styling */
.modal-overlay {
    display: none; /* Initially Hidden */
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.8); /* Dark Glassmorphism */
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFade 0.4s ease;
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover { color: #e53935; }

/* Modal Form styling (matching your theme) */
#enquiryFormModal input, #enquiryFormModal textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}
/* GOOGLE MAP STYLING */
.map-section {
    width: 100%;
    padding: 20px 0; /* Footer theke ektu gap rakhar jonno */
    background: #fff;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block; /* Gap avoid korar jonno */
}

/* Mobile er jonno map height ektu komano */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}
/* Hero Image Fix */
.floating-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Location & Address Grid */
.location-section {
    padding: 80px 50px;
    background: #f8fafc;
}

.location-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Map left, Address right */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.address-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.address-box h3 { margin-bottom: 20px; color: #4b19ff; }
.address-box p { margin: 15px 0; color: #64748b; font-size: 1.1rem; }
.address-box i { color: #4b19ff; margin-right: 10px; }

/* Responsive */
@media (max-width: 992px) {
    .location-container { grid-template-columns: 1fr; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
}
/* PROCESS STEPS */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}

.step-card:hover { border-color: #3a0ca3; transform: scale(1.02); }

.step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(58, 12, 163, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* ACCORDION (INTERACTIVE TEXT) */
.accordion-container { max-width: 800px; margin: 0 auto; }

.accordion-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: 0.3s;
}

.accordion-header:hover { color: #3a0ca3; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: 0.4s ease-out;
    background: #f9f9f9;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 20px;
}
/* BENTO GRID STYLING */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.bento-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-service {
    grid-row: span 2;
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    color: #fff;
}
.main-service i { color: #ffd166 !important; font-size: 50px; margin-bottom: 20px; }
.bento-item i { font-size: 35px; color: #3a0ca3; margin-bottom: 15px; }
.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 12, 163, 0.1);
    border-color: #3a0ca3;
}
.learn-more-btn { color: #ffd166; text-decoration: none; font-weight: 600; margin-top: 15px; display: inline-block; }

/* BLOG ROW STYLING */
.blog-row {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}
.blog-row:hover { background: #f8fafc; }
.blog-link-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.blog-row:hover .blog-link-btn { background: #3a0ca3; color: #fff; transform: rotate(45deg); }
/* BENTO GRID FIX */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: 0.3s ease;
    text-align: left;
}

.bento-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 30px;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(58, 12, 163, 0.1);
}

/* INSIGHT LIST FIX */
.insight-list {
    max-width: 900px;
    margin: 0 auto;
}

.insight-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: transform 0.3s;
}

.insight-item:hover { transform: translateX(10px); }

.insight-item .meta {
    width: 120px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #3a0ca3;
}

.insight-item .meta span { color: #94a3b8; margin-right: 10px; }

.insight-item .content { flex: 1; }

.insight-item .action {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.large { grid-column: span 1; flex-direction: column; }
    .insight-item { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* FAQ ACCORDION STYLES */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    color: #64748b;
    line-height: 1.7;
    transition: all 0.3s ease;
}

/* Active State */
.faq-item.active {
    border-color: #3a0ca3;
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on text length */
    padding-bottom: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #3a0ca3;
}
/* NEW CORE VALUES GRID */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
    margin-top: 40px;
}

.value-card-new {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-card-new.active-card {
    border-color: #3a0ca3;
    background: #f8fafc;
}

.value-top {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3a0ca3;
    margin-bottom: 15px;
}

.value-card-new h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.value-card-new p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Hover Effect */
.value-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(58, 12, 163, 0.1);
    border-color: #3a0ca3;
}

/* INSIGHT LIST FIX (Image 1 overlap fix) */
.insight-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insight-item {
    display: grid;
    grid-template-columns: 80px 1fr 50px; /* Precise column width */
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.insight-item .content {
    padding-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-grid-new { grid-template-columns: repeat(2, 1fr); } /* 2 per row on tablets */
}

@media (max-width: 600px) {
    .values-grid-new { grid-template-columns: 1fr; } /* 1 per row on mobile */
    .insight-item { grid-template-columns: 1fr; text-align: center; }
}
/* WHY US GRID STYLING */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3a0ca3, #7209b7);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 12, 163, 0.1);
}

.why-icon {
    font-size: 2.5rem;
    color: #3a0ca3;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.why-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
/* WHAT WE COVER STYLING */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.cover-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid transparent;
}

.cover-card:hover {
    border-color: #3a0ca3;
    background: #f8fafc;
}

.cover-card i {
    font-size: 1.5rem;
    color: #3a0ca3;
    margin-bottom: 15px;
    display: block;
}

.cover-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.cover-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Auto adjust for 4 items */
    gap: 25px;
    margin-top: 50px;
}

.step-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-card:hover {
    border-color: #3a0ca3;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 12, 163, 0.08);
}

.step-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(58, 12, 163, 0.05); /* Very light background number */
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 1;
}

.step-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: #1e293b;
}

.step-card p {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}
/* PARTNERSHIP SECTION STYLING */
.partnership-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.p-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.p-card i {
    font-size: 2rem;
    color: #3a0ca3;
    margin-bottom: 15px;
}

/* CLIENT LOGO GRID - NORMAL COLOR SHOW */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Grid size bariyechi */
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

.client-logo-item {
    width: 100%;
    max-width: 180px; /* Logo-r container boro kora hoyeche */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.1); /* Hover korle aro boro hobe */
}

.client-logo-item img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Logo-r height boro kora hoyeche */
    object-fit: contain;
    filter: grayscale(0); /* Original color thakbe */
}

.client-logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

@media (max-width: 768px) {
    .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

.nav-links {
    gap: 20px; /* Gap ektu komano holo jate shob link ek line-e thake */
}

.nav-links li a {
    font-size: 0.95rem; /* Text size ektu optimize koro */
    white-space: nowrap; /* Link jate venge niche na jay */
}

@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Mobile/Tablet-er jonno menu hide thakbe (jodi hamburger menu na thake) */
    }
}

.section-title a:hover {
    color: #3a0ca3 !important;
    transition: 0.3s;
}

.horizontal-values-container {
    display: flex;
    flex-direction: column; /* Desktop-e row korar jonno niche alignment dewa holo */
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.value-box:hover {
    transform: translateX(10px);
    border-color: #3a0ca3;
}

.value-letter {
    background: #3a0ca3;
    color: #ffd166;
    font-size: 2rem;
    font-weight: 900;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.value-info {
    padding: 20px 30px;
    text-align: left;
}

.value-info h4 {
    margin-bottom: 5px;
    color: #1e1b4b;
    font-size: 1.1rem;
}

.value-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Mobile-e spacing adjust kora holo */
@media (max-width: 768px) {
    .value-letter {
        width: 60px;
        font-size: 1.5rem;
    }
}

.section-title a:hover {
    color: #3a0ca3 !important;
    transition: 0.3s ease;
}

/* Mobile Menu Styling */
@media (max-width: 992px) {
    .menu-toggle {
        display: block; /* মোবাইলে আইকন দেখাবে */
        font-size: 1.8rem;
        color: #1e1b4b;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* শুরুতে স্ক্রিনের বাইরে থাকবে */
        height: 100vh;
        width: 70%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0; /* ক্লিক করলে ভেতরে আসবে */
    }

    .nav-links li {
        margin: 20px 0;
    }
}

@media (min-width: 993px) {
    .menu-toggle { display: none; } /* ডেস্কটপে আইকন হাইড থাকবে */
}


/* মোবাইল মেনু ফাইনাল ফিক্স */
/* ===============================
   MOBILE MENU FIX (FINAL)
================================ */
@media (max-width: 992px) {

    /* শুরুতে মেনু একদম হাইড থাকবে */
.nav-links {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #5f0fda !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 9999 !important;
        gap: 25px !important;
    }

    /* যখন Active ক্লাস আসবে তখন দেখা যাবে */
    .nav-links.active {
        display: flex !important;
    }

    .nav-links li a {
        font-size: 1.5rem !important;
        color: #fefdff !important;
        font-weight: 700 !important;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 10000 !important;
        font-size: 2rem;
        color: #05fe37;
        cursor: pointer;
    }
}
}

/* Card hover effect — media query এর বাইরে */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(58, 12, 16, 0.25);
}
form input, 
form select, 
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0; /* হালকা বর্ডার প্রফেশনাল লাগে */
    outline: none;
    font-family: 'Poppins', sans-serif;
}

form select {
    cursor: pointer;
    color: #475569;
}
/* Modal specific layout */
#enquiryFormModal {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ২ কলাম */
    gap: 15px;
}

#enquiryFormModal input, 
#enquiryFormModal select, 
#enquiryFormModal textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.95rem;
    outline: none;
}

/* Company Group for Modal */
.company-group-modal {
    grid-column: span 2;
    display: flex;
    gap: 15px;
}

.company-group-modal input { flex: 2; margin-bottom: 0 !important; }
.company-group-modal select { flex: 1; cursor: pointer; }

#enquiryFormModal textarea {
    grid-column: span 2;
    resize: none;
}

#enquiryFormModal .submit-btn {
    grid-column: span 2;
    margin-top: 5px;
}

/* Mobile Responsive for Modal */
@media (max-width: 600px) {
    #enquiryFormModal { grid-template-columns: 1fr; }
    #enquiryFormModal textarea, 
    #enquiryFormModal .submit-btn, 
    .company-group-modal { grid-column: span 1; }
    .company-group-modal { flex-direction: column; gap: 15px; }
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}