:root {
    --primary-color: #f1c40f; /* Premium Gold */
    --bg-dark: #0f1113; /* Deep Charcoal */
    --text-light: #ffffff;
    --glass-bg: rgba(15, 17, 19, 0.8);
}

html{
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
}


/* Stylish Logo Design */
.stylish-logo {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.stylish-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    margin-left: 5px;
    position: relative;
}



/* Sticky Navbar with Glassmorphism */
.custom-navbar {
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar.scrolled {
    padding: 12px 0;
    background: var(--glass-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nav Links */
.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Language Switcher */
.lang-switcher a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-weight: 600;
}
.lang-switcher a.active {
    color: var(--primary-color);
}

/* Hire Me Button */
.btn-hire {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}
.btn-hire:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

/* Mobile Toggle Icon */
.menu-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    position: relative;
}
.menu-icon::before, .menu-icon::after {
    content: '';
    width: 25px;
    height: 2px;
    background: var(--text-light);
    position: absolute;
    left: 0;
}
.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

/* Off-canvas Customization */
/* Custom Off-canvas Styles */
.custom-offcanvas {
    width: 350px !important;
    background-color: #0a0c0e !important; /* Slightly darker than body */
    border-left: 1px solid rgba(241, 196, 15, 0.1) !important;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1) !important; /* Ultra Smooth Curve */
}

/* Blur backdrop when menu is open */
.offcanvas-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

/* Off-canvas Navigation Links */
.offcanvas-nav .nav-link {
    font-size: 1.2rem !important;
    font-weight: 800;
    color: white !important;
    padding: 10px 0 !important;
    transition: 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

/* Animation when Off-canvas opens */
.custom-offcanvas.show .offcanvas-nav .nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Menu Items */
.custom-offcanvas.show .nav-item:nth-child(1) .nav-link { transition-delay: 0.2s; }
.custom-offcanvas.show .nav-item:nth-child(2) .nav-link { transition-delay: 0.3s; }
.custom-offcanvas.show .nav-item:nth-child(3) .nav-link { transition-delay: 0.4s; }
.custom-offcanvas.show .nav-item:nth-child(4) .nav-link { transition-delay: 0.5s; }
.custom-offcanvas.show .nav-item:nth-child(5) .nav-link { transition-delay: 0.6s; }

.offcanvas-nav .nav-link:hover {
    color: var(--primary-color) !important;
    padding-left: 15px !important;
}

/* Footer Section in Menu */
.mobile-lang-switch a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
}
.mobile-lang-switch .active { color: var(--primary-color); }

.offcanvas-email {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-color);
}

.social-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}



/* Hero Section Base */
.hero-section {
    min-height: 100vh;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

/* Text Styling */
.badge-experience {
    background: rgba(241, 196, 15, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 2.6rem); /* Responsive font size */
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

.text-code {
    color: var(--primary-color);
    font-family: 'Courier New', Courier, monospace;
}

.text-wp {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 700px;
    text-align: justify;
}

/* Button Styling */
.btn-main {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 4px; /* Minimalist Square-ish Look */
    font-weight: 700;
    transition: 0.4s;
    border: none;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.2);
    background: #fff;
    color:#1e1e1e;
}

.btn-link-custom {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border: 1px solid #1e1e1e;
}
.btn-link-custom i{
    margin-left: 10px;
}

.btn-link-custom:hover {
    color: var(--primary-color);
}

/* Hero Visual & Image */
.hero-visual {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.image-mask {
    width: 330px;
    height: 420px;
    background: #1a1d20;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(100%);*/
    transition: 0.5s;
}

.hero-visual:hover .main-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.code-card {
    bottom: 10%;
    left: -60px;
    min-width: 180px;
}

.project-card {
    top: 10%;
    right: -80px;
    background: var(--primary-color);
    color: var(--bg-dark);
}

.card-dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin-right: 4px;
}

.c-1 { color: #f1c40f; }
.c-2 { color: #5dade2; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Down Icon */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, var(--primary-color));
}



/* Trust Strip Styling */
.trust-strip {
    background-color: #0d0f11; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    padding: 20px 10px;
    transition: 0.3s ease;
}

.stat-number {
    font-variant-numeric: tabular-nums; /* এতে সংখ্যা পরিবর্তনের সময় উইডথ ফিক্সড থাকে */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color); /* Your Primary Gold/Yellow Color */
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 8px;
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

}




.mb-40{margin-bottom: 40px;}
.mb-80{margin-bottom: 80px;}
.pt-100{padding-top: 100px;}
.pb-40{padding-bottom: 40px;}
.pb-80{padding-bottom: 80px;}
.py-80 { padding: 80px 0; }
.py-100 { padding: 100px 0; }
.mb-100 { margin-bottom: 80px; }
.ls-2 { letter-spacing: 3px; }
.text-gold { color: var(--primary-color); }

.work-item {
    position: relative;
    text-align: center;
}

/* Image with Gray Effect */
.work-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}

.gray-img {
    filter: grayscale(100%) brightness(0.7); /* Default Gray */
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Link Overlay */
.work-overlay-link {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 3;
}

.view-text {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.4s ease;
    background: #f1c40f;
    font-weight: 700;

}
.view-text:hover{
    letter-spacing: 1px;
}

/* Overlapping Badge */
.work-badge {
    position: relative;
    background: #16181b; 
    padding: 25px 30px;
    width: 85%;
    margin: -45px auto 0;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
}

.cat-tag {
    color: var(--primary-color);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.work-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* Interactions */
.work-item:hover .gray-img {
    filter: grayscale(0%) brightness(0.5); /* Color on hover */
    transform: scale(1.08);
}

.work-item:hover .view-text {
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary-color);
}

.work-item:hover .work-badge {
    background: #1c1f23;
    transform: translateY(-5px);
}

.work-item:hover .work-title {
    color: var(--primary-color);
}



/* Creative Button Styling - View All Projects */
.btn-creative {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    margin-top: 40px; /* উপরের গ্রিড থেকে গ্যাপ */
}

.btn-creative span {
    position: relative;
    z-index: 2; /* টেক্সট যাতে লেয়ারের উপরে থাকে */
}

.btn-icon {
    margin-left: 15px;
    width: 32px;
    height: 32px;
    background: var(--primary-color); /* আপনার গোল্ডেন কালার */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    transform: rotate(-45deg); /
}

/* Hover Effect - Left to Right Fill */
.btn-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
}

.btn-creative:hover {
    color: #000;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-creative:hover::before {
    left: 0;
}

.btn-creative:hover .btn-icon {
    background: #000;
    color: var(--primary-color);
    transform: rotate(-45deg); /* অ্যারোটি হোভার করলে বেঁকে যাবে */
}




/* Services Section Layout */
.services-section {
    background-color: #08090a; /* Darker background to separate from Portfolio */
    padding: 100px 0;
}

.ls-3 { letter-spacing: 3px; }

/* Service Card Base */
.service-card {
    background: #111315;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Floating Icon Styling */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(241, 196, 15, 0.05); /* Slight gold tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: 0.4s ease;
}

.service-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Tech Tags (Tech Stack) */
.tech-tags span {
    font-size: 11px;
    color: var(--primary-color);
    border: 1px solid rgba(241, 196, 15, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- HOVER EFFECTS --- */
.service-card:hover {
    background: #16181b;
    transform: translateY(-10px);
    border-color: rgba(241, 196, 15, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card { padding: 20px 20px; }
    .display-5 { font-size: 2.2rem; }
    .custom-navbar{
        padding: 6px;
    }
    .code-card{
        left: 50px;
        bottom: 4%;
    }
    .image-mask{
        height: 420px;
        width: 310px;
    }
    .scroll-down{
        display: none;
    }
    .tech-tags span{
        font-size: 10px;
    }
    .supporting-badge{
        padding: 5px 10px!important;
        font-size: 11px!important;
    }
}

/* Styling the expanded text */
.lead-text {
    font-size: 16px; /* standard reading size */
    line-height: 1.8; /* improved readability */
    color: #a0a0a0 !important;
    font-weight: 400;
    text-align: justify;
}

/* Optional: To make it look more professional on larger screens */
@media (min-width: 992px) {
    .lead-text {
        padding-left: 30px;
        border-left: 1px solid rgba(255, 255, 255, 0.1); /* Left border for a premium feel */
    }
}



.testimonial-slider-section {
    background-color: #0e1012; /* Distinct Dark Background */
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Background Huge Quotation Mark */
.bg-quote-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 400px;
    color: rgba(241, 196, 15, 0.03); /* Very subtle gold tint */
    z-index: 0;
    pointer-events: none;
}

.testimonial-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.client-review-text {
    font-size: 1.5rem; /* Big and Bold Review */
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: -0.5px;
    font-family: cursive;
}

.client-info-box h5 {
    font-size: 20px;
    font-weight: 700;
}

/* Swiper Pagination Dot Color */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .client-review-text { font-size: 1.4rem; }
    .bg-quote-icon { font-size: 200px; }
}




/* Custom Navigation Styling */
.custom-nav {
    color: var(--primary-color) !important; /* Your Gold Color */
    transition: 0.3s ease;
}

.custom-nav:after {
    font-size: 24px !important; /* Adjust Arrow Size */
    font-weight: bold;
}

.custom-nav:hover {
    color: #fff !important;
    transform: scale(1.1);
}

/* Optional: Move arrows slightly outside on larger screens */
@media (min-width: 1200px) {
    .swiper-button-next { right: -50px; }
    .swiper-button-prev { left: -50px; }
}

@media (max-width: 1199px) {
    .custom-nav { display: none; } /* Hide arrows on small screens if they overlap text */
}







.process-section {
    position: relative;
    overflow: hidden;
}

.process-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
    height: 100%;
}

.process-card:hover {
    background: rgba(241, 196, 15, 0.03);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(241, 196, 15, 0.05); /* Very light gold */
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #16181b;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 30px;
    color: var(--primary-color);
    border: 2px dashed var(--primary-color);
    transition: 0.4s;
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    color: #000;
    border-style: solid;
    transform: rotateY(180deg);
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
}






/* Color & Text Settings */
:root {
    --footer-text: #bdc3c7; /* Clear Light Gray (Not Muted) */
    --footer-white: #ffffff;
}

.text-gold { color: #f1c40f !important; }

/* Paragraph & Common Text */
.footer-para {
    color: var(--footer-text);
    line-height: 1.8;
    font-size: 15px;
}

.footer-heading {
    color: var(--footer-white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

/* CTA Buttons */
.footer-cta-btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
    font-size: 16px;
}

.footer-cta-btn.wa { background: #25D366; color: #000; }
.footer-cta-btn.fi { background: #1dbf73; color: #fff; }
.footer-cta-btn.up { background: #6fda44; color: #000; }

.footer-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

/* Social Icons */
.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-white);
    border-radius: 8px;
    margin-right: 12px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background: #f1c40f;
    color: #000;
    transform: scale(1.1);
}

/* Navigation Links */
.footer-menu li { margin-bottom: 16px; }
.footer-menu li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-menu li a:hover {
    color: #f1c40f;
    padding-left: 8px;
}

/* Contact Info Area */
.contact-icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.footer-link-text {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}
.footer-link-text:hover { color: #f1c40f; }

/* Status Badge */
.status-badge-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(37, 211, 102, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

/* মেইন ডট এবং ব্লিংকিং এনিমেশন */
.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #25D366 !important; /* উজ্জ্বল সবুজ */
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 5px #25D366; /* হালকা গ্লো */
}

/* ডটের চারপাশে পালস ইফেক্ট */
.status-dot::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-border 1.5s linear infinite;
    opacity: 0;
}

/* এনিমেশন কি-ফ্রেম */
@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.status-text {
    color: #25D366;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dividers & Bottom */
.footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright-text {
    color: #888;
    font-size: 14px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .footer-cta-top { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 50px; }
    .footer-cta-btn{
        padding: 8px 20px;
    }
}







/* Mobile Responsive Style (Only for Mobile Devices) */
@media (max-width: 767px) {
  .badge-experience{
    font-size: 0.6rem;
  }
  .hero-title{
    font-size: 1.8rem;
    line-height: 1.4;
  }
    
}





/* Swiper Container */
.workSwiper { padding: 40px 0; }

.img-scroll-wrapper {
    height: 350px; /* ইমেজের বক্সের উচ্চতা */
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.scroll-img {
    width: 100%;
    transition: transform 6s cubic-bezier(0.25, 0.1, 0.25, 1); /* দীর্ঘ সময় নিয়ে স্ক্রল হবে */
}

/* হোভার করলে ইমেজ স্ক্রল হবে */
.work-item:hover .scroll-img {
    transform: translateY(calc(-100% + 350px)); /* নিচে স্ক্রল হবে */
}

/* আগের ডিজাইন ঠিক রাখতে এগুলো ব্যবহার করুন */
.work-img-box {
    filter: grayscale(100%);
    transition: 0.4s;
}
.work-item:hover .work-img-box { filter: grayscale(0%); }



/* বাটনগুলোকে পজিশন করা এবং ডিজাইন করা */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(241, 196, 15, 0.1) !important; /* হালকা গোল্ডেন ব্যাকগ্রাউন্ড */
    color: #f1c40f !important; /* গোল্ডেন আইকন কালার */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #f1c40f !important;
    color: #000 !important;
}

/* আইকনের সাইজ ঠিক করা */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: 800 !important;
}

.workSwiper .view-text{
    background: #f1c40f;
    font-weight: 700;
}

/* Pagination Dots Styling */
.swiper-pagination-bullet {
    background: #fff !important; /* সাধারণ ডটের রঙ */
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: #f1c40f !important; /* অ্যাক্টিভ ডটের গোল্ডেন রঙ */
    opacity: 1 !important;
}



.breadcrumb-section {
    padding: 140px 0 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/breadcrumb-bg.jpg'); /* একটি ব্যাকগ্রাউন্ড ইমেজ দিন */
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #f1c40f; /* আপনার থিম কালার */
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #f1c40f;
}

.breadcrumb-item.active {
    color: #f1c40f;
}

/* রেসপন্সিভনেস */
@media (max-width: 768px) {
    .breadcrumb-section { padding: 120px 0 40px 0; }
    .breadcrumb-title { font-size: 2rem; }
}
/* ব্রেডক্রাম্ব আইটেমের মধ্যকার স্ল্যাশ সাদা করার জন্য */
.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff !important;
    content: "/";
    padding-right: 0.5rem;
}





/* Supporting Services Section Styling */
.supporting-services-wrapper {
    background: rgba(255, 255, 255, 0.03); /* হালকা ট্রান্সপারেন্ট ব্যাকগ্রাউন্ড */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2); /* গোল্ডেন শেডের বর্ডার */
}

.supporting-badge {
    background: transparent;
    border: 1px solid #d4af37; /* গোল্ডেন বর্ডার */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px; /* রাউন্ডেড কোণা */
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* হোভার ইফেক্ট */
.supporting-badge:hover {
    background: var(--primary-color); /* গোল্ডেন ব্যাকগ্রাউন্ড */
    color: #2e2e2e; /* টেক্সট কালার কালো */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


@media (max-width: 768px) {
    .supporting-services-wrapper {
        margin-left: 10px !important;
        margin-right: 10px !important;
        width: calc(100% - 20px) !important;
    }
}



.process-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: 0.3s;
}

.process-card:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 10px;
    line-height: 1;
}

.process-card:hover .step-number {
    color: #d4af37;
}
.process-card p{
    font-size: 16px;
}
.process-card h5{
    font-weight: 700;
}
/* 
/* রেসপন্সিভ মার্জিন */
@media (max-width: 768px) {
    .work-process { padding: 50px 20px; }
}




.about-img-box {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #d4af37;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #000;
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.rounded-4 {
    border-radius: 1rem !important;
}

/* রেসপন্সিভনেস */
@media (max-width: 992px) {
    .experience-badge { bottom: 0; }
}



/* ফন্ট বোল্ড ও প্রফেশনাল করার জন্য */
.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 500 !important; }

/* Val Cards */
.val-card {
    padding: 30px;
    background: #111; /* গাঢ় ব্যাকগ্রাউন্ড */
    border: 1px solid #222;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
}
.val-card i { font-size: 30px; color: #d4af37; margin-bottom: 20px; }
.val-card h5 { color: #fff; margin: 0; }
.val-card:hover { border-color: #d4af37; background: #1a1a1a; transform: translateY(-5px); }

/* Tech Grid */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.tech-badge {
    padding: 12px 25px;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    background: #111;
}
.tech-badge:hover { 
    background: #d4af37; 
    color: #000; 
    border-color: #d4af37; 
    transform: scale(1.05);
}

/* Personal Touch */
.personal-note {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.3s;
}

.personal-note:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.italic {
    font-style: italic;
    line-height: 1.8;
    max-width: 800px; /* লেখাটিকে খুব বেশি ছড়ানো থেকে বাঁচাবে */
    margin: 0 auto;
}

/* কোট আইকন এবং টেক্সট সেন্টারিং */
.text-center {
    text-align: center;
}
.italic { font-style: italic; line-height: 1.6; }




/* কাস্টম ইনপুট ডিজাইন */
.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.08); /* হালকা ট্রান্সপারেন্ট */
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 18px;
    color: #ffffff;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* প্লেসহোল্ডার সাদা করা */
.form-control-custom::placeholder {
    color: #ffffff !important;
    opacity: 0.8;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #d4af37;
    outline: none;
    transform: translateY(-2px);
}

/* বাটন ডিজাইন */
.btn-gold-submit {
    background: #d4af37;
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: 0.3s;
}
.btn-gold-submit:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ইনফো লিস্ট ডিজাইন */
.info-item {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.info-item i { 
    margin-right: 15px; 
    font-size: 1.4rem;
}


.popup-overlay {
    display: none; /* ডিফল্টভাবে লুকানো */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.popup-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #d4af37;
    max-width: 400px;
}
.warning-icon {
    width: 80px;
    height: 80px;
    background: #ffcc00; /* সতর্কতার জন্য গোল্ডেন ইয়েলো */
    color: #000;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}



.whatsapp-fixed-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: blink-pulse 2s infinite;
}

/* বাটন ব্লিংক বা পালস ইফেক্ট */
@keyframes blink-pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-fixed-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}



/*=========================================
    WHY WORK WITH ME
=========================================*/

.why-work{
    padding:100px 0 0 0;
}

.why-work-wrapper{
    background: linear-gradient(
        90deg,
        rgba(15,17,19,.98) 0%,
        rgba(15,17,19,.92) 42%,
        rgba(15,17,19,.40) 70%,
        rgba(15,17,19,.15) 100%
    );
    overflow: hidden;
    position:relative;
    padding: 40px 0;
}

.why-work-wrapper::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(15,17,19,.95) 0%,
        rgba(15,17,19,.75) 35%,
        rgba(15,17,19,.20) 65%,
        rgba(15,17,19,0) 100%
    );
    pointer-events:none;
}

.why-work .row{
    position:relative;
    z-index:2;
}

.section-tag{
    display:inline-block;
    color:var(--primary-color);
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.why-title{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:0;
}

.why-title span{
    display:block;
}

.why-description{
    color:#c8c8c8;
    font-size:17px;
    line-height:1.9;
    max-width:600px;
    text-align: justify;
}

/* Buttons */

.btn-primary-custom{
    background:var(--primary-color);
    color:#111;
    border-radius:10px;
    padding:14px 28px;
    font-weight:700;
    transition:.35s;
}

.btn-primary-custom:hover{
    background:#ffd54d;
    color:#111;
    transform:translateY(-3px);
}

.btn-outline-custom{
    border:1px solid rgba(241,196,15,.65);
    color:var(--primary-color);
    border-radius:10px;
    padding:14px 28px;
    font-weight:700;
    transition:.35s;
}

.btn-outline-custom:hover{
    background:var(--primary-color);
    color:#111;
    transform:translateY(-3px);
}

/* Image */

.why-image{
    text-align:right;
}

.why-image img{
    width:100%;
    max-width:620px;
    border-radius:18px;
    display:block;
    margin-left:auto;
    object-fit:cover;
}

/* Responsive */

@media (max-width:991px){

    .why-work-wrapper{
        padding:45px 35px;
    }

    .why-image{
        margin-top:45px;
        text-align:center;
    }

    .why-image img{
        margin:auto;
    }

    .why-title{
        font-size:40px;
    }

}

@media (max-width:767px){

    .why-work{
        padding:70px 0;
    }

    .why-work-wrapper{
        padding:35px 25px;
        border-radius:18px;
    }

    .why-title{
        font-size:32px;
    }

    .why-description{
        font-size:16px;
    }

    .btn-primary-custom,
    .btn-outline-custom{
        width:100%;
        text-align:center;
    }

}

/*=========================
 WHY WORK CARD
=========================*/

.why-card{
    background:#15181b;
    border:1px solid rgba(255,255,255,.05);
    border-radius:14px;
    padding:22px 18px;
    height:100%;
    transition:.3s ease;
}

.why-card:hover{
    transform:translateY(-5px);
    border-color:rgba(241,196,15,.35);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.why-icon{
    width:42px;
    height:42px;
    background:rgba(241,196,15,.08);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
    color:var(--primary-color);
    font-size:17px;
    transition:.3s;
}

.why-card:hover .why-icon{
    background:var(--primary-color);
    color:#111;
}

.why-card h6{
    color:#fff;
    font-size:17px;
    font-weight:700;
    margin-bottom:8px;
}

.why-card p{
    color:#9ea4ac;
    font-size:13px;
    line-height:1.6;
    margin:0;
}

/* Tablet */

@media (max-width:991px){

    .why-card{
        padding:18px 15px;
    }

    .why-icon{
        width:38px;
        height:38px;
        font-size:15px;
        margin-bottom:12px;
    }

    .why-card h6{
        font-size:15px;
    }

    .why-card p{
        font-size:12px;
    }

}

/* Mobile */

@media (max-width:576px){

    .why-card{
        padding:16px 14px;
        border-radius:12px;
    }

    .why-icon{
        width:34px;
        height:34px;
        font-size:14px;
        border-radius:8px;
        margin-bottom:10px;
    }

    .why-card h6{
        font-size:14px;
        margin-bottom:6px;
    }

    .why-card p{
        font-size:11px;
        line-height:1.5;
    }

}




/*=====================================
        ABOUT HERO SECTION
======================================*/

.about-hero{
    padding:100px 0 0 0;
}

.about-image{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: #17191d;
    transition: .45s ease;
}

.about-image img{
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: transform .45s ease, filter .45s ease;
}
/* Golden Glow */
.about-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
        rgba(241,196,15,.18),
        transparent 55%);
    opacity: 0;
    transition: .45s;
    pointer-events: none;
    z-index: 1;
}

/* Shine Effect */
.about-image::after{
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        115deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: .8s;
    z-index: 2;
}

/* Hover */
.about-image:hover{
    transform: translateY(-6px);
    border-color: rgba(241,196,15,.45);
    box-shadow:
        0 18px 45px rgba(0,0,0,.45),
        0 0 0 1px rgba(241,196,15,.08);
}

.about-image:hover img{
    transform: scale(1.04);
    filter: brightness(1.05);
}

.about-image:hover::before{
    opacity: 1;
}

.about-image:hover::after{
    left: 150%;
}


.section-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    color:var(--primary-color);
    font-weight:700;
    text-transform:uppercase;
}

.about-title{
    font-size:56px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
    color:#fff;
}

.about-title span{
    color:var(--primary-color);
}

.about-description{
    color:#b8b8b8;
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
    text-align: justify;
}

.about-description strong{
    color:#fff;
    font-weight:700;
}

.about-stat{
    background:#15181b;
    border:1px solid rgba(255,255,255,.05);
    border-radius:14px;
    padding:24px 20px;
    transition:.35s;
}

.about-stat:hover{
    border-color:rgba(241,196,15,.4);
    transform:translateY(-4px);
}

.about-stat h3{
    font-size:34px;
    color:var(--primary-color);
    font-weight:800;
    margin-bottom:6px;
}

.about-stat p{
    margin:0;
    color:#bdbdbd;
    font-size:14px;
}

/* Buttons */

.about-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.btn-primary-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:var(--primary-color);
    color:#111;

    padding:15px 30px;

    border-radius:12px;

    font-weight:700;
    text-decoration:none;
    transition:.35s;

}

.btn-primary-custom:hover{

    background:#ffd43b;
    color:#111;
    transform:translateY(-3px);

}

.btn-outline-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 30px;

    border:1px solid var(--primary-color);

    color:#fff;

    border-radius:12px;

    text-decoration:none;

    transition:.35s;

}

.btn-outline-custom:hover{

    background:var(--primary-color);
    color:#111;

}

/*==============================
        Responsive
===============================*/

@media(max-width:991px){

    .about-hero{

        padding:80px 0;

    }

    .about-title{

        font-size:42px;

        margin-top:20px;

    }

    .experience-badge{

        width:115px;
        height:115px;

    }

    .experience-badge h3{

        font-size:32px;

    }

}

@media(max-width:767px){

    .about-hero{

        padding:70px 0;

    }

    .about-title{

        font-size:34px;

    }

    .about-description{

        font-size:15px;
        line-height:1.8;

    }

    .experience-badge{

        width:95px;
        height:95px;

        right:15px;
        bottom:15px;

        border-radius:16px;

    }

    .experience-badge h3{

        font-size:28px;

    }

    .experience-badge span{

        font-size:11px;

    }

    .about-stat{

        padding:18px;

    }

    .about-stat h3{

        font-size:28px;

    }

    .about-buttons{

        flex-direction:column;

    }

    .btn-primary-custom,
    .btn-outline-custom{

        width:100%;

    }

}




/*======================================
 WHY CHOOSE ME
======================================*/

.mh-why-section{
    padding:100px 0 0 0;
    background:var(--bg-dark);
}

.mh-section-subtitle{
    display:inline-block;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.mh-section-title h2{
    color:#fff;
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.mh-section-title p{
    max-width:650px;
    margin:auto;
    color:#a8a8a8;
    line-height:1.8;
    font-size:16px;
}

/*========================
 CARD
========================*/

.mh-why-card{
    height:100%;
    background:#17191d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:35px 28px;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.mh-why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:var(--primary-color);
    transform:scaleX(0);
    transition:.4s;
}

.mh-why-card:hover::before{
    transform:scaleX(1);
}

.mh-why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(241,196,15,.35);
    box-shadow:
        0 20px 45px rgba(0,0,0,.35),
        0 0 20px rgba(241,196,15,.06);
}

/*========================
 ICON
========================*/

.mh-why-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:rgba(241,196,15,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;
}

.mh-why-icon i{
    font-size:28px;
    color:var(--primary-color);
}

.mh-why-card:hover .mh-why-icon{
    background:var(--primary-color);
    transform:rotate(-8deg);
}

.mh-why-card:hover .mh-why-icon i{
    color:#111;
}

/*========================
 TEXT
========================*/

.mh-why-card h5{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.mh-why-card p{
    color:#9d9d9d;
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/*========================
 Responsive
========================*/

@media(max-width:991px){

    .mh-why-section{
        padding:80px 0;
    }

    .mh-section-title h2{
        font-size:36px;
    }

}

@media(max-width:767px){

    .mh-why-section{
        padding:70px 0;
    }

    .mh-section-title h2{
        font-size:30px;
    }

    .mh-section-title p{
        font-size:15px;
    }

    .mh-why-card{
        padding:28px 22px;
    }

    .mh-why-icon{
        width:58px;
        height:58px;
    }

    .mh-why-icon i{
        font-size:24px;
    }

    .mh-why-card h5{
        font-size:20px;
    }

}




/*======================================
        TECHNOLOGIES SECTION
======================================*/

.mh-tech-section{
    padding:100px 0 0 0;
}

.mh-tech-heading{
    margin-bottom:60px;
}

.mh-tech-subtitle{
    display:inline-block;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.mh-tech-title{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.mh-tech-description{
    max-width:700px;
    margin:auto;
    color:#9fa6ad;
    font-size:16px;
    line-height:1.8;
}

/*=========================
    GROUP
=========================*/

.mh-tech-group{
    margin-bottom:50px;
}

.mh-tech-group:last-child{
    margin-bottom:0;
}

.mh-tech-group-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    padding-left:18px;
    border-left:3px solid var(--primary-color);
}

/*=========================
    GRID
=========================*/

.mh-tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

/*=========================
    CARD
=========================*/

.mh-tech-item{
    display:flex;
    align-items:center;
    gap:14px;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;

    padding:18px 20px;

    transition:.35s ease;
}

.mh-tech-item:hover{

    transform:translateY(-5px);

    border-color:rgba(241,196,15,.35);

    box-shadow:
        0 12px 30px rgba(0,0,0,.25);

}

/*=========================
    ICON
=========================*/

.mh-tech-item i{

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:rgba(241,196,15,.10);

    color:var(--primary-color);

    font-size:22px;

    flex-shrink:0;

    transition:.35s;

}

.mh-tech-item:hover i{

    background:var(--primary-color);

    color:#111;

    transform:rotate(-8deg);

}

/*=========================
    TEXT
=========================*/

.mh-tech-item span{

    color:#fff;

    font-size:15px;

    font-weight:600;

}

/*=========================
    Tablet
=========================*/

@media(max-width:991px){

    .mh-tech-section{
        padding:80px 0;
    }

    .mh-tech-title{
        font-size:36px;
    }

    .mh-tech-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/*=========================
    Mobile
=========================*/

/*=========================
    Mobile
=========================*/

@media(max-width:576px){

    .mh-tech-section{
        padding:70px 0;
    }

    .mh-tech-heading{
        margin-bottom:40px;
    }

    .mh-tech-title{
        font-size:30px;
    }

    .mh-tech-description{
        font-size:15px;
    }

    /* 2 Cards Per Row */
    .mh-tech-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .mh-tech-item{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:18px 10px;
        gap:10px;
        min-height:110px;
    }

    .mh-tech-item i{
        width:42px;
        height:42px;
        font-size:18px;
        margin:0;
    }

    .mh-tech-item span{
        font-size:13px;
        line-height:1.4;
    }

}


/*======================================
        PROFESSIONAL JOURNEY
======================================*/

.mh-exp-section{
    padding:100px 0 0 0;
}

.mh-exp-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.mh-exp-subtitle{
    display:inline-block;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.mh-exp-title{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.mh-exp-description{
    color:#9fa6ad;
    line-height:1.8;
    font-size:16px;
}

/*=========================
Timeline
=========================*/

.mh-exp-timeline{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.mh-exp-timeline::before{

    content:"";

    position:absolute;

    left:180px;

    top:0;
    bottom:0;

    width:2px;

    background:rgba(241,196,15,.25);

}

/*=========================
Item
=========================*/

.mh-exp-item{

    display:grid;

    grid-template-columns:180px 1fr;

    gap:35px;

    margin-bottom:45px;

    position:relative;

}

.mh-exp-item:last-child{
    margin-bottom:0;
}

/*=========================
Year
=========================*/

.mh-exp-year{

    color:var(--primary-color);

    font-size:15px;

    font-weight:700;

    position:relative;

    padding-right:30px;

}

.mh-exp-year::after{

    content:"";

    position:absolute;

    right:-8px;

    top:6px;

    width:16px;
    height:16px;

    border-radius:50%;

    background:var(--primary-color);

    border:4px solid var(--bg-dark);

    z-index:2;

}

/*=========================
Card
=========================*/

.mh-exp-card{

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:28px;

    transition:.35s;

}

.mh-exp-card:hover{

    transform:translateY(-6px);

    border-color:rgba(241,196,15,.35);

    box-shadow:
        0 18px 40px rgba(0,0,0,.30);

}

.mh-exp-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:6px;

}

.mh-exp-card h6{

    color:var(--primary-color);

    font-size:15px;

    font-weight:600;

    margin-bottom:18px;

}

.mh-exp-card p{

    color:#9fa6ad;

    line-height:1.8;

    margin:0;

    font-size:15px;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

    .mh-exp-title{

        font-size:36px;

    }

    .mh-exp-timeline::before{

        left:140px;

    }

    .mh-exp-item{

        grid-template-columns:140px 1fr;

        gap:28px;

    }

}

/*=========================
Mobile
=========================*/

@media(max-width:767px){

    .mh-exp-section{

        padding:70px 0;

    }

    .mh-exp-title{

        font-size:30px;

    }

    .mh-exp-description{

        font-size:15px;

    }

    .mh-exp-timeline::before{

        left:8px;

    }

    .mh-exp-item{

        grid-template-columns:1fr;

        gap:16px;

        padding-left:32px;

    }

    .mh-exp-year{

        padding-right:0;

        padding-left:10px;

        font-size:14px;

    }

    .mh-exp-year::after{

        left:-32px;

        right:auto;

    }

    .mh-exp-card{

        padding:22px;

    }

    .mh-exp-card h4{

        font-size:20px;

    }

}
/*======================================
        CALL TO ACTION
======================================*/

.mh-cta-section{
    padding:100px 0 100px 0;
}

.mh-cta-box{

    position:relative;

    padding:70px 50px;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    overflow:hidden;

}

/* Gold Glow */

.mh-cta-box::before{

    content:"";

    position:absolute;

    width:280px;
    height:280px;

    top:-140px;
    right:-140px;

    border-radius:50%;

    background:rgba(241,196,15,.08);

    filter:blur(10px);

}

.mh-cta-box::after{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-100px;
    bottom:-100px;

    border-radius:50%;

    background:rgba(241,196,15,.05);

}

/*=========================
TEXT
=========================*/

.mh-cta-subtitle{

    display:inline-block;

    color:var(--primary-color);

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:16px;

    position:relative;
    z-index:2;

}

.mh-cta-title{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:22px;

    position:relative;
    z-index:2;

}

.mh-cta-description{

    max-width:700px;

    margin:0 auto;

    color:#a5a5a5;

    font-size:17px;

    line-height:1.9;

    position:relative;
    z-index:2;

}

/*=========================
BUTTONS
=========================*/

.mh-cta-buttons{

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    position:relative;
    z-index:2;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .mh-cta-section{

        padding:80px 0;

    }

    .mh-cta-box{

        padding:60px 35px;

    }

    .mh-cta-title{

        font-size:38px;

    }

}

@media(max-width:767px){

    .mh-cta-section{

        padding:20px 0 70px 0;

    }

    .mh-cta-box{

        padding:45px 25px;

        border-radius:18px;

    }

    .mh-cta-title{

        font-size:30px;

    }

    .mh-cta-description{

        font-size:15px;

        line-height:1.8;

    }

    .mh-cta-buttons{

        flex-direction:column;

        gap:15px;

    }

    .mh-cta-buttons .btn{

        width:100%;

        justify-content:center;

    }

}




/*======================================
        CONTACT SECTION
======================================*/

.mh-contact-section{
    padding:100px 0;
}

/*=============================
LEFT SIDE
=============================*/

.mh-contact-info{
    height:100%;
}

.mh-section-tag{
    display:inline-block;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.mh-contact-title{
    font-size:44px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:22px;
}

.mh-contact-text{
    color:#9f9f9f;
    line-height:1.9;
    margin-bottom:40px;
}

/*=============================
CONTACT LIST
=============================*/

.mh-contact-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mh-contact-item{

    display:flex;
    align-items:center;
    gap:18px;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:16px;

    padding:18px;

    transition:.35s;

}

.mh-contact-item:hover{

    transform:translateY(-4px);

    border-color:rgba(241,196,15,.35);

}

.mh-contact-icon{

    width:58px;
    height:58px;

    border-radius:14px;

    background:rgba(241,196,15,.12);

    display:flex;
    justify-content:center;
    align-items:center;

    color:var(--primary-color);

    font-size:20px;

    flex-shrink:0;

}

.mh-contact-content span{

    display:block;

    font-size:13px;

    color:#9f9f9f;

    margin-bottom:4px;

}

.mh-contact-content h6{

    color:#fff;

    margin:0;

    font-size:17px;

    font-weight:600;

}

/*=============================
RIGHT SIDE
=============================*/

.mh-contact-form-box{

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:35px;

    height:100%;

}

/*=============================
FORM
=============================*/

.mh-contact-form-box .form-control,
.mh-contact-form-box .form-select{

    height:58px;

    background:#0f1113;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:12px;

    padding:0 18px;

    box-shadow:none;

}

.mh-contact-form-box textarea.form-control{

    height:auto;

    min-height:170px;

    padding:18px;

    resize:none;

}

.mh-contact-form-box .form-control::placeholder{

    color:#8c8c8c;

}

.mh-contact-form-box .form-control:focus,
.mh-contact-form-box .form-select:focus{

    border-color:var(--primary-color);

    background:#0f1113;

    color:#fff;

    box-shadow:none;

}

.mh-contact-form-box .form-select option{

    background:#17191d;

    color:#fff;

}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px){

    .mh-contact-section{

        padding:80px 0;

    }

    .mh-contact-title{

        font-size:36px;

    }

    .mh-contact-info{

        margin-bottom:15px;

    }

}

@media(max-width:767px){

    .mh-contact-section{

        padding:70px 0;

    }

    .mh-contact-title{

        font-size:30px;

    }

    .mh-contact-text{

        margin-bottom:30px;

    }

    .mh-contact-form-box{

        padding:25px;

    }

    .mh-contact-item{

        padding:15px;

    }

    .mh-contact-icon{

        width:50px;
        height:50px;

        font-size:17px;

    }

    .mh-contact-content h6{

        font-size:15px;

    }

}





/*======================================
        WHAT HAPPENS NEXT
======================================*/

.mh-next-step-section{
    padding:0px 0 100px 0;
}

.mh-next-tag{
    display:inline-block;
    color:var(--primary-color);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.mh-next-title{
    color:#fff;
    font-size:46px;
    font-weight:800;
    margin-bottom:18px;
}

.mh-next-desc{
    max-width:700px;
    margin:0 auto;
    color:#9fa6ad;
    font-size:16px;
    line-height:1.8;
}

/*=========================
CARD
=========================*/

.mh-next-card{

    position:relative;

    height:100%;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:35px 28px;

    text-align:center;

    transition:.35s ease;

    overflow:hidden;

}

.mh-next-card:hover{

    transform:translateY(-8px);

    border-color:rgba(241,196,15,.35);

    box-shadow:
        0 18px 40px rgba(0,0,0,.30);

}

.mh-next-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:var(--primary-color);

    transform:scaleX(0);

    transition:.35s;

}

.mh-next-card:hover::before{

    transform:scaleX(1);

}

/*=========================
STEP NUMBER
=========================*/

.mh-next-number{

    position:absolute;

    top:18px;
    right:22px;

    font-size:42px;

    font-weight:800;

    color:rgba(255,255,255,.05);

    line-height:1;

}

/*=========================
ICON
=========================*/

.mh-next-icon{

    width:70px;
    height:70px;

    margin:0 auto 25px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(241,196,15,.10);

    transition:.35s;

}

.mh-next-icon i{

    color:var(--primary-color);

    font-size:28px;

}

.mh-next-card:hover .mh-next-icon{

    background:var(--primary-color);

    transform:rotate(-8deg);

}

.mh-next-card:hover .mh-next-icon i{

    color:#111;

}

/*=========================
TEXT
=========================*/

.mh-next-card h4{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.mh-next-card p{

    color:#9fa6ad;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .mh-next-step-section{
        padding:80px 0;
    }

    .mh-next-title{
        font-size:36px;
    }

}

@media(max-width:767px){

    .mh-next-step-section{
        padding:0px 0 70px 0;
    }

    .mh-next-title{
        font-size:30px;
    }

    .mh-next-desc{
        font-size:15px;
    }

    .mh-next-card{
        padding:30px 22px;
    }

    .mh-next-number{
        font-size:34px;
        top:16px;
        right:18px;
    }

    .mh-next-icon{
        width:60px;
        height:60px;
        margin-bottom:20px;
    }

    .mh-next-icon i{
        font-size:24px;
    }

    .mh-next-card h4{
        font-size:20px;
    }

}

@media(max-width:767px){

    .mh-next-card{
        padding:24px 18px;
    }

    .mh-next-card p{
        font-size:14px;
        line-height:1.7;
    }

}



/*======================================
        SERVICES INTRO
======================================*/

.mh-services-intro{
    padding:100px 0 0 0;
}

/*=========================
LEFT
=========================*/

.mh-services-tag{

    display:inline-block;

    color:var(--primary-color);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.mh-services-title{

    font-size:48px;

    font-weight:800;

    line-height:1.15;

    color:#fff;

    margin-bottom:24px;

}

.mh-services-title span{

    color:var(--primary-color);

}

.mh-services-text{

    color:#9fa6ad;

    line-height:1.9;

    font-size:16px;

    max-width:560px;

}

/*=========================
RIGHT
=========================*/

.mh-service-highlight{

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:28px 22px;

    text-align:center;

    height:100%;

    transition:.35s ease;

}

.mh-service-highlight:hover{

    transform:translateY(-6px);

    border-color:rgba(241,196,15,.35);

    box-shadow:0 18px 35px rgba(0,0,0,.25);

}

.mh-service-highlight i{

    width:62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 18px;

    border-radius:16px;

    background:rgba(241,196,15,.10);

    color:var(--primary-color);

    font-size:22px;

    transition:.35s;

}

.mh-service-highlight:hover i{

    background:var(--primary-color);

    color:#111;

    transform:rotate(-8deg);

}

.mh-service-highlight h5{

    color:#fff;

    font-size:18px;

    font-weight:700;

    margin:0;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .mh-services-intro{

        padding:80px 0;

    }

    .mh-services-title{

        font-size:38px;

    }

}

@media(max-width:767px){

    .mh-services-intro{

        padding:70px 0;

    }

    .mh-services-title{

        font-size:30px;

    }

    .mh-services-text{

        font-size:15px;

        margin-bottom:10px;

    }

    .mh-service-highlight{

        padding:22px 16px;

    }

    .mh-service-highlight i{

        width:54px;

        height:54px;

        font-size:18px;

        margin-bottom:15px;

    }

    .mh-service-highlight h5{

        font-size:15px;

    }

}




/*======================================
        SERVICES LIST
======================================*/

.mh-service-list-section{
    padding:100px 0 0 0;
}

/*=========================
CARD
=========================*/

.mh-service-card{

    display:flex;
    align-items:flex-start;
    gap:22px;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:28px;

    height:100%;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.mh-service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(241,196,15,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.30);

}

.mh-service-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:4px;
    height:0;

    background:var(--primary-color);

    transition:.35s;

}

.mh-service-card:hover::before{

    height:100%;

}

/*=========================
ICON
=========================*/

.mh-service-card-icon{

    width:70px;
    height:70px;

    min-width:70px;

    border-radius:18px;

    background:rgba(241,196,15,.10);

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.35s;

}

.mh-service-card-icon i{

    color:var(--primary-color);

    font-size:26px;

}

.mh-service-card:hover .mh-service-card-icon{

    background:var(--primary-color);

    transform:rotate(-8deg);

}

.mh-service-card:hover .mh-service-card-icon i{

    color:#111;

}

/*=========================
CONTENT
=========================*/

.mh-service-card-content{

    flex:1;

}

.mh-service-card-content h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:14px;

}

.mh-service-card-content p{

    color:#9fa6ad;

    line-height:1.8;

    margin-bottom:18px;

    font-size:15px;

}

/*=========================
TECH TAGS
=========================*/

.mh-service-tech{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.mh-service-tech span{

    background:rgba(255,255,255,.05);

    color:#d7d7d7;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:6px 14px;

    font-size:13px;

    transition:.3s;

}

.mh-service-card:hover .mh-service-tech span{

    border-color:rgba(241,196,15,.30);

}

/*=========================
ARROW
=========================*/

.mh-service-arrow{

    align-self:center;

    color:#666;

    font-size:20px;

    transition:.35s;

}

.mh-service-card:hover .mh-service-arrow{

    color:var(--primary-color);

    transform:translateX(8px);

}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

    .mh-service-list-section{

        padding:80px 0;

    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:767px){

    .mh-service-list-section{

        padding:70px 0;

    }

    .mh-service-card{

        flex-direction:column;

        gap:18px;

        padding:24px;

    }

    .mh-service-card-icon{

        width:60px;
        height:60px;
        min-width:60px;

    }

    .mh-service-card-icon i{

        font-size:22px;

    }

    .mh-service-card-content h4{

        font-size:20px;

    }

    .mh-service-card-content p{

        font-size:14px;

    }

    .mh-service-arrow{

        display:none;

    }

    .mh-service-tech{

        gap:8px;

    }

    .mh-service-tech span{

        font-size:12px;

        padding:5px 12px;

    }

}

/*======================================
        DEVELOPMENT PROCESS
======================================*/

.mh-process-section{
    padding:100px 0;
}

.mh-process-card{

    position:relative;

    height:100%;

    text-align:center;

    background:#17191d;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:40px 28px 35px;

    transition:.35s ease;

    overflow:hidden;

}

.mh-process-card:hover{

    transform:translateY(-8px);

    border-color:rgba(241,196,15,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.28);

}

.mh-process-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--primary-color);

    transform:scaleX(0);

    transition:.35s;

}

.mh-process-card:hover::before{

    transform:scaleX(1);

}

/*=========================
STEP NUMBER
=========================*/

.mh-process-number{

    position:absolute;

    top:18px;
    right:22px;

    font-size:40px;

    font-weight:800;

    color:rgba(255,255,255,.05);

    line-height:1;

}

/*=========================
ICON
=========================*/

.mh-process-card i{

    width:72px;
    height:72px;

    margin-bottom:25px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(241,196,15,.10);

    color:var(--primary-color);

    font-size:28px;

    transition:.35s;

}

.mh-process-card:hover i{

    background:var(--primary-color);

    color:#111;

    transform:rotate(-8deg);

}

/*=========================
TEXT
=========================*/

.mh-process-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:16px;

}

.mh-process-card p{

    color:#9fa6ad;

    font-size:15px;

    line-height:1.8;

    margin:0;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .mh-process-section{

        padding:80px 0;

    }

}

@media(max-width:767px){

    .mh-process-section{

        padding:70px 0;

    }

    .mh-process-card{

        padding:32px 22px;

    }

    .mh-process-number{

        font-size:32px;

        top:16px;
        right:18px;

    }

    .mh-process-card i{

        width:60px;
        height:60px;

        font-size:22px;

        margin-bottom:20px;

    }

    .mh-process-card h4{

        font-size:20px;

    }

    .mh-process-card p{

        font-size:14px;

        line-height:1.7;

    }

}








/* ==========================================
   SUCCESS POPUP STYLES (Dark & Gold Theme)
   ========================================== */

/* পপআপ ব্যাকড্রপ / ব্যাকগ্রাউন্ড ওভারলে */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.8); /* ডার্ক ট্রান্সপারেন্ট ওভারলে */
    backdrop-filter: blur(8px); /* ব্যাকগ্রাউন্ড ব্লার ইফেক্ট */
    display: none; /* JS দিয়ে স্ক্রিপ্ট চালানোর সময় flex হবে */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* পপআপ দৃশ্যমান করার ক্লাস (JS ব্যাকআপের জন্য) */
.success-popup.active {
    display: flex !important;
    opacity: 1;
}

/* মূল পপআপ বক্স */
.popup-box {
    background: #16181c; /* আপনার ওয়েবসাইটের কার্ড কালার */
    border: 1px solid rgba(255, 204, 0, 0.25); /* হালকা গোল্ডেন বর্ডার */
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 20px rgba(255, 193, 7, 0.1); /* হালকা গোল্ডেন গ্লো */
    transform: translateY(20px) scale(0.95);
    animation: popupAnimation 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* পপআপের আইকন কনটেইনার */
.popup-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107, #e0a800); /* গোল্ডেন গ্রেডিয়েন্ট */
    color: #0d0d0d; /* ডার্ক টেক্সট */
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

/* টাইটেল */
.popup-box h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* প্যারাগ্রাফ টেক্সট */
.popup-box p {
    color: #a0a5b5;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ক্লোজ বাটন */
#popupClose {
    background: #ffc107;
    color: #0d0d0d;
    border: none;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

#popupClose:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

#popupClose:active {
    transform: translateY(0);
}

/* মসৃণ পপআপ ওপেনিং এনিমেশন */
@keyframes popupAnimation {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}