:root {
    --primary: #0056b3;
    --secondary: #003366;
    --accent: #ff6600;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Smooth scrolling for anchor links and prevent horizontal scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

body {
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    padding-top: 140px; /* Account for fixed top-bar (40px) and header (approx 100px) */
}

/* Style vertical scrollbar on body (if present) */
body::-webkit-scrollbar {
    width: 10px;
    
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--primary); /* #0056b3 */
    border-radius: 10px;
}

/* Top Bar - Fixed, No Gap */
.top-bar {
    background-color: var(--secondary);
    color: white;
    font-size: 16px;
    position: fixed;
    top: 0;

    z-index: 1000;
    height: 40px;
    padding: 10px 0;
    margin-bottom: -0px;
   
    width: 100%;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.left-links, .right-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.top-links li {
    margin-right: 20px;
    position: relative;
}

.top-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.top-links a:hover {
    color: var(--accent);
}

.dropdown-icon::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
}

/* Main Header - Fixed, Below Top Bar */


  


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */

.logo {
    font-size: 0;
}

/* Main Header - Fixed, Below Top Bar */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 40px;
    z-index: 999;
   
    
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between; /* Ensures logo is left, nav is right */
    align-items: center; /* Vertically centers content */
    max-width: 1200px; /* Adjusted to match other containers */
    margin: 0 auto;
    padding: 10px 20px; /* Reduced padding from 15px to 10px for smaller height */
    overflow: visible;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Pushes logo to the left */
}

.logo img {
    height: 80px; /* Reduced from 100px to 80px to decrease header height */
    width: 120px; /* Adjusted proportionally from 150px */
    margin-right: 10px;
    margin-left: 0; /* Ensure no left margin */
    margin-top: 8px; /* Slightly reduced from 10px */
}

.logo span {
    display: none;
}
@media (min-width: 769px) {
    .header-container {
        padding: 10px 20px; /* Ensure consistent padding for big screens */
    }
    .logo img {
        height: 80px; /* Consistent with big screens */
        width: 120px;
        margin-top: 8px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .header-container {
        padding: 8px 15px; /* Further reduced padding for medium screens */
    }
    .logo img {
        height: 70px; /* Slightly smaller for medium screens */
        width: 105px; /* Adjusted proportionally */
        margin-top: 6px;
    }
}

@media (max-width: 768px) {
    /* Unchanged from original */
    .header-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px;
    }
    .logo {
        margin-right: auto;
    }
    .logo img {
        height: 100px; /* Revert to original for small screens */
        width: 150px;
        margin-top: 10px;
    }
}

body {
    overflow-x: hidden;
    padding-top: 130px; /* Reduced from 140px to account for smaller header (~90px + 40px top-bar) */
}

@media (min-width: 769px) and (max-width: 992px) {
    body {
        padding-top: 120px; /* Further reduced for medium screens (~80px header + 40px top-bar) */
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 160px; /* Unchanged for small screens */
    }
}
/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes nav to the right */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #0056b3;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    display: block;
    margin-top: 10px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-dropdown::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
}

/* Search and Cart Section */
.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 30px; /* Space between nav-links and actions */
}

/* Search and Cart Section */


.search-bar {
    display: flex;
    margin-right: 20px;
    margin-top: 10px;
}

.search-bar input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 200px;
}

.search-bar button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Mobile Navigation */

/* Mobile Navigation Adjustments */
/* Mobile Navigation Adjustments */
@media (max-width: 992px) {
    .header-container {
        position: relative;
        flex-wrap: nowrap;
        padding: 0 15px;
        overflow: visible;
        align-items: center;
        justify-content: space-between; /* Maintain logo left, nav right */
    }
    
    .logo {
        margin-right: auto; /* Keep logo left */
    }
    
    .main-nav {
        margin-left: auto; /* Keep nav right */
    }
    
    .nav-links {
        display: flex;
        position: static;
        width: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        margin-top: 25px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0 15px;
    }
    
    .nav-actions {
        margin-left: auto; /* Push actions to the right */
        width: auto;
        margin-top: 25px;
    }
    
    .search-bar {
        flex-grow: 0;
        margin-right: 0;
    }
}


@media (max-width: 768px) {
    .top-bar {
        height: 60px;
        padding: 15px 0;
        box-sizing: border-box;
    }

    body {
        padding-top: 160px; /* Adjust for larger top-bar (60px) + header (approx 100px) */
    }

    .top-bar-container {
        flex-direction: row;
        align-items: center;
        padding: 0 15px;
    }

    .left-links, .right-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .top-links li {
        margin-right: 10px;
        margin-bottom: 0;
    }

    .top-links a {
        font-size: 12px;
    }

   
}

/* Banner Carousel */
.banner-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    height: auto;
    aspect-ratio: 16/9;
}

.banner-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    height: auto;
    position: relative;
    border-radius: 20px;
}

.banner-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.banner-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.banner-nav button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.banner-dot.active {
    background: white;
}

/* Product Categories Section */
.product-categories {
    background-color: var(--light);
    padding: 60px 0;
    text-align: center;
}

.categories-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    display: block;
    text-decoration: none;
    color: var(--dark);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.product-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-details {
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.detail-label {
    color: var(--gray);
    font-weight: 500;
}

.detail-value {
    color: var(--dark);
    font-weight: 500;
}

.detail-tax {
    font-size: 12px;
    color: var(--gray);
    text-align: right;
    margin-top: 5px;
    font-style: italic;
}

.product-mrp {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 14px;
}

.product-points {
    color: var(--accent);
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.buy-now, .referral-id {
    flex: 1;
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
}

.buy-now {
    background-color: var(--primary);
    color: white;
}

.buy-now:hover {
    background-color: var(--secondary);
}

.referral-id {
    background-color: #f0f0f0;
    color: var(--dark);
}

.referral-id:hover {
    background-color: #e0e0e0;
}

/* Features Section */
/* Features Section */
.features {
    padding: 10px 0 0; /* Reduced bottom padding from 60px to 30px */
    background-color: var(--light);
   
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    background-color: rgba(0, 86, 179, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Footer */

        .footer {
            background-color: #040834dd; /* Matches the dark blue gradient from the image */
            padding: 40px 20px;
            font-family: Arial, sans-serif;
            border-top: 1px solid #e7e7e7;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-section {
            width: 22%; /* Adjusted width to fit four sections */
            margin-bottom: 20px;
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }

        .footer-section.logo-section {
            display: flex;
            align-items: flex-start;
        }

        .footer-section.logo-section img {
            max-width: 150px; /* Adjust logo size to match the image */
            height: auto;
        }

        .footer-section h3 {
            font-size: 19px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff; /* White text */
            text-transform: uppercase; /* Match the uppercase style in the image */
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #fff; /* White text */
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #ccc; /* Lighter shade on hover */
            text-decoration: underline;
        }

        .contact-info {
            background-color: #fff; /* White background for contact section as in the image */
            padding: 20px;
            border-radius: 8px;
            color: #000; /* Black text for contrast */
        }

        .contact-info .contact-details {
            flex: 1;
            margin-top: 5px;
        }

        .contact-info .contact-details p {
            color: #000; /* Black text for visibility on white background */
            margin:0 0 5px 0;
            line-height: 1.5;
           
        }

        .footer-copyright {
            width: 100%;
            padding-top: 20px;
            border-top: 1px solid #e7e7e7;
            display: flex;
            justify-content: space-between; /* Align copyright left, social icons right */
            align-items: center;
            color: #fff;
            font-size: 16px;
        }

        .footer-copyright p {
            margin: 0;
        }

        .footer-copyright .connect-with-us {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-copyright .connect-with-us h3 {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            margin: 0 10px 0 0;
            text-transform: uppercase;
        }

        .footer-copyright .connect-with-us .social-icons {
            display: flex;
            flex-direction: row; /* Horizontal layout as in the image */
            gap: 15px;
            align-items: center;
        }

        .footer-copyright .connect-with-us .social-icons a {
            color: #fff;
            font-size: 21px;
            text-decoration: none;
        }

        .footer-copyright .connect-with-us .social-icons a:hover {
            color: #ccc;
        }

        /* Media Query for Responsiveness */
        @media (max-width: 768px) {
            .footer-section {
                width: 100%; /* Stack sections vertically on smaller screens */
                text-align: left; /* Align text left for better readability */
                margin-left: 20px;
            }

            .footer-section.logo-section {
                text-align: left; /* Align logo left on mobile */
                margin-left: 20px;
            }

            .footer-copyright {
                flex-direction: column; /* Stack copyright and social icons vertically on mobile */
                align-items: center;
                text-align: center;
                gap: 10px;
            }

            .footer-copyright .connect-with-us {
                justify-content: center; /* Center social icons on mobile */
            }

            .footer-copyright .connect-with-us .social-icons {
                flex-direction: row; /* Keep horizontal on mobile for consistency with image */
                gap: 10px;
            }

            .footer-section p {
                text-align: left;
                margin-left: 15px;
            }

            .contact-info .contact-details p {
                color: #000 !important; /* Ensure black text in media query for white background */
            }
        }
    
/* Responsive Adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: block;
    }
    
    .banner-container {
        height: 300px;
    }
    
    
  
}

@media (max-width: 768px) {
  
    
    .banner-container {
        height: 200px;
        margin-top:30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
   
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #f5f5f5;
}

.testimonial-image img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.testimonial-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 50%;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.2);
}

.indicator.active {
    background: var(--primary);
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-image img {
        max-height: 200px;
    }
    
    .carousel-prev, .carousel-next {
        padding: 8px 12px;
        font-size: 16px;
          top: 30%;
    }
}

.quote {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        padding: 20px 20px 0;
    }
    
    .testimonial-image img {
        max-height: 200px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    flex: 1;
    padding: 20px;
}

.testimonial-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.client-info h4 {
    color: #0056b3;
    margin-bottom: 5px;
    font-size: 18px;
}

.client-info span {
    color: #666;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.slider-controls button {
    background: #0056b3;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: #003366;
}

.slider-dots {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: #0056b3;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial-image, 
    .testimonial-text {
        width: 100%;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
}

/* Legal Documents Section */
.legal-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.documents-grid-horizontal {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Retain horizontal scrollbar */
    padding: 20px 0;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: var(--primary) #f1f5f9; /* Thumb and track color */
}

.document-card-horizontal {
    min-width: 280px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.document-image-container-horizontal {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f1f5f9;
}

.legal-document-img-horizontal {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.document-info-horizontal {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.document-info-horizontal h3 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.document-info-horizontal p {
    color: #64748b;
    font-size: 14px;
}

.documents-grid-horizontal::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}

.documents-grid-horizontal::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.documents-grid-horizontal::-webkit-scrollbar-thumb {
    background-color: var(--primary); /* #0056b3 */
    border-radius: 10px;
}

@media (max-width: 768px) {
    .document-card-horizontal {
        min-width: 240px;
    }
    
    .document-image-container-horizontal {
        height: 180px;
    }
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.blog-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    align-items: center;
}

.blog-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.blog-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.blog-content {
    flex: 1;
    padding: 30px;
}

.blog-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        padding: 20px 20px 0;
    }
    
    .blog-content {
        padding: 20px;
    }
}

/* Last Image Section */
.last-image-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.full-width-image {
    width: 100%;
    text-align: center;
}

.final-image {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* About Us Section */
.company-intro, .our-story, .our-approach, .our-strength {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #0056b3;
}

.intro-content p, .story-text p, .subheading, .strength-intro, .strength-outro {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.subheading {
    text-align: center;
    margin-bottom: 40px;
}

.approach-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.approach-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.approach-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0056b3;
}

.approach-card p {
    font-size: 15px;
    color: #666;
}

.our-strength {
    text-align: center;
}

.strength-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

.strength-list {
    list-style-type: none;
    padding: 0;
    margin: 30px auto;
    text-align: left;
    display: inline-block;
}

.strength-list li {
    padding: 10px 0;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.strength-list li:before {
    content: "•";
    color: #0056b3;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 7px;
}

@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-img {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .approach-card {
        min-width: 100%;
    }
}

/* Business Opportunity */
.business-opportunity {
    padding: 0 0 40px; /* Reduced top padding from 80px to 30px */
    background-color: #f9f9f9;
}

.opportunity-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.opportunity-intro h2 {
    color: #0056b3;
    margin-bottom: 20px;
}

.opportunity-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.income-potential {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.potential-content {
    flex: 1;
}

.potential-content h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 24px;
}

.potential-content ul {
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
}

.potential-content li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.potential-content li:before {
    content: "✓";
    color: #0056b3;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.potential-image {
    flex: 1;
}

.potential-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.business-model {
    text-align: center;
    margin: 80px 0;
}

.business-model h3 {
    color: #0056b3;
    margin-bottom: 30px;
    font-size: 24px;
}

.business-model p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.model-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.model-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.model-card h4 {
    color: #0056b3;
    margin-bottom: 15px;
}

.support-system {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 60px;
}

.support-system h3 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 40px;
    font-size: 24px;
}

.support-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.support-text {
    flex: 1;
}

.support-text ul {
    list-style-type: none;
    padding: 0;
    margin: 25px 0 35px;
}

.support-text li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.support-text li:before {
    content: "•";
    color: #0056b3;
    position: absolute;
    left: 0;
    font-size: 24px;
    top: 5px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #003d82;
}

.support-image {
    flex: 1;
}

.support-image img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .income-potential,
    .support-content {
        flex-direction: column;
    }
    
    .potential-image,
    .support-image {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .business-opportunity {
        padding: 40px 0;
    }
    
    .income-potential,
    .support-system {
        padding: 30px;
    }
    
    .model-card {
        min-width: 150px;
    }
}

/* Section Spacing */
.company-intro {
    padding: 80px 0 40px;
}

.our-story {
    padding: 60px 0;
}

.our-approach {
    padding: 60px 0;
}

.our-strength {
    padding: 60px 0 80px;
}

/* Help Center Section */
.help-center-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #0056b3;
    font-size: 32px;
}

.help-center-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3, .contact-form h3 {
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 24px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-method p, .contact-method address {
    color: #555;
    line-height: 1.6;
    font-style: normal;
}

.timings {
    color: #666;
    font-size: 14px;
}

.form-instruction {
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.required {
    color: #e63946;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0056b3;
    outline: none;
}

#help-form .form-group textarea {
    min-height: 70px;
    resize: vertical;
}

.phone-input {
    display: flex;
    align-items: center;
}

.phone-input .prefix {
    padding: 12px 10px;
    background: #f1f5f9;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.phone-input input {
    border-radius: 0 4px 4px 0 !important;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
}

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #003d82;
}

@media (max-width: 768px) {
    .help-center-grid {
        grid-template-columns: 1fr;
    }
    
    .help-center-section {
        padding: 50px 20px;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #0056b3;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    line-height: 1.6;
}

/* Policies Section */
.policies-section {
    padding: 60px 0;
    background-color: #f1f5f9;
}

.policy-tabs {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
    position: relative;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #0056b3;
    font-weight: 600;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0056b3;
}

.tab-contents {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #0056b3;
    margin-bottom: 20px;
}

.scrollable-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

.scrollable-content::-webkit-scrollbar {
    width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: var(--primary); /* #0056b3 */
    border-radius: 10px;
}

.scrollable-content h4, 
.scrollable-content h5 {
    color: #1e293b;
    margin-top: 20px;
    margin-bottom: 10px;
}

.scrollable-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.scrollable-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .tab-btn.active::after {
        width: 3px;
        height: 100%;
        bottom: 0;
        left: 0;
    }
    
    .tab-contents {
        padding: 20px;
    }
    
    .scrollable-content {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px;
    }

    .logo {
        margin-right: auto;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        margin-top: 0; /* Remove space between logo and nav links */
    }

    .nav-links {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-actions {
        margin-left: 0;
        margin-top: 0;
        width: auto;
    }

    .search-bar {
        display: flex;
        width: auto;
    }

    .search-bar input {
        width: 150px;
        box-sizing: border-box;
    }

    .logo, .nav-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}



        /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Signin Overlay */
        .signin-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            transition: all 0.3s ease;
        }

        .signin-overlay.active {
            display: block;
        }

        /* Signin Panel */
        .signin-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 400px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            overflow-y: auto;
            padding: 30px;
            direction: rtl;
            text-align: right;
            scrollbar-width: thin; /* For Firefox */
            scrollbar-color: #ccc transparent; /* For Firefox */
        }

        /* Webkit scrollbar styling (Chrome, Edge, Safari) */
        .signin-panel::-webkit-scrollbar {
            width: 8px;
        }

        .signin-panel::-webkit-scrollbar-track {
            background: transparent;
        }

        .signin-panel::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        /* In RTL, move the scrollbar to the right (visual left side) */
        .signin-panel {
            direction: rtl;
            /* Force scrollbar to the right in RTL */
            -webkit-transform: scaleX(-1); /* Mirror the panel to move scrollbar */
            transform: scaleX(-1);
        }

        .signin-panel > * {
            -webkit-transform: scaleX(-1); /* Un-mirror the content inside */
            transform: scaleX(-1);
        }

        .signin-overlay.active .signin-panel {
            right: 0;
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            z-index: 1001;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: #333;
        }

        /* Ensure close button is on the left in Forgot Password form */
        .forgot-password-form .close-btn {
            right: 20px !important;
            left: auto !important;
            display: block !important;
            visibility: visible !important;
            z-index: 1002 !important;
        }

        /* Back Button */
        .back-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            transition: color 0.2s;
        }

        .back-btn:hover {
            color: #333;
        }

        /* Ensure back button is on the left in Forgot Password form */
        .forgot-password-form .back-btn {
            right: 20px !important;
            left: auto !important;
            display: block !important;
            visibility: visible !important;
            z-index: 1002 !important;
        }

        /* Common Form Styles */
        .welcome-form, .business-owner-welcome-form, .signin-form, .forgot-password-form, .registration-form {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 14px;
            direction: rtl;
            padding: 30px 20px;
        }

        .welcome-form h1, .business-owner-welcome-form h1, .signin-form h2, .forgot-password-form h2, .registration-form h2 {
            font-size: 24px;
            font-weight: 600;
            color: #0056b3;
            text-align: center;
            margin-bottom: 15px;
        }

        .welcome-form p, .business-owner-welcome-form p, .signin-form p, .forgot-password-form p, .registration-form p {
            font-size: 14px;
            color: #333;
            margin-bottom: 10px;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            text-align: left; /* Default alignment for most labels */
        }

        /* Specific labels to align left in RTL (visual right side) */
        .form-group label[for="mobile"],
        .form-group label[for="password"],
        .form-group label[for="resetMobile"],
        .registration-form .form-group label:nth-child(4), /* Mobile Number in Registration form */
        .registration-form .form-group label:nth-child(5) /* Create Password in Registration form */
        {
            text-align: left; /* Align to left in RTL (visual right side) */
        }

        /* Align Registered mobile number label to the right in RTL (visual left side) */
        .form-group label.registered-mobile {
            text-align: left !important; /* Ensure this takes precedence */
        }

        .phone-input {
            display: flex;
            direction: ltr;
        }

        .phone-input .prefix {
            padding: 10px 10px; /* Reduced padding to match height */
            background: #f1f5f9;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
            color: #333;
            height: 40px; /* Match the height of the input */
            line-height: 20px; /* Center the text vertically */
        }

        .phone-input input {
            padding: 10px 15px; /* Reduced padding to match height */
            border: 1px solid #ddd;
            border-left: none;
            border-radius: 0 4px 4px 0;
            width: 100%;
            font-size: 14px;
            color: #333;
            height: 40px; /* Match the height of the password input */
        }

        input[type="password"],
        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            padding: 10px 15px; /* Reduced padding for consistency */
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            font-size: 14px;
            color: #333;
            height: 40px; /* Consistent height for all inputs */
        }

        input[type="password"],
        input[type="tel"] {
            direction: ltr;
        }

        input[type="text"],
        input[type="email"] {
            direction: rtl;
            text-align: left;
        }

        /* Radio Buttons */
        .radio-group {
            margin-bottom: 20px;
        }

        .radio-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            text-align: left; /* Align radio group label to the right in RTL context */
        }

        .radio-options {
            display: flex;
            gap: 15px;
            direction: ltr;
        }

        .radio-options input[type="radio"] {
            margin-left: 5px;
        }

        .radio-options label {
            font-size: 14px;
            color: #333;
            font-weight: normal;
        }

        /* Conditional Fields */
        .rbo-field, .pincode-field {
            display: none;
            margin-bottom: 20px;
        }

        /* Forgot Password Link */
        .forgot-password {
            display: block;
            text-align: left;  
            margin-top: 8px;
            color: #0056b3;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s;
        }

        .forgot-password:hover {
            color: #003d82;
        }

        /* Buttons */
        .signin-btn {
            width: 100%;
            padding: 14px;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            margin: 20px 0;
            transition: background 0.3s;
        }

        .signin-btn:hover {
            background-color: #003d82;
        }

        /* Social Login */
        .social-login {
            text-align: center;
            margin: 25px 0;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        .social-login p {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .social-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .social-btn {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .social-btn i {
            font-size: 18px;
            color: #333;
        }

        .social-btn:hover {
            background: #f5f5f5;
        }

        /* Registration Options */
        .register-option {
            text-align: center;
            margin: 25px 0;
            border-top: 1px solid #eee;
            padding-top: 25px;
        }

        .register-types {
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }

        .register-type-heading {
            font-size: 16px;
            color: #0056b3;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .register-btn {
            width: 100%;
            padding: 12px;
            border: 1px solid #333;
            border-radius: 25px;
            background: transparent;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .register-btn:hover {
            background: #f5f5f5;
        }

        /* Legal Links */
        .legal-links {
            text-align: center;
            margin-top: 25px;
            font-size: 13px;
        }

        .legal-links a {
            color: #666;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.2s;
        }

        .legal-links a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

        /* Welcome Form Specific Styles */
        .welcome-form, .business-owner-welcome-form {
            text-align: center;
            display: none;
        }

        .welcome-form .or-divider, .business-owner-welcome-form .or-divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }

        .welcome-form .or-divider hr, .business-owner-welcome-form .or-divider hr {
            flex: 1;
            border: none;
            border-top: 1px solid #eee;
        }

        .welcome-form .or-divider span, .business-owner-welcome-form .or-divider span {
            margin: 0 10px;
            color: #666;
            font-size: 14px;
        }

        /* Forgot Password Form */
        .forgot-password-form {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 30px 20px;
        }

        .forgot-password-form .info-text {
            text-align: center;
            margin-top: 20px;
        }

        /* Style for the "Has your phone number changed?" heading */
        .forgot-password-form .info-heading {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        /* Registration Form */
        .registration-form {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 30px 20px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .signin-form, .forgot-password-form, .welcome-form, .business-owner-welcome-form, .registration-form {
                padding: 20px;
            }

            .form-group {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .signin-panel {
                width: 90%;
                right: -90%;
            }
        }
    

  
