:root {
    --color-orange: #ff8c42;
    --color-yellow: rgb(255 207 37 / 51%);
    --color-dark: #2b2d42;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-muted: #7f8c8d;
    --color-circle-2: #7e8dce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.primary_gradient_btn {
    color: var(--light-color);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: rgba(24, 119, 242, 0.3) 0px 4px 15px;
    background: linear-gradient(135deg, #1c00ff, #9c029c);
    padding: 13px 15px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    outline: none;
    text-wrap: nowrap;
    text-decoration: none;
    color: white;
    display: inline-block;
    /*border: 1px solid #fff;*/
}

.primary_gradient_btn:hover {
    color: var(--light-color);
    transform: translateY(-1px) scale(1.03);
    box-shadow: rgba(248, 86, 6, 0.5) 0px 6px 20px;
    background: linear-gradient(135deg, rgb(248, 86, 6), rgb(255, 179, 71));
    color: var(--color-white);
}

@media (max-width: 576px) {
    .primary_gradient_btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Color utility classes */
.bg-orange {
    background-color: #105cc8 !important;
}

.bg-yellow {
    background-color: #9FFA62 !important;
}

.text-orange {
    color: #F85606 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Enhanced responsive button */
.btn-orange {
    box-shadow: rgba(248, 86, 6, 0.3) 0px 4px 15px;
    background: linear-gradient(135deg, #0f5ac4, #1877f2);
    padding: 18px 25px;
    font-weight: 600;
    color: var(--color-white);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;

    border: none;
}

.btn-orange:hover {
    box-shadow: rgba(248, 86, 6, 0.5) 0px 6px 20px;
    background: linear-gradient(135deg, rgb(248, 86, 6), rgb(255, 179, 71));
    color: var(--color-white);
}

@media (max-width: 768px) {
    .btn-orange {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .btn-orange {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

/*.navbar-brand img {*/
/*    max-height: 40px;*/
/*    width: auto;*/
/*}*/

.footer {

    background: linear-gradient(135deg, #1c00ff, #9c029c);
}

.container {
    width: 97% !important;
    max-width: 1600px;
}

.navbar-brand img {
    height: 70px;
    width: 130px;
}

.footer-brand img {
    height: 60px;
    width: 100px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand img {
        max-height: 35px;
    }


    .navbar-brand img {
        height: 80px;
        width: 80px;
    }
}

/* Added mobile sidebar animation */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        left: 0;
        top: 61px;
        width: 75%;
        max-width: 300px;
        height: calc(60vh);
        background: linear-gradient(135deg, #6f8ae9 0%, #845cbf 100%);
        flex-direction: column;
        padding: 1.2rem;
        overflow-y: auto;
        z-index: 999999;
        /* transform: translateX(-100%); */
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        opacity: 0;
        z-index: 998;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }

    .mobile-menu-overlay.show {
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
    }

    .navbar-nav .primary_gradient_btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
}

/* Fully responsive hero section */
.hero-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
}

.hero-section .lead {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-section img {
    animation: float 3s ease-in-out infinite;
    width: 100%;
    height: auto;
    max-width: 500px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        margin-bottom: 1rem;
    }

    .hero-section .lead {
        margin-bottom: 1.5rem;
    }

    .hero-section img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-section .d-flex {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hero-section .btn-orange {
        width: 100%;
        text-align: center;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stat-card {
    padding: 0.2rem;
    border-radius: 0.75rem;
    background: rgb(255 207 37 / 51%);
    background-image: url("https://shopbasebd.com/public/assets/web/images/stat-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.stat-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.stat-card p {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.about-section img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
}

/* Fully responsive services section */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-orange);
}

.service-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.service-card h6 {
    font-weight: 600;
    color: var(--color-dark);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }

    .services-section h2 {
        margin-bottom: 2rem;
    }
}

/* Fully responsive features section */
.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

.feature-card {
    border-left: 4px solid var(--color-orange);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-card h5 {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.feature-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }

    .features-section h2 {
        margin-bottom: 2rem;
    }

    .feature-card {
        border-left: none;
        border-top: 4px solid var(--color-orange);
        padding-top: 1rem !important;
    }

    .feature-card:hover {
        transform: translateX(0) translateY(-8px);
    }
}

/* Fully responsive products section */
.products-section {
    padding: 80px 0;
}

.products-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.products-section>.container>p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.product-item {
    text-decoration: none;
    color: var(--color-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.product-item p {
    font-weight: 500;
    margin: 0;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.product-item img {
    width: 100%;
    max-height: 140px;

}

@media (max-width: 768px) {
    .products-section {
        padding: 50px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
}

/* Fully responsive FAQ section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

.accordion-button {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-yellow);
    color: var(--color-dark);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 66, 0.25);
}

.accordion-item {
    margin-bottom: 0.5rem;
}

.accordion-body {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }


    .faq-section h2 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .faq-section .row {
        gap: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    padding: 3rem 0 1rem;
}

.footer h6 {
    font-weight: 700;
    color: var(--color-white);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.footer p,
.footer a {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer a {
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-orange) !important;
}

.footer .small {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer .row {
        gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .footer {
        text-align: center;
    }

    .footer .row {
        gap: 1rem !important;
    }

    .footer .col-md-3 {
        width: 100% !important;
    }
}

/* Decorative circles responsive */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 100px;
    height: 100px;
    background-color: var(--color-orange);
    top: 150px;
    left: 50px;
}

.circle-2 {
    width: 130px;
    height: 131px;
    background-color: var(--color-circle-2);
    bottom: 254px;
    right: 15px;
}

@media (max-width: 768px) {
    .circle-1 {
        width: 70px;
        height: 70px;
        top: 100px;
        left: 30px;
    }

    .circle-2 {
        width: 90px;
        height: 90px;
        bottom: 150px;
        right: 10px;
    }
}

@media (max-width: 576px) {

    .circle-1,
    .circle-2 {
        display: none;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General responsive improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .gap-4 {
        gap: 1rem !important;
    }

    .g-4 {
        gap: 1.5rem !important;
    }
}





/* contact page */


.contact-section {
    padding: 70px 0;
}

/* add css */

.contact-info h2 {
    font-weight: 700;
    color: #000;
}

.contact-info p {
    color: #555;
    font-size: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-icon {
    background: #ffeaa7;
    color: #d35400;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 18px;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    background: #1877f2;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.social-links a.youtube {
    background: #ff0000;
}

.social-links a.telegram {
    background: #0088cc;
}

/* Right form box */
.contact-form {
    background: #ffeaa7;
    padding: 40px;
    border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.contact-form button {
    background: linear-gradient(90deg, #f39c12, #e67e22);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: linear-gradient(90deg, #e67e22, #d35400);
}


@media (max-width: 768px) {

    .social-links a {
        display: inline-block;
        margin-right: 10px;
        background: #1877f2;
        color: white;
        padding: 6px 15px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 10px;
    }
}


/* about page */

/* Top Section */
.about-header {
    background: linear-gradient(90deg, #ffecb3, #ffd54f);
    padding: 60px 0 40px;
    text-align: center;
}

.about-header h2 {
    font-weight: 700;
    color: #000;
}

.about-header p {
    max-width: 800px;
    margin: 10px auto;
    color: #444;
    line-height: 1.6;
}

/* How to Section */
.steps-section {
    padding: 60px 0;
    text-align: center;
}

.steps-section h3 {
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.steps-section p {
    color: #666;
    margin-bottom: 40px;
}

.steps-box {
    background: linear-gradient(135deg, #0f5ac4, #1877f2);
    border-radius: 6px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffeb3b;
    color: #ff5722;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.step-item p {
    margin: 0;
    color: #333;
    font-size: 15px;
    text-align: left;
}

@media (max-width: 768px) {
    .steps-box {
        padding: 20px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 8px;
    }
}



/* opt */

.register-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    margin: 20px 0;
}

.login-image {
    max-width: 400px;
    width: 100%;
}

.form-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
}

.form-container h2 {
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 28px;
}

.form-container p {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    width: 100%;
}

.btn-submit {


    background: linear-gradient(135deg, #0f5ac4, #1877f2);

    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #ff9100, #ff3c00);
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 991px) {
    .register-section {
        margin: 0;
        padding: 30px 0;
    }

    .login-image {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .form-container h2 {
        font-size: 24px;
    }

    .form-container p {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 0 15px;
    }

    .form-control {
        font-size: 14px;
        padding: 10px;
    }

    .btn-submit {
        font-size: 15px;
        padding: 10px 16px;
    }
}


/* register page */



.register-form {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.register-form h2 {
    color: #ff7a00;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 30px;
    text-align: center;
}

.form-control,
.form-select {
    border: 1px solid #ffa63d;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    background-color: #fdfdfd;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #ff7a00;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.btn-submit {
    background: linear-gradient(135deg, #0f5ac4, #1877f2);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 25px;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #ff9100, #ff3c00);
}

.note {
    font-size: 13px;
    color: #008a00;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .register-form {
        padding: 0 20px;
    }
}



/* ---------- LINKS ---------- */
.link-register {
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
}

.link-register:hover {
    text-decoration: underline;
}

.link-forgot {
    color: #ff6f00;
    text-decoration: none;
    font-weight: 500;
}

.link-forgot:hover {
    text-decoration: underline;
}



/* product section */

.products-section {
    background-color: #fff9e6;

}

.products-count {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.details-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 300px;
}

.product-card img {
    width: 100%;
    max-height: 264px;
    height: 100%;
    border-radius: 0px;
    margin-bottom: 12px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

.product-subtitle {
    font-size: 13px;
    color: #777;
    min-height: 38px;
    /* 2 lines approx */
}

.product-price {
    font-weight: 700;
    font-size: 18px;
    margin: 12px 0;
    color: #111;
}

.btn-gradient {
    background: linear-gradient(135deg, #0f5ac4, #1877f2);
    border: none;
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 9px 0;
    border-radius: 6px;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn-gradient:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 140, 0, 0.35);
}

@media (max-width: 576px) {
    .product-card img {
        max-height: 100%;
        height: auto;
    }

    .product-card {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 18px 11px 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: auto !important;

    }
}


.whatapp_btn {

    width: 60%;
    text-align: center;
}