:root {
    --black: #000000;
    --white: #ffff;
    --pc: #E52731;
    --sc: #F4F7F9;
    --hc: #2c3e50;
}

a {
    text-decoration: none !important;
}

/* .btn {
    background-color: var(--pc) !important;
    color: var(--white) !important;
    border: none !important;
} */

.top-bar a {
    color: var(--white);
}

.currency-selector {
    margin-left: 25px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency-selector i {
    font-size: 18px;
    color: #6e91dc;
}

.currency-selector select {
    border: none;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    padding: 5px 10px;
    background: transparent;
    font-size: 16px;
}

.currency-selector select:focus {
    outline: none;
}


.navbar-brand img {
    height: 70px;
}

.top-bar {
    background-color: var(--pc);
    padding: 10px 0;
    font-size: 16px;
    color: var(--white) !important;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 20px;
}

.nav-link:hover {
    color: black;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-icons .nav-link {
    padding: 0.5rem 0.8rem;
}

.logo h3 {
    color: var(--pc) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .nav-icons {
        margin-top: 1rem;
    }

    .auth-links {}

    .contact-info {
        display: grid;

    }
}


/* Login Modal */
.modal-header {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.auth-form {
    padding: 20px;
}

.auth-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.auth-form .btn-primary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: var(--pc);
    border: none;
    width: 100%;
    margin-top: 1rem;
}

.auth-form .btn-primary:hover {
    background-color: var(--white);
    color: var(--pc);
}

.social-login {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 100%;
    margin: 0.5rem 0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: rgb(244, 235, 235) !important;
    color: var(--pc) !important;
}

.forgot-password {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    color: #E52731;
    ;
}


/* Hero Section Styles */
.hero-section {
    margin-bottom: 3rem;
}

.carousel-item {
    height: 60vh;
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {

    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 30px;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 20px !important;
    height: 20px !important;

    margin: 0 6px;
    background-color: var(--pc) !important;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

/* .carousel-control-prev span {
    background: var(--pc);
} */

.carousel-control-prev span i {
    color: var(--white);
}

/* .carousel-control-next span {
    background: var(--pc);
} */

.carousel-control-next span i {
    background: white;
}


.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        padding: 1rem;
        max-width: 90%;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* END */







#exampleModal {
    background: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}


#exampleModal button {
    background: white !important;
}


#exampleModal .modal-body {
    background-color: transparent !important;
    color: #fff;
    /* Optional: white text if the background behind is dark */
}




/* We Offer Section Styles */
.we-offer {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    min-height: 350px;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
    background: #E52731;
    ;
    color: white;
}

.offer-icon i {
    font-size: 3rem;
    color: #E52731;
    ;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon i {
    color: white;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.offer-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-card .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #E52731 !important;
}

.owl-nav button span {
    font-size: 1.5rem;
    line-height: 0;
    color: #333;
}

.owl-nav button:hover span {
    color: white;
}

.owl-prev {
    left: -60px;
}

.owl-next {
    right: -60px;
}

.owl-dots {
    margin-top: 2rem;
}

.owl-dot span {
    background: #dee2e6 !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #E52731 !important;
    width: 25px !important;
}

@media (max-width: 768px) {
    .owl-nav {
        display: none;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Product Section Styles */
.product-section {
    padding: 5rem 0;
    background: #fff;
}

.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    margin: 20px;
    border: none;
    background: #f8f9fa;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--pc);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-wishlist:hover {
    background: #dc3545 !important;
    color: white !important;
}

.product-wishlist:hover a {
    /* background: #dc3545; */
    color: white !important;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.product-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-action a {
    color: var(--pc);
    text-decoration: none;
    text-align: right;

}


@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

.product-card {
    transition: all 0.4s ease;
}

.product-card.hide {
    display: none;
}

.product-card.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update container and spacing styles */
.container-fluid {
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 15px;
    }
}

.product-section {
    padding: 5rem 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1920px;
}

.section-title {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.product-filters {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* About Section Styles */
.about-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pc);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.experience-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 1rem;
    margin-top: 5px;
}

.about-content {
    padding: 2rem;
}

.about-content h6 {
    color: var(--pc);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #6c757d;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pc);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .about-image {
        margin-bottom: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        width: 140px;
        height: 140px;
        padding: 1.5rem;
        bottom: 1px;
    }
}


/* Product Spotlight Styles */
.product-spotlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.spotlight-title h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
    text-align: center;
}

.spotlight-subtitle {
    color: #636e72;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.spotlight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 15px;
}

.spotlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.spotlight-content {
    padding: 1.5rem;
}

.spotlight-badge {
    background: var(--pc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.spotlight-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.spotlight-description {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.spotlight-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #636e72;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--pc);
}

/* Owl Carousel Custom Styles */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.owl-prev,
.owl-next {
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--pc) !important;
    color: #fff !important;
}

.owl-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dfe6e9 !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--pc) !important;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-spotlight {
        padding: 40px 0;
    }

    .spotlight-title {
        font-size: 4rem;
    }

    .spotlight-image {
        height: 200px;
    }

    .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .spotlight-title {
        font-size: 1.8rem;
    }

    .spotlight-image {
        height: 180px;
    }

    .spotlight-content {
        padding: 1rem;
    }
}


/* Video Section Styles */
.video-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.video-wrapper {
    position: relative;

    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    margin-bottom: 20px;

}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: var(--pc);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--pc);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.play-button:hover {
    background-color: var(--pc);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover::before {
    animation: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }

    .video-wrapper {
        height: 300px;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 60px 0;
    }

    .video-wrapper {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* CTA Banner Styles */
.cta-banner {
    background: url('img/sol-1.jpg');
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}



.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: #fff;
    color: #E52731;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.cta-button:hover {
    background: #f8f9fa;
    color: #E52731;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-banner {
        min-height: 350px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-banner {
        min-height: 300px;

    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}



/* Testimonials Section Styles */
.testimonials {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    transition: all 0.3s ease;
}

.testimonial-item.featured {
    grid-column: span 2;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E52731, #fff);
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.star-container {
    display: flex;
    gap: 0.35rem;
}

.star-container i {
    color: #ffd700;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.3);
}

.star-container i:hover {
    transform: scale(1.2);
    color: #ffc107;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
    -webkit-text-stroke: 1px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.author-image:hover {
    transform: scale(1.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.2rem;
}

.author-title {
    color: #636e72;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .author-image {
        width: 45px;
        height: 45px;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-title {
        font-size: 0.85rem;
    }

    .star-container i {
        font-size: 1.4rem;
    }
}

/* Tablet Styles */
@media (max-width: 992px) {
    .testimonials {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .testimonial-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-item.featured {
        grid-column: span 1;
    }
}

/* Mobile Styles */
@media (max-width: 576px) {
    .testimonials {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .rating {
        margin-bottom: 1rem;
    }

    .star-container i {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .author-image {
        width: 40px;
        height: 40px;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 375px) {
    .testimonials {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* testimonial End */

/* Blog Section Styles */
.blog-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin: 15px;
    height: 100%;
    width: 310px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background: var(--pc);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    color: #2d3436;
    font-weight: 600;
}

.blog-date {
    color: #636e72;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-image {
        height: 200px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1rem;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(to bottom, #2d3436, #1e272e);
    color: #fff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.payment-image {
    width: 90%;
}


.footer-logo {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--pc), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--pc);
    transform: translateX(8px);
}

.footer-links i {
    font-size: 0.8rem;
    color: var(--pc);
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
    color: #fff;
}

.footer-contact i {
    color: var(--pc);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pc);
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.footer-social a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social a:hover::before {
    transform: translateY(0);
}

.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--pc);
}

.newsletter-button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 1.5rem;
    background: var(--pc);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: var(--pc);
    transform: translateX(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.8rem 0;
    margin-top: 5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--pc);
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 0 0;
    }

    .footer-title {
        margin-top: 2.5rem;
    }

    .footer-bottom {
        margin-top: 4rem;
    }

    .newsletter-form {
        margin-top: 2rem;
    }
}

/* Mini Map Styles */
.footer-map {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: all 0.3s ease;
}

.footer-map:hover iframe {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 184, 148, 0.1), rgba(0, 184, 148, 0));
    pointer-events: none;
    z-index: 1;
}

.map-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--pc);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-button:hover {
    background: var(--pc);
    transform: translateY(-2px);
}

.map-button i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-map {
        height: 180px;
    }
}


/* Support Section Styles */
.support-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.support-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.support-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    color: var(--pc);
}

.support-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0,123,255,0.1); */
    border-radius: 12px;
    transition: all 0.3s ease;
}

.support-item:hover .support-icon {
    background: var(--pc);
    transform: scale(1.1);
}

.support-icon i {
    font-size: 1.4rem;
    color: var(--pc);
    transition: all 0.3s ease;
}

.support-item:hover .support-icon i {
    color: var(--pc);
}

.support-content {
    flex: 1;
}

.support-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.support-item:hover .support-title {
    color: var(--pc);
}

.support-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.support-link {
    color: var(--pc);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.support-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.support-link:hover {
    color: var(--pc);
}

.support-link:hover i {
    transform: translateX(3px);
}

.support-phone {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.support-phone:hover {
    color: #c82333;
}

.support-phone i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.support-phone:hover i {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .support-container {
        gap: 30px;
    }

    .support-item {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }

    .support-container {
        flex-direction: column;
        gap: 20px;
    }

    .support-item {
        width: 100%;
        min-width: 100%;
    }
}


/* HOME PAGE END */

/* breadcrumb Design */
.bread {
    background: #0c0b0bde;
    padding: 10px 14px;
    font-weight: bold;
    text-align: center;
}

.breadcrumb li {
    color: var(--white) !important;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}


/* About Page Design */


.about-banner {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/about-banner.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 60vh;
    text-align: center;
}

.about-banner .text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.about-banner a {
    border: 1px solid white;
    padding: 8px 10px;
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    margin-top: 20px;
    font-size: 16px;
}

.about-banner i {
    padding: 5px;
}

.ab-con {
    margin-top: 100px;
}

@media only screen and (max-width: 600px) {

    .ab-con {
        margin-top: 1px;
    }
}


/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--pc);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 30px);
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;

    background: var(--pc);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3436;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;

    background: var(--pc);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(245, 43, 43, 0.3);
}


.cert-section {
    background-color: #f5f7fa;
    padding: 60px 20px;
}

.cert-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cert-desc {
    font-size: 1rem;
    color: #555;
}

.cert-logo {
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.cert-logo:hover {
    transform: translateY(-5px);
}

.cert-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}


/* Contact Us */

.contact-info-card {
    background: white;
    border-radius: 0px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--pc);
    margin-bottom: 20px;
}

.contact-form {
    background: white;
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    padding: 12px;
    /* margin-bottom: 20px; */
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-header {
        padding: 40px 0;
    }

    .contact-header h1 {
        font-size: 2rem;
    }


}


/* Single Product Page */

.product-gallery {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    display: flex;
    gap: 20px;
}

.thumbnails-container {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 500px;
    padding-right: 10px;
}

.main-image-container {
    flex: 1;
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

.thumbnail {
    width: 100px;
    height: 95px;
    object-fit: cover;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--pc);
}

/* Custom scrollbar for thumbnails */
.thumbnails-container::-webkit-scrollbar {
    width: 8px;
    height: 2px;
    display: none;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    height: 2px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (max-width: 768px) {
    .product-gallery {
        flex-direction: column;
    }

    .thumbnails-container {
        width: 100%;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 80px;
        height: 80px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}


.product-details {
    background: #fff;
    padding: 30px;
    border-radius: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}



.product-title {

    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}



.product-price {
    font-size: 1.5rem;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 10px;
    color: #555;
}

.product-features i {
    color: #ff0000;
    margin-right: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 10px;
}

.action .btn {
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}




.am h5 {
    font-size: 20px !important;
    color: var(--pc);
}




.spec-tabs .nav-tabs {
    border-bottom: 2px solid var(--pc);
}

.spec-tabs .nav-link {
    border: none;
    width: 200px;
    margin: 0 10px;
    padding: 10px 20px;
    background-color: #f8f9fa;
    transition: 0.3s ease;
    color: #333;
    font-weight: 500;
}

.spec-tabs .nav-link.active {
    background-color: var(--pc);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 20, 63, 0.3);
}

.spec-tabs .tab-content {

    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.spec-tabs i {
    margin-right: 6px;
}


.card-header {
    background-color: #faf8f8;
    cursor: pointer;
}

.download-icon {
    color: var(--pc);
    text-decoration: none;
}

.info-text {
    font-size: 0.9rem;
    color: var(--pc);
}

.table-borderless td,
.table-borderless th {
    border: none;
}


/* minihero */
.minihero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.minihero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.minihero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.minioverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Optional: for readability */
    z-index: 1;
}


/* SHOP PAGE  */
.shop-banner h6 {
    font-size: 25px !important;
}

.shop-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

.shop-product {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.video-banner {
    width: 100%;
    height: 40vh;
    position: relative;
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;

}


.shop-section4 {
    width: 100%;
    height: 100%;
}

.shop-section4 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px !important;
    border: none;
}


/* Partner Page Design */
.dealer-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.dealer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.dealer-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.dealer-address {
    font-size: 0.95rem;
    color: #555;
}


.join-us-section {

    border-radius: 16px;
}

.join-us-section input::placeholder {
    color: #6c757d;
}

.join-us-section input,
.join-us-section button {
    border-radius: 8px;
}

.join-us-section button:hover {
    background-color: #f8f9fa;
    color: #000;
}

/* Post Page */

.featureimg {
    width: 100%;
    height: 50vh !important;
    padding: 0;
    margin: 0;
}

.featureimg img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}


/* Product Categories Page Design */

.category-sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.category-item {
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    border-bottom: 1px solid #eee;
}

.category-item:hover {
    background-color: #e9ecef;
    color: #000;
}

.category-item i {
    margin-right: 10px;

}

.category-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    height: 200px;
    object-fit: cover;
}

.category-card .card-body {
    padding: 1.25rem;
    background: white;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    text-align: center;
}

.card-body a {
    color: var(--black);
    text-decoration: none;
}


.sidebar-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: block !important;
        margin-bottom: 1rem;
    }

    .category-sidebar {
        margin-bottom: 1rem;
    }
}

/* News and Event */
.page-header {
    background: linear-gradient(135deg, var(--hc), #34495e);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('https://source.unsplash.com/random/1920x1080?technology') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.nav-pills .nav-link {
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    object-fit: cover;
}

.news-date {
    color: var(--pc);
    font-weight: 600;
}

.event-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background: var(--accent-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    width: 100px;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.event-date .month {
    font-size: 0.9rem;
    margin: 0;
}

.badge-custom {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: #c0392b;
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }

    .nav-pills .nav-link {
        margin: 0.25rem;
    }
}


/* SUPPORT ICON DESIGN */

/* Enhanced Support Button and Popup Styles */
.support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pc), var(--pc));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.support-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pc), var(--pc));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--pc), var(--pc));
}

.support-btn:hover::before {
    opacity: 1;
}

.support-btn i {
    font-size: 24px;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.support-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.support-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--pc), var(--pc));
}

.support-header {
    padding: 20px;
    text-align: center;
    background: #f8f9fa;
    position: relative;
}

.support-header h5 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.support-popup .close-btn {
    position: absolute;
    top: 18px;
    right: 15px;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-popup .close-btn:hover {
    color: var(--pc);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.support-items {
    padding: 10px;
}

.support-item {
    padding: 15px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pc), var(--pc));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.support-item:hover {
    transform: translateX(5px);
    background: #f8f9fa;
}

.support-item:hover::before {
    opacity: 0.05;
}

.support-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    margin-right: 12px;
    color: var(--pc);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.support-item span {
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.support-item .arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--pc);
    position: relative;
    z-index: 1;
}

.support-item:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .support-popup {
        width: calc(100% - 40px);
        max-width: 300px;
    }
}


/* Checkout Page Design */

.checkout-container {
    max-width: 1200px;
    margin: 2rem auto;
}

.checkout-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.checkout-header {
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.checkout-header h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.form-label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.payment-method {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.payment-method.selected {
    border-color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.payment-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--secondary-color);
}

.order-summary {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0px;
    margin-right: 1rem;
}

.order-item-details h6 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.order-item-details p {
    color: #6c757d;
    margin-bottom: 0;
}

.total-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-checkout {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-checkout:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: #6c757d;
}

.secure-checkout i {
    color: #28a745;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .checkout-container {
        margin: 1rem;
    }

    .checkout-card {
        padding: 1.5rem;
    }

    .order-item img {
        width: 60px;
        height: 60px;
    }
}

.order-item h6 {
    color: var(--pc);
}

.order-item .price {
    color: var(--pc);
}

.safe img {
    width: 100%;
}

.icon-pulse {
    animation: pulse-opacity 2s infinite;
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}



/* ORDER SUCCESS PAGE CSS */
.success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.success-header {
    margin-bottom: 30px;
}

.success-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}




.success-content {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.order-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.order-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-info:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    color: #666;
}

.info-value {
    font-weight: 600;
    color: #333;
}



.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    text-decoration: none;
}

.action-btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-shopping {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.continue-shopping:hover {
    background: #e9ecef;
}

.view-order {
    background: var(--pc);
    color: white;
    border: none;
}

.view-order a {
    text-decoration: none;
}


.view-order:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {


    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
}



/* Cart Page Design */

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cart-header {
    margin-bottom: 40px;
    text-align: center;
}

.cart-header h1 {
    font-size: 2.5rem;
    color: var(--pc);
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--pc), var(--pc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.col-lg-8,
.col-lg-4 {
    display: flex;
    flex-direction: column;
}

.cart-items {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    flex: 1;
}

.cart-items:hover {
    transform: translateY(-1px);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cart-item:hover {

    border-radius: 8px;
    padding: 25px 15px;
}

.item-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item-image:hover {
    transform: scale(1.1);
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--pc);
    margin-bottom: 8px;
}

.item-price {
    color: var(--black);
    font-size: 1.2rem;
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--black);
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--pc);
    color: white;
    transform: scale(1.1);
}

.quantity-input {
    width: 70px;
    height: 40px;
    text-align: center;
    border: 2px solid var(pc);
    border-radius: 8px;
    padding: 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--pc);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.remove-item {
    color: var(--pc);
    cursor: pointer;
    margin-left: 20px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    transform: scale(1.2);
    color: var(white);
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 1.1rem;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var();
    border-top: 2px solid var(--black);
    padding-top: 20px;
    margin-top: 20px;
}

.summary-content {
    flex: 1;
}

.checkout-btn {
    background: linear-gradient(45deg, var(--pc), var(--pc));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
}

.continue-shopping {
    text-align: center;
    margin-top: 20px;
}

.continue-shopping a {
    color: var(--pc);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.continue-shopping a:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .cart-container {
        padding: 15px;
    }

    .cart-header h1 {
        font-size: 2rem;
    }

    .cart-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 15px 0;
    }

    .item-image {
        width: 100px;
        height: 100px;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .item-details {
        flex: 1;
        width: auto;
    }

    .quantity-control {
        width: auto;
        margin: 10px 0;
    }

    .remove-item {
        margin: 0 0 0 15px;
        align-self: flex-start;
    }

    .cart-summary {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cart-container {
        padding: 10px;
    }

    .cart-header h1 {
        font-size: 1.8rem;
    }

    .cart-items,
    .cart-summary {
        padding: 15px;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 1rem;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
    }

    .quantity-input {
        width: 60px;
        height: 35px;
    }

    .checkout-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

.continue-shopping {
    border: none;
    background: transparent;
}

.continue-shopping {
    background: transparent !important;
    color: var(--pc);
}

.continue-shopping a:hover {
    color: var(--pc) !important;
}

.checkout-btn a {
    color: white;
}

.btn-checkout a {
    color: white;
}