/* Variables */
:root {
    --primary-orange: #FF6B35;
    --primary-blue: #004E98;
    --light-orange: #FFB4A2;
    --light-blue: #E6F3FF;
    --dark-blue: #003666;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-gray: #333333;
}

/* Global fixes for horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Container fixes */
.nav-container,
.carousel,
.products,
.benefits,
.testimonials,
.how-it-works,
.offers,
.faq,
.contact {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Responsive container widths */
.product-container,
.benefits-container,
.testimonials-wrapper,
.steps-container,
.offers-container,
.faq-container,
.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Mobile responsiveness fixes */
@media (max-width: 768px) {
    .product-container,
    .benefits-container,
    .testimonials-wrapper,
    .steps-container,
    .offers-container,
    .contact-container {
        padding: 0 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
    }
}

/* Fix for testimonials slider */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 auto;
    width: calc(33.333% - 20px); /* For desktop: 3 cards */
    margin: 0 10px;
    box-sizing: border-box;
}

/* Testimonials responsive adjustments */
@media (max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 20px); /* For tablet: 2 cards */
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        width: calc(100% - 20px); /* For mobile: 1 card */
    }
}

/* Navigation */
nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hero Section and Carousel Styles */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Carousel Container */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

/* Carousel Images */
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Content */
.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
}

.carousel-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.carousel-arrow:hover {
    background: #ddd;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #aaa;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}

/* Call-to-Action Button */
.cta-button {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background: blue;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
    transform: translateX(-50%) scale(1.05);
    background: darkblue;
}
@media (min-width: 768px) {
    .mobile-image {
        display: none;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }
}


/* Products Section */
.products {
    padding: 4rem 1rem;
    background: var(--gray);
}

.products h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

/* Product Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
}

/* Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Image */
.product-card img {
    width: 100%;
    height: 200%;
    object-fit: cover;
}

/* Title & Description */
.product-card h3 {
    padding: 0.8rem 1rem;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.product-card p {
    padding: 0 1rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    min-height: 45px;
}

/* Price */
.product-price {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 0;
}

.original-price {
    color: var(--dark-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.discounted-price {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Buy Now Button */
.buy-now {
    margin: 0.5rem auto 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    font-size: 0.95rem;
    display: block;
    width: auto;
    text-align: center;
}

.buy-now:hover {
    background: var(--primary-orange);
}

/* Benefits Section Styles */
.benefits {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 139, 139, 0.1) 0%, rgba(0, 191, 165, 0.1) 100%);
    z-index: 1;
}

.benefits h2,
.benefits-container {
    position: relative;
    z-index: 2;
}

.benefits h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.benefit-card:hover i {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badges img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.trust-badges img:hover {
    filter: grayscale(0);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-container {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
    margin-bottom: 20px;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-nav:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.prev-testimonial {
    left: -10px;
}

.next-testimonial {
    right: -10px;
}

/* Keep original responsive behavior */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        height: auto;
        min-height: 350px;
    }

    .testimonials-wrapper {
        padding: 0 10px;
    }

    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
}



/* FAQ Section Styles */
.faq {
    padding: 60px 20px;
    position: relative;
    text-align: center;
    background: url('img/faq.jpeg') no-repeat center/cover, 
                linear-gradient(to right, rgba(255,165,0,0.1), rgba(0,123,255,0.1)); /* Double shade */
    color: white;
}

.faq h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9); /* Light transparency */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-size: 20px;
}

.toggle-icon {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--primary-blue);
    line-height: 1.6;
    margin: 0;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}


/* Contact Section Styles */
.contact {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    text-align: center;
    color: white;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-image.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: -1;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-container {
    display: flex;
    flex-direction: row-reverse; /* Moves form to the right */
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-info {
    flex: 0 0 35%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-info h3:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-info p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.contact-item span {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Form Styles */
.contact-form {
    flex: 0 0 55%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    background: #f9f9f9;
    position: relative;
}

.input-wrapper i {
    margin-right: 12px;
    color: #007bff;
    font-size: 1.4rem;
}

.input-wrapper input,
.input-wrapper textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    padding: 6px;
    background: transparent;
    width: 100%;
}

.input-wrapper textarea {
    resize: none;
    height: 120px;
}

label {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    transition: 0.3s;
    pointer-events: none;
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
    top: 10px;
    font-size: 0.9rem;
    color: #007bff;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
}

.submit-btn i {
    margin-left: 10px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 50px 15px;
        text-align: center;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .contact-container {
        flex-direction: column; /* Stack form and info */
        gap: 25px;
        margin-left: -5%;
       
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 1rem;
        gap: 10px;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .input-wrapper {
        padding: 12px;
    }

    .input-wrapper i {
        font-size: 1.2rem;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        font-size: 1rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .contact {
        padding: 40px 10px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        gap: 20px;
        padding: 10px;
    }

    .contact-info,
    .contact-form {
        padding: 15px;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .input-wrapper {
        padding: 10px;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 12px;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.call {
    background: var(--primary-blue);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Footer Styles */
footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #999;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-btn.whatsapp {
    background: #25D366;
}

.footer-contact-btn.call {
    background: var(--primary-blue);
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-links h4,
.footer-policies h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
    padding: 0;
}

.footer-links a,
.footer-policies a {
    color: #999;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-policies a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: #E4405F; }
.social-icon.twitter { background: #1DA1F2; }
.social-icon.youtube { background: #FF0000; }

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-newsletter {
    margin-top: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step {
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .carousel-slide h1 {
        font-size: 2.5rem;
    }

    .benefits-container,
    .testimonials-container,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badges img {
        height: 60px;
    }
}

/* Add these styles to your existing carousel styles */
.carousel {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .benefit-card {
        padding: 25px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .step {
        flex: 0 0 calc(50% - 15px); /* 2 cards per row on tablet */
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .step {
        flex: 0 0 100%; /* 1 card per row on mobile */
    }
}

/* Testimonials Slider Styles */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Navigation buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.prev-testimonial {
    left: 10px;
}

.next-testimonial {
    right: 10px;
}

.testimonial-nav:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-card {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        height: auto;
        min-height: 400px;
    }
} 
/*  */
 h2 {
            margin-bottom: 20px;
            text-align: center;
            font-size: 40px;
        }

        .video-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 35px;
            padding: 20px;
        }

        .video-wrapper {
            flex: 1 1 calc(33.33% - 30px); 
            max-width: 300px; 
        }

        video {
            width: 100%;
            height: 100%; 
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .video-wrapper {
                flex: 1 1 100%; 
            }
            
            video {
                height: 100%; 
            }
        }
        /*---------------------gallery-----------------*/
        .image-gallery {
            text-align: center;
            padding: 20px;
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .image-row {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        .image-wrapper {
            cursor: pointer;
        }
        .gallery-img {
            width: 340px;
            height: 100%;
            border-radius: 5px;
            transition: 0.3s;
            margin-bottom: 60px;
        }
        .gallery-img:hover {
            transform: scale(1.1);
        }
        .lightbox {
            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;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 10px;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }
        
/* Product Slider Styles */
.product-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.product-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.product-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #333;
    margin: 10px 0;
    font-size: 1.2rem;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
}

.discounted-price {
    color: #2ecc71;
    font-weight: bold;
    font-size: 1.2rem;
}

.buy-now {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-now:hover {
    background: #0056b3;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.prev-product {
    left: 10px;
}

.next-product {
    right: 10px;
}

.product-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .product-card img {
        height: 180px;
    }
} 
        /* why choose  */
        .benefits {
            position: relative;
            padding: 60px 20px;
            text-align: center;
            color: white;
            z-index: 1;
        }
        
        .benefits-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('img/background.jpeg') no-repeat center center/cover;
            opacity: 0.2; /* Adjust transparency */
            z-index: -1;
        }
        
        .benefits-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .benefit-card {
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            width: 200px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            color: blue;
        }
        /*  */
        /* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Navigation Bar */
nav {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navbar Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 12px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ff6f00;
}

/* 🚀 Hamburger Menu - Bigger & Styled */
.hamburger {
    display: none;
    width: 50px;
    height: 50px;
    background: #007bff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    border: none;
}

/* 🍔 Hamburger Icon Lines */
.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 30px;
    height: 4px;
    background: white;
    transition: 0.3s;
    border-radius: 4px;
}

/* Top Line */
.hamburger::before {
    top: 15px;
}

/* Bottom Line */
.hamburger::after {
    bottom: 15px;
}

/* Middle Line */
.hamburger i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

/* Animation for Close Icon */
.hamburger.open::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide Middle Icon on Open */
.hamburger.open i {
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
