/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* আপনার কাস্টম CSS এখানে লিখবেন বা কাস্টমাইজ অপশনে লিখবেন */

/* --- VARIABLES --- */
:root {
    --primary: #007BFF;
    --primary-dark: #0056b3;
    --cta-color: #0F2540; /* ডিসেন্ট নেভি ব্লু */
    --slate-bg: #1E293B;  /* Why Choose এর জন্য সফট ডার্ক */
    --highlight-bg: #F0F8FF; /* Clients এর জন্য খুব সফট ব্লু */
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
    --radius: 16px; /* গ্লোবাল রাউন্ড শেপ */
    --radius-large: 30px; /* সেকশন রাউন্ড শেপ */
}

/* --- GENERAL --- */
.mr-home-wrapper {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

.mr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ফ্লোটিং কন্টেইনার (Why Choose & CTA এর জন্য) */
.mr-section-floating { padding: 40px 20px; }
.mr-container-floating {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: var(--radius-large);
}

.mr-section { padding: 80px 0; }
.mr-bg-white { background-color: var(--white); }
.mr-bg-slate { background-color: var(--slate-bg); color: var(--white); }
.mr-bg-highlight { background-color: var(--highlight-bg); } /* নতুন হাইলাইট কালার */

.text-center { text-align: center; }

/* --- TYPOGRAPHY --- */
h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; color: #1e293b; }
h2 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 700; color: #1e293b; }
p { font-size: 1.1rem; line-height: 1.7; color: var(--text-light); margin-bottom: 20px; }

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mr-tag {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* --- BUTTONS --- */
.mr-btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.mr-btn-primary { background: var(--gradient); color: var(--white); border: none; box-shadow: 0 4px 15px rgba(0,123,255,0.3); }
.mr-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,123,255,0.4); }

.mr-btn-secondary { background: transparent; color: var(--text-main); border: 2px solid #cbd5e1; margin-left: 10px; }
.mr-btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.mr-btn-white { background: var(--white); color: var(--cta-color); font-weight: bold; }
.mr-btn-white:hover { background: #f8fafc; transform: translateY(-2px); }

/* --- HERO SECTION --- */
.mr-hero { padding: 100px 0 60px 0; display: flex; align-items: center; }
.mr-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mr-hero-image img { width: 100%; border-radius: var(--radius-large); }

/* --- TRUSTED BY --- */
.mr-trusted { text-align: center; padding: 40px 0; border-bottom: 1px solid #f1f5f9; }
.mr-trusted p { font-size: 0.9rem; font-weight: bold; text-transform: uppercase; color: #94a3b8; margin-bottom: 20px; }
.mr-logo-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: 0.6; font-weight: bold; font-size: 1.5rem; color: #cbd5e1; }

/* --- SERVICES --- */
.mr-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.mr-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    /* হালকা বর্ডার এবং সফট শ্যাডো */
    border: 1px solid #e2e8f0; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); 
    transition: all 0.3s ease;
}
.mr-card:hover { transform: translateY(-7px); border-color: var(--primary); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.mr-card .icon-box { font-size: 3rem; margin-bottom: 20px; }
.mr-read-more { color: var(--primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; margin-top: 10px; }
.mr-read-more:hover { gap: 8px; }

/* --- ABOUT SECTION --- */
.mr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mr-about-img img { width: 100%; border-radius: var(--radius-large); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.mr-check-list { list-style: none; padding: 0; margin: 20px 0; }
.mr-check-list li { margin-bottom: 10px; font-weight: 500; color: var(--text-main); }

/* --- WHY CHOOSE US --- */
.mr-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.mr-feature-box { 
    background: rgba(255,255,255,0.05); 
    padding: 30px; 
    border-radius: var(--radius); 
    border: 1px solid rgba(255,255,255,0.1); 
    transition: transform 0.3s;
}
.mr-feature-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.mr-feature-box h3 { color: var(--white); margin-top: 0; }
.mr-feature-box p { color: #cbd5e1; margin-bottom: 0; }

/* --- TESTIMONIALS --- */
.mr-review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.mr-review-card { 
    background: var(--white); 
    padding: 30px; 
    border-radius: var(--radius); 
    border: 1px solid #e2e8f0; /* হালকা বর্ডার */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); 
}
.mr-review-card p { font-style: italic; color: var(--text-main); }
.mr-review-card h5 { margin: 15px 0 0 0; color: var(--primary-dark); font-weight: 700; }

/* --- CTA SECTION --- */
.mr-cta-box { 
    background-color: var(--cta-color); /* ডিপ নেভি ব্লু */
    color: var(--white); 
    box-shadow: 0 20px 40px rgba(15, 37, 64, 0.2);
}
.mr-cta-box h2 { color: var(--white); }
.mr-cta-box p { color: rgba(255,255,255,0.8); font-size: 1.2rem; }

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .mr-hero-grid, .mr-grid-2, .mr-features-grid { grid-template-columns: 1fr; gap: 40px; }
    .mr-hero-text { text-align: center; }
    .mr-hero-image { order: -1; }
    h1 { font-size: 2.5rem; }
    .mr-btn { width: 100%; margin: 10px 0 0 0; text-align: center; }
    .mr-btn-secondary { margin-left: 0; }
    .mr-container-floating { padding: 40px 20px; margin: 0 15px; border-radius: 20px; }
}

/*Service page CSS Start Here*/
/* --- SERVICE HERO (CLEAN) --- */
.mr-service-hero-clean {
    padding: 100px 0;
    background-color: var(--white); /* এখন সাদা ব্যাকগ্রাউন্ড */
}

.mr-hero-text {
    padding-right: 30px;
}

.mr-hero-img img {
    width: 100%;
    border-radius: var(--radius-large);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* খুব সফট শ্যাডো */
}

/* --- INCLUDES SECTION --- */
.mr-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.mr-include-card {
    background: var(--white);
    padding: 25px;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mr-include-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.tick-icon {
    background: rgba(16, 185, 129, 0.1); /* গ্রিন টিন্ট */
    color: #10b981; /* গ্রিন টিক */
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.mr-include-card h4 { margin: 0 0 10px 0; font-size: 1.1rem; }
.mr-include-card p { font-size: 0.9rem; margin: 0; }

/* --- WHY CHOOSE (BENEFITS) --- */
.mr-bg-offwhite { background-color: #f8fafc; } /* খুব হালকা গ্রে */

.mr-why-img img {
    width: 100%;
    border-radius: var(--radius);
    height: 100%;
    object-fit: cover;
}

.mr-benefit-box {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-left: 4px solid var(--primary);
}

.mr-benefit-box h5 { margin: 0 0 5px 0; font-size: 1.1rem; color: var(--text-main); }
.mr-benefit-box p { margin: 0; font-size: 0.95rem; }

/* --- HOW WE WORK (Modern Light Layout) --- */
.mr-bg-soft-blue {
    background-color: #F0F9FF; /* বর্তমান সফট কালার */
}

.mr-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mr-process-card-modern {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius); /* আগের মতো রাউন্ড শেপ */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* সফট শ্যাডো */
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    text-align: left; /* টেক্সট বাম পাশে আগের ডিজাইনের মতো */
    overflow: hidden;
}

.mr-process-card-modern:hover {
    transform: translateY(-10px); /* হোভার করলে উপরে উঠবে */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-number-modern {
    font-size: 4rem; /* বড় নম্বর */
    font-weight: 800;
    color: rgba(0, 123, 255, 0.08); /* ব্র্যান্ড কালারের খুব হালকা ভার্সন */
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.mr-process-card-modern h3 {
    margin-top: 20px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    color: var(--primary-dark);
}

.mr-process-card-modern p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .mr-service-hero-clean { padding: 60px 0; }
    .mr-hero-text { padding-right: 0; text-align: center; margin-bottom: 30px; }
}    




/* --- ABOUT PAGE STYLES --- */

/* Centered Hero */
.mr-page-hero-center {
    padding: 100px 0 60px 0;
    background: var(--white);
}

.mission-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    max-width: 800px;
    margin: 20px auto 0 auto;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

/* About Content */
.mr-about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.highlight-text {
    color: var(--primary-dark);
    font-weight: 700;
    background: rgba(0, 123, 255, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
}

.mr-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary);
}

.mr-about-image img {
    width: 100%;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

/* Expertise Grid */
.mr-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mr-expertise-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.mr-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

/* --- FOUNDER SECTION --- */
.mr-founder-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-large);
}

.mr-founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mr-founder-info h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.mr-founder-info h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.8;
}

.founder-sign {
    margin-top: 30px;
    font-family: cursive; /* সিগনেচার লুকের জন্য */
    font-size: 1.5rem;
    color: var(--primary);
}

/* --- CONTACT PAGE STYLES --- */

.mr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* বামে ইনফো, ডানে ফর্ম */
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Info */
.mr-contact-info h2 { font-size: 2rem; margin-bottom: 15px; }
.mr-contact-info p { color: var(--text-light); margin-bottom: 30px; }

.info-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-box strong {
    display: block;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-item-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item-box a {
    text-decoration: none;
    color: var(--text-light);
    transition: 0.3s;
}

.contact-item-box a:hover { color: var(--primary); }

.mr-social-row {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: bold;
    color: var(--text-main);
}

.mr-social-row a {
    width: 35px; height: 35px;
    background: var(--text-main);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.mr-social-row a:hover { background: var(--primary); transform: translateY(-3px); }

/* Right Column: Form */
.mr-contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-large);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}

.mr-custom-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.mr-custom-form input,
.mr-custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: 0.3s;
    box-sizing: border-box; /* ইম্পর্ট্যান্ট লেআউট ফিক্স */
}

.mr-custom-form input:focus,
.mr-custom-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { width: 100%; }

/* Alerts */
.mr-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.mr-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mr-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 991px) {
    .mr-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mr-contact-form-box {
        padding: 30px;
    }
    .form-group-row {
        grid-template-columns: 1fr; /* মোবাইলে সিঙ্গেল কলাম */
        gap: 0;
    }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .mr-founder-box {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .mr-founder-img {
        max-width: 400px;
        margin: 0 auto;
    }
    .mission-text {
        font-size: 1.2rem;
    }
}

    
/* --- FOOTER STYLES --- */
.mr-footer {
    background-color: #0f172a; /* ডার্ক নেভি কালার */
    color: #cbd5e1; /* টেক্সট কালার (হালকা গ্রে) */
    padding: 80px 0 0 0;
    font-size: 0.95rem;
    margin-top: auto;
}

.mr-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; /* কলামের সাইজ */
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mr-footer-col h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.mr-footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Links Style */
.mr-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mr-footer-col ul li {
    margin-bottom: 12px;
}

.mr-footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.mr-footer-col ul li a:hover {
    color: var(--primary); /* ব্র্যান্ড কালার */
    transform: translateX(5px); /* হোভার করলে একটু ডানে সরবে */
}

/* Contact Info Style */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item .details {
    line-height: 1.6;
}

.contact-item strong {
    color: #fff;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Social Icons */
.mr-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.mr-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.3s;
}

.mr-social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Footer Bottom */
.mr-footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .mr-footer-top {
        grid-template-columns: 1fr 1fr; /* ট্যাবলেটে ২ কলাম */
    }
}

@media (max-width: 600px) {
    .mr-footer-top {
        grid-template-columns: 1fr; /* মোবাইলে ১ কলাম */
        gap: 30px;
    }
    .mr-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}