/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    /* Default Light Mode */
    background-color: var(--background-color-light);
    color: var(--text-color-light);
    transition: background-color 0.4s, color 0.4s;
    background: var(--background-light);
    color: var(--text-dark);
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* ===== CSS Variables ===== */
:root {
    --secondary-color: #f107a3;
    --background-color-light: #ffffff;
    --text-color-light: #222;
    --background-color-dark: #121212;
    --text-color-dark: #f0f0f0;

    --primary-color: #4B90FF;
    --background-light: #ffffff;
    --background-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-dark: #222222;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    width: 100%;
    padding-right: var(--space-lg);
    padding-left: var(--space-lg);
    margin-right: auto;
    margin-left: auto;
}

.section {
    padding: 40px 0;
}


.text-center {
    text-align: center;
}

/* ===== Button ===== */
.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gray-light);
}

/* ===== Headings ===== */
h1,
h2,
h3,
h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: #555;
}

a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

.text-primary {
    color: var(--dark-color);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--background-color-light);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    background-color: var(--background-color-light);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}


/* ============ Forms ============ */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark-color);
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 67%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.form-control {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.form-control-lg {
    padding: var(--space-md);
    font-size: 1.1rem;
}

.form-control-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
}

/* Checkboxes and Radios */
.form-check {
    position: relative;
    display: block;
    padding-left: 1.5rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.5rem;
}

.form-check-label {
    margin-bottom: 0;
}

/* Form Validation */
.is-valid {
    border-color: var(--success-color);
}

.is-invalid {
    border-color: var(--danger-color);
}

/* Premium Navbar Styles */

.navbar-premium {
    height: 100px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .navbar-premium {
        /* height: auto; */
        /* padding: 15px 0; */
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        font-size: 18p;
    }
    
    .navbar-nav {
        padding-top: 10px;
    }
    
    .nav-item {
        margin-bottom: 10px;
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-top: 5px;
        margin-left: 15px;
    }
    
    .dropdown-item {
        padding: 8px 20px;
        transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
        background: rgba(58, 134, 255, 0.1);
        color: var(--primary-color) !important;
        padding-left: 25px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active:after {
    content: '';
    /* position: absolute; */
    bottom: 0;
    left: 15%;
    /* width: 70%; */
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}


/* Mobile menu styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas menu for mobile */
.offcanvas {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1.5rem !important;
    margin: 0.25rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background: rgba(58, 134, 255, 0.1);
}

.offcanvas-body .btn-premium {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
    background-color: var(--background-color-light);
}

.btn-premium {
    background-color: var(--background-color-light);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    background-color: #00bcd4;
    color: #000;
}



/* Hero Section */
.hero-slider .slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider .slide-content {
    background-color: rgba(0, 0, 0, 0.1);
    /* dark overlay */
    padding: 30px;
    border-radius: 10px;
    color: #ffffff;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
}

.hero-slider .slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-slider .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.btn-premium {
    background-color: var(--background-color-light);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-premium:hover {
    background-color: #0056b3;
    color: #000;
}

h1,
h2,
h3 {
    font-family: 'Manrope', sans-serif;
}

p {
    color: #000;
}

/* About Section */
.about-section .card {
    border-radius: 1rem;
    overflow: hidden;
}

.about-section .card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}


/* Product Section */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}






.view-details {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4C90FC;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.view-details:hover {
    background-color: #367be0;
}


/* About */
.about {
    padding: 60px 0;
}




/* .accordion-header {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
} */



/* ===== Dark Mode Styles ===== */
/* ========== Dark Mode ========== */


/* Toggle Button */
.dark-mode-toggle {
    margin-left: 15px;
}

.dark-mode-toggle button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.dark-mode .dark-mode-toggle button {
    color: #f0f0f0;
}

/* Hover Dropdown Styles */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        padding: 0.5rem 0;
        margin-top: 10px;
    }

    .dropdown-item {
        padding: 0.5rem 1.5rem;
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background: rgba(58, 134, 255, 0.1);
        color: var(--primary-color) !important;
    }

    .dropdown-divider {
        margin: 0.3rem 0;
    }
}



/* Premium Slider Styles */

.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
    text-align: center;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slider-nav {
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Responsive Design */
@media (min-width: 576px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (min-width: 992px) {
    .hero-slider {
        min-height: 600px;
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }

    .slide-content p {
        font-size: 1.5rem;
    }
}

/* ============ Lists ============ */
.list {
    list-style: none;
    padding-left: 0;
}

.list-item {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-item:last-child {
    border-bottom: none;
}

.list-icon {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.list-icon i {
    color: var(--primary-color);
}

/* ============ Backgrounds ============ */
.bg-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.bg-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.bg-light {
    background-color: var(--light-color);
}

.bg-dark {
    background-color: var(--dark-color);
    color: var(--white);
}

/* ============ Utility Classes ============ */


@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Spacing Utilities */
.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.mt-5 {
    margin-top: var(--space-xl);
}

/* Flex Utilities */
.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}

/* ============ Animations ============ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn var(--transition-slow) forwards;
}

/* ============ Responsive Adjustments ============ */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
    }
}

/* ===== About Section ===== */
.about h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--background-dark);
}

/* ===== Products Section ===== */
.products {
    background: #f2f6fc;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== Product Card ===== */










/* ===== Accordion Section ===== */
.accordion {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}



/* .accordion-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
} */





.accordion-item.active .accordion-body {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Simple Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== Modal Section ===== */
/* .modal-content {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
} */

.modal-header {
    border-bottom: none;
    background: var(--primary-color);
    color: var(--text-light);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body {
    padding: 1.5rem;
    color: var(--text-dark);
}

.modal-footer {
    border-top: none;
    background: #f9f9f9;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.modal .btn-close {
    background: #fff;
    border-radius: 50%;
    padding: 0.3rem;
    opacity: 1;
}


/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    background: var(--background-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--background-color-dark);
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: var(--border-color);
    color: #fff;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
}

/* ===== Product Section ===== */
.products {
    padding: 30px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    text-align: center;
}

.products h2 {
    /* font-size: 2.5rem; */
    margin-bottom: 40px;
}

.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}



/* ===== Accordion Section ===== */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    ;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.accordion {
    max-width: 700px;
    margin: auto;
}

.accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 0px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    cursor: pointer;
    background: var(--background-color-light);
    color: #333;
    font-weight: bold;
}


.accordion-item.active .accordion-body {
    display: block;
}

/* ===== Modal Section ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 40%;
    height: 60%;
    text-align: center;
} */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.8rem;
}

.btn-close {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-body {
    margin: 20px 0;
}

.modal-footer .btn {
    background: linear-gradient(135deg, #42e695, #3bb2b8);
    border: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.modal-footer .btn:hover {
    background: linear-gradient(135deg, #3bb2b8, #42e695);
}



/*** contact css***/

/* Breadcrumb Styling */
/* Breadcrumb Wrapper */

/* Contact Form Styling */
.contact-form-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.contact-form-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-form-section .form-group {
    margin-bottom: 20px;
}

.contact-form-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form-section input,
.contact-form-section textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form-section textarea {
    resize: vertical;
}

.contact-form-section .btn-submit {
    background-color: #FF6F61;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.contact-form-section .btn-submit:hover {
    background-color: #FF5733;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0e7ff, #ffffff);
}

.contact-info-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

/* Contact Cards */
.contact-cards {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111;
}

.contact-card p {
    font-size: 16px;
    color: #555;
}


/* Contact Form Section */
.contact-form-section {
    background-color: #fff;
    color: #222;
    padding: 40px 0;
}

.contact-form-section .form-group label {
    color: #333;
}

.contact-form-section input,
.contact-form-section textarea {
    background-color: #f9f9f9;
    color: #222;
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}






/* Dark Mode Contact Form */
.dark-mode .contact-form-section {
    background-color: #1c1c1c;
    color: #f0f0f0;
}

.dark-mode .contact-form-section .form-group label {
    color: #f0f0f0;
}

.dark-mode .contact-form-section input,
.dark-mode .contact-form-section textarea {
    background-color: #333;
    color: #f0f0f0;
    border: 1px solid #555;
}

/* Contact Info Section */
.contact-section {
    background-color: #fafafa;
    color: #222;
    padding: 60px 0;
}

.contact-card {
    background-color: #ffffff;
    color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 20px;
    height: 200px;
}

/* Style inside contact card */
.contact-card h4 {
    color: inherit;
    margin-bottom: 10px;
}

.contact-card p {
    color: inherit;
}


/* Google Map */
.contact-map iframe {
    filter: brightness(0.9) contrast(1.1);
}


/* Map */
.contact-map {
    flex: 2 1 500px;
    min-height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/*** product section****/



/* Dark Mode */
.dark-mode {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark);
}


/* Example Components (section, card, header, footer) */
.card,
header,
footer {
    background-color: inherit;
    color: inherit;
    transition: background-color 0.4s, color 0.4s;
}

/* Inputs, buttons, and other elements */
button,
input,
textarea {
    background-color: inherit;
    color: inherit;
    border: 1px solid #ccc;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}

.dark-mode button,
.dark-mode input,
.dark-mode textarea {
    background-color: #1e1e1e;
    color: var(--text-color-dark);
    border-color: #555;
}



/* Vendor Filter Buttons */
.vendor-filters {
    text-align: center;
    margin: 40px 0 20px;
    padding: 40px 40px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 8px;
    border: none;
    background: var(--gray-medium);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary-color);
}



/* Vendor Badge */

/* Quick View Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7);
}

/* .modal-content {
    background: var(--card-bg);
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
} */

.close {
    color: var(--text-color);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-color);
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 24px;
    border: none;
    background: linear-gradient(45deg, #7b2ff7, #f107a3);
    color: #fff;
    padding: 14px 18px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.4s, transform 0.4s;
}

#scrollToTopBtn:hover {
    background: linear-gradient(45deg, #ff6ec4, #7873f5);
    transform: translateY(-5px);
}

/* Mini Cart */
.mini-cart {
    display: none;
    position: fixed;
    top: 100px;
    right: 30px;
    background: #7b2ff7;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s, transform 0.4s;
}

.mini-cart.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Product Badges */
.product-badge {
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
}

.product-badge.new {
    background: #28a745;
    color: white;
}

.product-badge.sale {
    background: #dc3545;
    color: white;
}

/* Product Rating */
.product-rating {
    margin: 20px;
    font-size: 24px;
    color: gold;
}

/* Add to Cart Button */
.add-to-cart-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
    transition: background 0.3s;
}

.add-to-cart-btn:hover {
    background: #0056b3;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}





/* Filter Buttons */
.filter-bar {
    text-align: center;
    margin: 30px 0;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 5px;
    background: var(--primary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Swiper Trending */
.trending-swiper {
    width: 90%;
    margin: 40px auto;
}

.swiper-slide {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    height: 200px;
    border-radius: 20px;
}

/* Countdown */
.countdown {
    text-align: center;
    margin: 30px 0;
    font-size: 24px;
}

/* Tabs */
.tabs {
    text-align: center;
    margin-top: 40px;
}

.tab {
    background: #eee;
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    cursor: pointer;
}

.tab.active {
    background: #7b2ff7;
    color: #fff;
}

.tab-content {
    background: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: inline-block;
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #218838;
}

.product-rating {
    color: #ffc107;
    /* Golden color */
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}





.add-to-cart-btn {
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #2575fc 0%, #6a11cb 100%);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-badge.new {
    background: #2ed573;
}

.product-badge.sale {
    background: #ff6b81;
}

.mini-cart {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #4e47d4;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.mini-cart.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}



.dark-mode .products h2 {
    color: darkblue;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
}

.dark-mode .add-to-cart-btn {
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-btn {
    background: #ffffff;
    color: #6a11cb;
    margin-top: 30px;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #6a11cb;
    color: #ffffff;
}

/* Dark mode adjustments */
.dark-mode .hero-section {
    background: linear-gradient(135deg, #1f1c2c 0%, #928dab 100%);
}

.categories-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.categories-title h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-5px);
}

/* Dark mode adjustments */
.dark-mode .categories-section {
    background: #181818;
}

.dark-mode .category-card {
    background: #282828;
    color: #ccc;
}

.dark-mode .category-card:hover {
    background: linear-gradient(135deg, #928dab 0%, #1f1c2c 100%);
}

.trending-section {
    padding: 60px 20px;
    background: #f1f1f1;
    text-align: center;
}

.trending-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}




/* Dark Mode */
.dark-mode .trending-section {
    background: #1a1a1a;
}



.deal-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
}

.deal-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.deal-text {
    flex: 1 1 400px;
    padding: 20px;
    text-align: center;
}

.deal-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.deal-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown div {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 70px;
}

.countdown span {
    font-size: 2rem;
    display: block;
    font-weight: bold;
}

.countdown small {
    font-size: 0.9rem;
    display: block;
}

.btn-deal {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #ff7e5f;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-deal:hover {
    background: #feb47b;
    color: #fff;
}

.deal-image {
    flex: 1 1 400px;
    text-align: center;
}

.deal-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Dark Mode */
.dark-mode .deal-section {
    background: linear-gradient(135deg, #232526, #414345);
}

.dark-mode .btn-deal {
    background: #232526;
    color: #feb47b;
}

.dark-mode .btn-deal:hover {
    background: #414345;
    color: #fff;
}

/***2**/
.category-section {
    padding: 80px 20px;
    background: #f9f9f9;
}


.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.icon-bg {
    background: #eef1f6;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #6a11cb;
    transition: background 0.3s ease, color 0.3s ease;
}

.category-card:hover .icon-bg {
    background: #fff;
    color: #6a11cb;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: 600;
}


.product-tabs-section {
    padding: 80px 20px;
    background: #fff;
}


.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.tab {
    padding: 10px 25px;
    background: #f1f1f1;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.tab.active,
.tab:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
}

.tab-content {
    animation: fadeIn 0.5s;
}

.products-grid {}



/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    display: block;
    transition: 0.4s;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 10px;
    font-size: 0.9rem;
    border-radius: 12px;
    font-weight: bold;
}

.hover-buttons {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transition: 0.4s;
}



.btn-cart,
.btn-wishlist {
    background: #2575fc;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-wishlist {
    background: #f093fb;
}

.btn-cart:hover,
.btn-wishlist:hover {
    background: #333;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.product-rating {
    font-size: 1rem;
    color: #f0c040;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2rem;
}

.new-price {
    color: #27ae60;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
    margin-left: 10px;
}








@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/*** gallery part****/
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e0e0e0);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    animation: zoomIn 0.5s;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 50px;
    right: 80px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff4081;
}



/*** Advance Gallary****/
.advanced-gallery-section {
    padding: 30px 0;
    background: linear-gradient(to right, #f0f2f5, #e0e7ef);
}



/* Filter Buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {

    border: 2px solid #3498db;
    color: var(--background-light);
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {

    color: #fff;
}

/* Masonry Grid */
.gallery-card img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}


/* Modal */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

/* .modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-masonry {
        column-count: 1;
    }
}




/*** paralax****/
.parallax-section {
    background-image: url('images/caro-1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.gallery-container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    /* Light glass effect for gallery */
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(8px);
}

/******filter buttons******/


.filter-btn {

    color: white;
    border: none;
    padding: 12px 24px;
    margin: 5px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/*** light box****/
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-caption {
    color: #ccc;
    margin-top: 15px;
    font-size: 18px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/**** about****/
.about-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-content h2 span {
    color: #7b2ff7;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #444;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: turquoise;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.4s;
}

.about-btn:hover {
    background: var(--primary-color);
}

/*** product 1 details page**/
.hero {
    min-height: 100vh;
    background: var(--background-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
}

/*****mixitup***/
.controls {
    display: flex;
    justify-content: center;
    /* মাঝখানে রাখবে */
    align-items: center;
    gap: 15px;
    /* বাটনের মধ্যে গ্যাপ থাকবে */
    margin-bottom: 30px;
}

.controls .filter {
    background-color: #1b263b;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.controls .filter:hover,
.controls .filter.mixitup-control-active {
    background-color: #4da8da;
    color: #000;
}

/**imaiging**/
.imaging-grid-section {
    padding: 60px 20px;
    color: #ffffff;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}


.overlay-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 4px;
    font-weight: 100;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: background 0.3s;
}

/** product***/
/* ========== Product Section Styles ========== */
.product-section {
    padding: 60px 20px;
    background: var(--background-light);
    color: var(--text-dark);
}

.product-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* .product-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
} */

.product-image img {
    width: 100%;
    /* Full‑width */
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}



/* ========== Responsive ========== */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .product-section {
        padding: 40px 10px;
    }
}

/*** All product modal*****/
.product-section {
    padding: 60px 20px;
    background-color: white;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Roboto', sans-serif;
    color: #000 !important;
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    background: #1b263b;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-buttons {
    margin-top: 15px;
}

.btn {
    background-color: #4C90FC;
    border: none;
    padding: 8px 20px;
    margin: 5px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #90e0ef;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 1px;
    margin-top:100px;
    border-radius: 10px;
    width: auto;
    height: 400px;
    text-align: center;
    position: relative;
}

/* @media (max-width: 600px) {
    .modal-content {
        width: auto;
    }
} */

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}


.footer {
    background-color: #212529;
    color: #ffffff;
    padding: 50px 0;
}

.footer a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 1rem;
    text-decoration: none;
}

.footer a:hover {
    color: #0d6efd;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer p {
    color: #fff;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #ffffff;
}
.footer-links {
    list-style: none;
    padding: 0px;
    font-size: 16px;
    text-decoration: none;

}
.footer-links li {
    margin-bottom: 2px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-links a:hover {
    color: #0d6efd;
}

.social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0d6efd;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .footer-logo img {
        height: 40px;
    }
}

/* happy-customer */


.testimonial-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.testimonial-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    margin: 0 10px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

/* Base/Mobile styles (1 item default) */
.view-details {
    background-color: #4C90FC;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.view-details:hover {
    background-color: #3B78D8;
    /* Slightly darker for hover effect */
}

.products-showcase {
    padding: 2rem 0;
    background: #f9f9f9;
}

.showcase-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.showcase-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    /* 1 item by default */
    gap: 1rem;
}

.product-display {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-fullview {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-fullimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-info {
    padding: 1rem;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    min-height: 30px;
}

.product-desc {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.view-details {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

/* Medium devices (≥ 480px) - 2 items */
@media (min-width: 480px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets and larger (≥ 768px) - 3 items */
@media (min-width: 768px) {
    .products-showcase {
        padding: 3rem 0;
    }

    .showcase-container {
        padding: 0 1.5rem;
        max-width: 1200px;
    }

    .showcase-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .product-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .product-fullview {
        height: 220px;
    }

    .product-info {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }

    .view-details {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Large devices (≥ 1024px) */
@media (min-width: 1024px) {
    .product-showcase {
        gap: 2rem;
    }

    .product-fullview {
        height: 250px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-desc {
        font-size: 0.9rem;
    }
}

/* Hover effects (on devices that support hover) */
@media (hover: hover) {
    .product-display:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .product-display:hover .product-fullimg {
        transform: scale(1.03);
    }

    .product-title a:hover {
        color: #0066cc;
    }

    .view-details:hover {
        background: #0066cc;
        color: white;
    }
}

/****breadcumb******/
.breadcrumb-section {
    height: 100px;
    background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);
    padding: 45px 10px;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1020;
    margin-top: calc(var(--navbar-height, 70px));
    font-weight: bold;
}

/* Breadcrumb Link Styles */
.breadcrumb a {
    color: whitesmoke;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-item {
    font-size: 24px;
    font-weight: bold;
}

/* Active item */
.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: whitesmoke;
    font-weight: bold;
}

/* Responsive  */
@media (max-width: 768px) {
    .breadcrumb-section {
        margin-top: 90px;
    }
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-section {
    width: 100%;
    height: 70vh;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

/* .aboutssa-section img {
    height: 400px;
} */

/* .product-img img {
    height: 200px;
    border-radius: 4px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} */

/* .product-title {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 700;
} */

/* .product-item {
    background: #222;
    border: 1px solid #dd2476;
    color: rgba(250, 250, 250, 0.8);
    margin-bottom: 2rem;
} */

@media (max-width: 575.98px) {
    .product-img {
        height: 160px;
    }

    .banner-section {
        height: 70vh;
        background-position: center top;
    }

    .banner-content h1 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/****new get 12/6/2025***/
.rounded-5 {
    border-radius: 0.8rem;
}

.join_box {
    padding-left: 80px;
    padding-right: 80px;
    background-image: linear-gradient(to top, #48c6ef 0%, #6f86d6 100%);

}

/****about-pic-details-section-12/5/2025****/
.facility-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 15px;
}

.facility-desc {
    color: #555;
    font-size: 0.95rem;
}

.facility-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.facility-card {
    text-align: center;
    margin-bottom: 30px;
}

/***send messege button***/
.btn-submit {
    background-color: #4B8EF8 !important;
    border-color: #4B8EF8 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3677D6 !important;
    border-color: #3677D6 !important;
}

.btn-submit:active {
    background-color: #3677D6 !important;
    border-color: #3677D6 !important;
}

/******milestone css*******/

.timeline {
    position: relative;
    margin: 50px auto;
    padding: 20px 0;
    max-width: 1000px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #3677D6;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 4px solid#3677D6;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.year {
    position: absolute;
    top: 20px;
    width: 60px;
    height: 30px;
    background-color: #3677D6;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    z-index: 1;
}

.left .year {
    right: -80px;
}

.right .year {
    left: -80px;
}

@media (min-width: 992px) {

    /* Desktop view (lg and up) */
    .timeline::after {
        left: 50%;
    }

    .timeline-item {
        width: 50%;
    }

    .left {
        left: 0;
    }

    .right {
        left: 50%;
    }

    .timeline-item::after {
        top: 20px;
    }

    .left .year {
        right: -80px;
        left: auto;
    }

    .right .year {
        left: -80px;
        right: auto;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* Tablet view (md) */
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
    }

    .timeline-item::after {
        left: 10px;
    }

    .left,
    .right {
        left: 0 !important;
    }

    .left .year,
    .right .year {
        left: 20px;
        right: auto;
        top: -10px;
        position: relative;
        transform: translateY(-100%);
    }

    .year {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {

    /* Mobile view (sm) */
    .timeline::after {
        left: 15px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }

    .timeline-item::after {
        left: 6px;
    }

    .left,
    .right {
        left: 0 !important;
    }

    .left .year,
    .right .year {
        left: 15px;
        right: auto;
        top: 0;
        position: relative;
        transform: translateY(-100%);
    }

    .year {
        margin-bottom: 10px;
    }
}





/*****new whatsapp and messenger **/
.floating-button {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 999;
    background-color: white;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-button img {
    width: 28px;
    height: 28px;
}

.floating-button:hover {
    transform: scale(1.1);
}

/* Button Positions */
.whatsapp-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.messenger-btn {
    bottom: 80px;
    /* keep a gap above WhatsApp */
    background-color: #0084ff
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .floating-button {
        width: 45px;
        height: 45px;
        right: 15px;
        padding: 6px;
    }

    .floating-button img {
        width: 24px;
        height: 24px;
    }

    .whatsapp-btn {
        bottom: 15px;
    }

    .messenger-btn {
        bottom: 70px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .whatsapp-btn {
        bottom: 20px;
    }

    .messenger-btn {
        bottom: 80px;
    }
}

@media (min-width: 992px) {
    .whatsapp-btn {
        bottom: 25px;
    }

    .messenger-btn {
        bottom: 90px;
    }
}

/**13-5-2025*****/

.certificate-section {
    padding: 20px 20px;
    background: #f7f7f7;
    text-align: center;
}

.certificate-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.certificate-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.certificate-item:hover img {
    transform: scale(1.05);
}

.certificate-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-item:hover .overlay {
    opacity: 1;
}

.plus-icon {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    /* For buttons to be visible */
}

/*****ssa part***/
/* Hero Section */
.hero-section {
    /* height: 100vh; */
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}

.blog-hero {
    /* height: 100vh; */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991px) {
    .hero-section, .blog-hero {
       /* height: 30vh; */
       min-height: 500px;
    }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.25rem;
    color: #f0f0f0;
}

/* About Section */
#about h2 {
    color: #3677D6;
    font-weight: bold;
}

#about h5 {
    font-weight: 600;
}

/* Product Section */
#products img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#products img:hover {
    transform: scale(1.05);
}

/* Benefits Section */
#benefits h2 {
    color: #3677D6;
}

#benefits h5 {
    font-weight: 600;
}

/* FAQ Section */



.accordion-button:focus {
    box-shadow: none;
}

/* Contact Section */
#contact h4 {
    color: #fff;
}

#contact p i {
    margin-right: 8px;
}

#contact input,
#contact textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
}

#contact button {
    background-color: #3677D6;
    border: none;
}

#contact button:hover {
    background-color: #2b5fb0;
}

/* Footer */
footer {
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

/****17/5/2025***/
/****sure smiler****/
.table th,
.table td {
    vertical-align: middle;
}

.faq-section {
    background: #f8f9fa;
    padding: 2.5rem 0;
}


.accordion-button:not(.collapsed) {
    background-color: #d1ebee;
    color: #00394b;
}

.accordion-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    background: #fff;
    color: #636e72;
}

/* h2.text-center {
    color: #2d3436;
    margin-bottom: 3rem;
    font-weight: 600;
} */

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-button:focus {
    box-shadow: none;
}

/**************/
.intro-card {
    margin-bottom: 30px;
    background: #ffffff;
    padding: 26px 30px 22px;
    border: none;
    border-radius: 10px;
}

/* .intro-card:hover {
    background-color: #51a5ff;
    color: #fff;
    cursor: pointer;
} */

/***ol design***/
.custom-steps{
    counter-reset: step-counter;
    list-style: none;
    padding-left: 20px;
}

.custom-steps li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 15px;
    font-weight: 500;
}

.custom-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #0056b3;
    /* সবুজ রঙ */
    color: white;
    font-weight: bold;
    border-radius: 5px;
    /* square রাখতে 0 বা 5px রাখো */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.custom-compare-table {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.custom-compare-table thead {
    background-color: #28a745;
}

.custom-compare-table thead th {
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.custom-compare-table td:first-child {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #333;
    width: 30%;
}

.custom-compare-table tbody td {
    text-align: center;
}

.custom-compare-table tbody tr:hover {
    background-color: #e9f5ef;
    transition: background-color 0.3s ease;
}
