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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFFFFF;
    line-height: 1.6;
    color: #1A1A2E;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.header {
    background-color: #FFFFFF;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    
}

.eagle-logo {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logomain {
    width: 60px;
    height: 60px;
}

.search-container {
    flex: 1;
    max-width: 200px;
    margin: 0 10px;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
    background: #F5F5F5;
    color: #1A1A2E;
}

.search-box:focus {
    border-color: #007BFF;
    background: #FFFFFF;
}

.brand-title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A2E;
    letter-spacing: 0.8px;
    
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 6px;
    position: relative;
}

.nav-item {
    padding: 8px 15px;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A2E;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: #F5F5F5;
    color: #007BFF;
    transform: translateY(-1px);
}

.nav-item.active {
    background: #F5F5F5;
    border-color: #007BFF;
    color: #007BFF;
}

.nav-item.shop, .nav-item.more {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    min-width: 180px;
    z-index: 1000;
}

.nav-item.shop:hover .dropdown, .nav-item.more:hover .dropdown {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A2E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #F5F5F5;
    color: #007BFF;
}

.language-selector {
    padding: 6px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #1A1A2E;
}

/* Social Icons */
.social-icons {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.social-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: #F5F5F5;
}

/* Banner Section */
/* Banner Section */
.banner-section {
    background: #FFFFFF;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #F5F5F5;
    position: relative; /* Enable positioning for child elements */
}

.banner-container {
    position: relative;
    display: inline-block; /* Wraps content tightly */
    max-width: 100%;
}

.banner-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.banner-buttons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
     /* Space between buttons */
}

.banner-btn {
    padding: 6px 12px;
    background: transparent;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100px;
}


.banner-btn:hover {
    background: rgba(0, 0, 0, 0.1); /* Slight background on hover for feedback */
    transform: translateY(-2px);
}

.banner-btn-left {
    margin-right: 50px; /* Adjust spacing for center-left */
}

.banner-btn-right {
    margin-left: 50px; /* Adjust spacing for center-right */
}

/* Hero Section */
.hero-section {
    background: #FFFFFF;
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-badge {
    display: inline-block;
    background: #F5F5F5;
    color: #1A1A2E;
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
}

.hero-subtitle {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature {
    background: #F5F5F5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #F5F5F5;
    width: 160px;
}

.hero-feature h3 {
    color: #1A1A2E;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.hero-feature p {
    color: #333333;
    font-size: 11px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-primary {
    background: #007BFF;
    color: #ffffff;
}

.hero-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: #ffffff;
    color: #333;
    border: 1px solid #F5F5F5;
}

.hero-btn-secondary:hover {
    background: #F5F5F5;
    color: #007BFF;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #1A1A2E;
    margin-bottom: 30px;
    letter-spacing: 0.8px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #007BFF;
    border-radius: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

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

.best-seller-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #F5F5F5;
    color: #1A1A2E;
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 9px;
    font-weight: bold;
}
.yuuu{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.yuuu .yuu{
    width: 100px;
    border: 1px solid #000 ;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
    color: white;
    background-color: #000;
}
.yuuu .yuu:hover{
    background-color: #ffffff;
    color: #000000;
    width: 150px;
}
.product-icon {
    width: 100px;
    height: 100px;
    margin: 15px auto;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1A1A2E;
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
}

.product-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.product-title {
    font-size: 16px;
    font-weight: bold;
    color: #1A1A2E;
    margin: 10px 0 8px;
}

.product-price {
    font-size: 18px;
    color: #1A1A2E;
    font-weight: bold;
}

/* Specific product styling */
.iptv-card .product-icon img::before { content: "📺"; }
.youtube-card .product-icon img::before { content: "▶️"; }
.netflix-card .product-icon img::before { content: "N"; }
.linkedin-card .product-icon img::before { content: "in"; }
.spotify-card .product-icon img::before { content: "♪"; }
.canva-card .product-icon img::before { content: "C"; }
.instagram-card .product-icon img::before { content: "📷"; }
.nordvpn-card .product-icon img::before { content: "🛡️"; }

/* WHAT THEY SAY Section */
.testimonials-section {
    margin: 0;
    text-align: center;
    background: #FFFFFF;
    padding: 0;
    height: calc(50vh - 20px); /* Reduced height to 50% of viewport height */
    position: relative;
    top: 20px; /* 20% margin from top */
}

.carousel-container {
    /* height: 100%; */
    background: #F5F5F5;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #F5F5F5;
    position: relative;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 25%; /* Default 4 images visible */
    height: 100%;
    object-fit: cover;
    margin: 0 5px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Community and Highlights Section */
.community-highlights-section {
    margin: 300px 0 0 0;
    background: #1A1A2E;
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.community-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}

.community-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0 15px;
}

.community-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.community-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.community-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    background: #F5F5F5;
}

.highlights-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    color: #1A1A2E;
    position: relative;
}

/* Emoji icons using ::before */
.support-icon::before { content: "📞"; }
.trust-icon::before { content: "🏆"; }
.price-icon::before { content: "💰"; }
.globe-icon::before { content: "🌍"; }

.highlight-text {
    font-size: 13px;
    font-weight: bold;
    color: #FFFFFF;
}

/* Uncover Categories Section */
.categories-section {
    margin: 40px 0;
    background: #F5F5F5;
    padding: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.categories-grid, .categories-grid-row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.category-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #F5F5F5;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #007BFF;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: #1A1A2E;
}

.category-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.category-title {
    font-size: 14px;
    font-weight: bold;
    color: #1A1A2E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Category-specific styling */
.iptv-4k .category-icon img::before { content: "📺"; }
.career-growth-cat .category-icon img::before { content: "📈"; }
.streaming-cat .category-icon img::before { content: "📡"; }
.social-media-cat .category-icon img::before { content: "📱"; }
.designing-cat .category-icon img::before { content: "🎨"; }
.utilities-cat .category-icon img::before { content: "🔧"; }

/* Footer Styles */
.footer {
    background: #FFFFFF;
    padding: 40px 0 15px;
    border-top: 2px solid #F5F5F5;
    margin-top: 60px;
    color: #1A1A2E;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.newsletter-box {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    background: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    margin-left: 0;
}

.newsletter-title {
    font-size: 18px;
    font-weight: bold;
    color: #1A1A2E;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.newsletter-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #F5F5F5;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    margin-bottom: 12px;
    background: #FFFFFF;
    color: #1A1A2E;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #007BFF;
}

.subscribe-btn {
    width: 100%;
    padding: 10px;
    background: #1A1A2E;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #007BFF;
    transform: translateY(-2px);
}

.footer-divider {
    width: 1px;
    height: 80px;
    background: #F5F5F5;
    margin: 0 20px;
}

.footer-links {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-link {
    font-size: 13px;
    color: #1A1A2E;
    text-decoration: none;
    font-weight: medium;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007BFF;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    color: #1A1A2E;
    width: 100%;
}

/* Laptop Devices (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    .search-container {
        max-width: 300px;
    }

    .brand-title {
        font-size: 22px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-item {
        padding: 8px 16px;
        font-size: 14px;
    }

    .dropdown {
        min-width: 200px;
    }

    .dropdown-item {
        font-size: 14px;
        padding: 8px 16px;
    }

    .logomain {
        width: 75px;
        height: 75px;
    }

    .banner-image {
        max-height: 400px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-feature {
        width: 190px;
    }

    .section-title {
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .product-card {
        min-height: 290px;
    }

    .product-icon {
        width: 95px;
        height: 95px;
    }

    .product-icon img {
        width: 95px;
        height: 95px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .community-title {
        font-size: 28px;
    }

    .categories-grid, .categories-grid-row2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-section {
        height: calc(50vh - 40px); /* Reduced height */
        top: 40px;
    }

    .carousel-container {
        padding: 20px;
    }

    .carousel-prev, .carousel-next {
        padding: 12px;
        font-size: 16px;
    }

    .carousel-item {
        flex: 0 0 25%;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-container {
        gap: 25px;
    }
}

/* Tablet Devices (576px to 768px) */
@media (min-width: 576px) and (max-width: 768px) {
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
    }

    .search-container {
        max-width: 250px;
        margin: 0 10px;
    }

    .brand-title {
        font-size: 20px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-item {
        padding: 7px 14px;
        font-size: 13px;
    }

    .dropdown {
        min-width: 180px;
    }

    .dropdown-item {
        font-size: 13px;
        padding: 7px 14px;
    }

    .logomain {
        width: 70px;
        height: 70px;
    }

    .banner-image {
        max-height: 350px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-feature {
        width: 180px;
    }

    .hero-feature h3 {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        min-height: 280px;
    }

    .product-icon {
        width: 150px;
        height: 150px;
    }

    .product-icon img {
        width: 150px;
        height: 150px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-title {
        font-size: 22px;
    }

    .categories-grid, .categories-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-section {
        height: calc(50vh - 20px); /* Reduced height */
        top: 20px;
    }

    .carousel-container {
        padding: 15px;
    }

    .carousel-prev, .carousel-next {
        padding: 10px;
        font-size: 14px;
    }

    .carousel-item {
        flex: 0 0 25%;
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .newsletter-box {
        max-width: 300px;
    }

    .footer-divider {
        display: block;
    }
}
/* Media Queries for Responsiveness */

/* Small Mobile Devices (up to 576px) */
@media (max-width: 576px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px;
    }

    .search-container {
        max-width: 100%;
        margin: 0;
    }

    .brand-title {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .nav-item {
        padding: 6px 12px;
        font-size: 12px;
    }

    .dropdown {
        width: 100%;
        min-width: 150px;
    }

    .dropdown-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .language-selector {
        padding: 6px 8px;
        font-size: 12px;
    }

    .logomain {
        width: 50px;
        height: 50px;
    }

    .banner-section {
        padding: 10px 0;
        margin: 0; /* Remove any margin to ensure full width */
        width: 100vw; /* Set to full viewport width */
    }

    .banner-image {
        max-width: 100vw; /* Ensure image spans full viewport width */
        width: 100%; /* Ensure no gaps */
        height: auto; /* Maintain aspect ratio */
        border-radius: 0; /* Remove border-radius for edge-to-edge display */
        margin: 0; /* Remove any margin */
    }

    .hero-section {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
        max-width: 90%;
    }

    .hero-feature {
        width: 140px;
        padding: 12px;
    }

    .hero-feature h3 {
        font-size: 14px;
    }

    .hero-feature p {
        font-size: 10px;
    }

    .hero-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        min-height: 240px;
        padding: 12px;
    }

    .product-icon {
        width: 120px;
        height: 120px;
        margin: 10px auto;
    }

    .product-icon img {
        width: 120px;
        height: 120px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-row2 {
        grid-template-columns: 1fr;
    }

    .service-box {
        min-height: 70px;
        padding: 12px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .service-icon img {
        width: 16px;
        height: 16px;
    }

    .service-name {
        font-size: 10px;
    }

    .testimonials-section {
        height: calc(40vh - 10px); /* Further reduced height for mobile */
        top: 10px;
    }

    .carousel-container {
        padding: 10px;
    }

    .carousel-prev, .carousel-next {
        padding: 8px;
        font-size: 12px;
    }

    .carousel-item {
        flex: 0 0 50%; /* 2 images visible on mobile */
    }

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .community-highlights-section {
        margin: 200px 0 0 0;
        padding: 20px 0;
    }

    .community-title {
        font-size: 20px;
    }

    .community-social {
        gap: 15px;
    }

    .community-icon {
        width: 50px;
        height: 50px;
    }

    .community-icon img {
        width: 35px;
        height: 35px;
    }

    .categories-section {
        margin: 20px 0;
        padding: 20px 0;
    }

    .categories-grid, .categories-grid-row2 {
        gap: 15px;
    }

    .category-card {
        padding: 15px;
    }

    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }

    .category-icon img {
        width: 70px;
        height: 70px;
    }

    .category-title {
        font-size: 12px;
    }

    .social-icons {
        right: 8px;
        gap: 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon img {
        width: 38px;
        height: 38px;
    }

    .footer {
        padding: 30px 0 10px;
        margin-top: 40px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .newsletter-box {
        max-width: 100%;
        padding: 15px;
    }

    .newsletter-title {
        font-size: 16px;
    }

    .newsletter-input {
        padding: 8px 12px;
        font-size: 12px;
    }

    .subscribe-btn {
        padding: 8px;
        font-size: 12px;
    }

    .footer-divider {
        display: none;
    }

    .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer-link {
        font-size: 12px;
    }

    .copyright {
        font-size: 10px;
    }
}


/* Large Screens (992px and above) */
@media (min-width: 992px) {
    .header {
        padding: 20px 0;
    }

    .header-container {
        flex-wrap: nowrap;
        padding: 0 20px;
    }

    .search-container {
        max-width: 250px;
        margin: 0 20px;
    }

    .brand-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .nav-menu {
        gap: 10px;
        padding: 10px;
    }

    .nav-item {
        padding: 10px 20px;
        font-size: 14px;
    }

    .dropdown {
        min-width: 200px;
    }

    .dropdown-item {
        font-size: 14px;
        padding: 10px 20px;
    }

    .language-selector {
        padding: 8px 12px;
        font-size: 14px;
    }

    .logomain {
        width: 80px;
        height: 80px;
    }

    .banner-section {
        padding: 20px 0;
    }

    .banner-image {
        max-height: 500px;
    }

    .hero-section {
        padding: 80px 0;
        margin-bottom: 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-badge {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 600px;
    }

    .hero-features {
        gap: 30px;
        margin-bottom: 40px;
    }

    .hero-feature {
        width: 200px;
        padding: 20px;
    }

    .hero-feature h3 {
        font-size: 20px;
    }

    .hero-feature p {
        font-size: 12px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .main-content {
        padding: 20px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .section-title::after {
        width: 60px;
        bottom: -10px;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

    .product-card {
        min-height: 300px;
        padding: 20px;
    }

    .product-icon {
        width: 100px;
        height: 100px;
        margin: 20px auto;
    }

    .product-icon img {
        width: 100px;
        height: 100px;
    }

    .product-title {
        font-size: 18px;
        margin: 15px 0 10px;
    }

    .product-price {
        font-size: 20px;
    }

    .best-seller-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .premium-stuff-section {
        margin: 80px 0;
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    .services-grid-row2 {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 800px;
    }

    .service-box {
        min-height: 100px;
        padding: 20px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .service-icon img {
        width: 20px;
        height: 20px;
    }

    .service-name {
        font-size: 12px;
    }

    .testimonials-section {
        height: calc(50vh - 80px); /* Reduced height */
        top: 80px;
    }

    .carousel-container {
        padding: 40px;
    }

    .carousel-prev, .carousel-next {
        padding: 15px;
        font-size: 18px;
    }

    .carousel-item {
        flex: 0 0 25%;
    }

    .carousel-item img {
        width: 100%;
        height: 150%; /* Increased image height for web view */
        object-fit: cover;
    }

    .community-highlights-section {
        margin: 600px 0 0 0;
        padding: 60px 0;
    }

    .community-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .community-social {
        gap: 30px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .community-icon {
        width: 80px;
        height: 80px;
    }

    .community-icon img {
        width: 60px;
        height: 60px;
    }

    .highlights-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .categories-section {
        margin: 80px 0;
        padding: 60px 0;
    }

    .categories-grid, .categories-grid-row2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .category-card {
        padding: 30px;
    }

    .category-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        font-size: 28px;
    }

    .category-icon img {
        width: 100px;
        height: 100px;
    }

    .category-title {
        font-size: 16px;
    }

    .social-icons {
        right: 15px;
        gap: 10px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
    }

    .footer {
        padding: 60px 0 20px;
        margin-top: 100px;
    }

    .footer-container {
        gap: 20px;
        padding: 0 20px;
    }

    .newsletter-box {
        max-width: 350px;
        padding: 30px;
        margin-left: 50px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .newsletter-input {
        padding: 12px 20px;
        font-size: 14px;
    }

    .subscribe-btn {
        padding: 12px;
        font-size: 14px;
    }

    .footer-divider {
        height: 100px;
        margin: 0 30px;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-link {
        font-size: 14px;
    }

    .copyright {
        font-size: 12px;
        margin-top: 40px;
    }
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex; /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    position: absolute; /* Use absolute positioning for precise centering */
    top: 50%; /* Move to 50% from top */
    left: 50%; /* Move to 50% from left */
    transform: translate(-50%, -50%); /* Shift back by half its size */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #1A1A2E;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #007BFF;
}

.modal-product {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%; /* Ensure it respects parent width */
}

.modal-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.modal-details {
    flex: 1;
    text-align: left;
    width: 100%; /* Ensure it fills available space */
}

.modal-product-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: 12px;
}

.modal-price-container {
    margin-bottom: 12px;
}

.modal-product-price {
    font-size: 16px;
    color: #1A1A2E;
    font-weight: 700;
    margin-right: 10px;
}

.modal-validity-dropdown {
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    color: #1A1A2E;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.modal-validity-dropdown:focus {
    border-color: #007BFF;
    outline: none;
}

.modal-quantity-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.quantity-btn {
    padding: 5px 10px;
    background: #8B6F47;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover:not(:disabled) {
    background: #6B4E31;
}

.quantity-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.modal-quantity {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A2E;
}

.add-to-cart-confirm {
    padding: 10px 20px;
    background: #1A1A2E;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-confirm:hover {
    background: #007BFF;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .modal-content {
        padding: 15px;
        width: 95%;
    }

    .modal-product {
        flex-direction: column;
        text-align: center;
    }

    .modal-product-image {
        width: 100px;
        height: 100px;
    }

    .modal-product-title {
        font-size: 16px;
    }

    .modal-product-price {
        font-size: 14px;
    }

    .modal-validity-dropdown {
        padding: 6px;
        font-size: 12px;
    }

    .quantity-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .modal-quantity {
        font-size: 14px;
    }

    .add-to-cart-confirm {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .modal-content {
        padding: 18px;
    }

    .modal-product-image {
        width: 110px;
        height: 110px;
    }

    .modal-product-title {
        font-size: 17px;
    }

    .modal-product-price {
        font-size: 15px;
    }
}
/* Success Modal Styles */
.success-modal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.success-modal-content {
    position: relative;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    margin: auto;
}

.success-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    color: #1A1A2E;
    cursor: pointer;
    transition: color 0.3s ease;
}

.success-modal-close:hover {
    color: #007BFF;
}
/* Mobile Menu Styles */
/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1A1A2E;
    padding: 8px;
}

/* For mobile screens */
@media (max-width: 576px) {
    .header-container {
        display: flex;
        flex-direction: column;
        padding: 10px 15px;
        position: relative;
    }

    /* Create a flex container for the top row */
    .header-top-row {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .logo {
        flex: 0 0 auto;
        width: 40px;
    }

    .brand-title {
        flex: 1;
        text-align: center;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 10px;
    }

    .mobile-menu-btn {
        display: block;
        flex: 0 0 auto;
        width: 40px;
    }

    /* Search box below */
    .search-container {
        width: 100%;
        margin-top: 10px;
    }

    /* Navigation menu */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 15px;
        z-index: 99;
    }
    
    /* Rest of your existing mobile styles... */

    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        text-align: left;
        margin-bottom: 8px;
    }
    
    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        width: 100%;
    }
    
    .nav-item.shop .dropdown,
    .nav-item.more .dropdown {
        display: none;
    }
    
    .nav-item.shop.active .dropdown,
    .nav-item.more.active .dropdown {
        display: block;
    }
}

/* Ensure logo image fits its container */


/* Product grid adjustments */
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-title {
        font-size: 17px;
        margin: 8px 0;
    }
    
    .product-price {
        font-size: 18px;
    }
    /* Categories grid */
    .categories-grid,
    .categories-grid-row2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 4px;
        margin: 12px 0;
    }
    
    .category-card {
        padding: 12px;
        min-height: 120px;
    }
    
    .category-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 4px;
    }
    
    .category-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .category-title {
        font-size: 12px;
        line-height: 1.3;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
}

/* Tablet (577-768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .categories-grid, 
    .categories-grid-row2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .category-card {
        min-height: 160px;
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
}

@media(min-width: 1025px){
    .logo{
        margin-left: -80px;
        margin-bottom: -30px;
    }
}
/* Slider Section */
.slider-section {
    margin: 40px 0;
    padding: 0;
    background: #FFFFFF;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 200px;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000; /* Black background */
    flex-shrink: 0;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5); /* White semi-transparent background for buttons */
    color: #000000;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.vector-art {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    position: relative;
    color: #FFFFFF; /* White vector art */
}

.money-art-1 {
    background: none;
}

.money-art-1::before {
    content: "💵";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.money-art-1::after {
    
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.money-art-2 {
    background: none;
}

.money-art-2::before {
    content: "💰";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.money-art-2::after {
    
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.support-art-1 {
    background: none;
}

.support-art-1::before {
    content: "📞";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.support-art-1::after {
    
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.support-art-2 {
    background: none;
}

.support-art-2::before {
    content: "🤝";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
}

.support-art-2::after {
    
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.slider video{
    width: 95%;
}
@media (max-width: 576px)  {
   .slider video{
        width: 80vw;
    } 
}
.slide-text {
    position: absolute;
    font-size: 50px;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: multiply;
}


.cover {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #fff;
    background-color: rgb(0 0 0 / 50%); 
    top: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cover .popup{
    display: flex;
    width: 80%;
    max-width: 400px;
    background: #000;
    flex-direction: column;
    color: #fff;
    justify-content: end;
    align-items: center;
    box-shadow: #000 10px 10px 10px;
}
.cover .popup .popHead{
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    text-align: center;
    font-weight: bold;
}
.cover .popup .popImgContainer{
    width: 100%;
    padding: 5%;
    overflow: hidden;
    flex-direction: row-reverse;
    display: flex;
    background: #fff;
}
.cover .popup .popImgContainer .canBtn{
    position: absolute;
    font-weight: bolder;
    color: black;
    margin: 10px;
    background: #fff;
    border-radius: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: row-reverse;
}
.cover .popup .popImgContainer img{
    width: 100%;
    height: auto;
}
.cover .popup .popbtn{
    width: 100%;
    height: 3vh;
    display: flex;
    justify-content: center;
    align-items: end;
    background: #fff;
}
.cover .popup .popbtn button{
    width: 50%;
    min-width: 100px;
    padding: 5px;
    font-weight: bold;
    font-size: 18px;
    transform: translate(0,20px);
    transition: all .3s;
}
.cover .popup .popbtn button:hover{
    background: #000;
    color: #fff;
}
#popup{
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out; 
}
/* for max width ex. laptop se 2 kam */
/* Responsive Adjustments for Slider */
@media (max-width: 576px) {
    .slider-section {
        margin: 20px 0;
    }

    .slider-container {
        padding: 0 10px;
    }

    .slider {
        height: 150px;
    }

    .vector-art {
        width: 60px;
        height: 60px;
        margin-right: -5px;
    }

    .money-art-1::before,
    .money-art-2::before,
    .support-art-1::before,
    .support-art-2::before {
        font-size: 15px;
    }

    .money-art-1::after,
    .money-art-2::after,
    .support-art-1::after,
    .support-art-2::after {
        font-size: 12px;
    }

    .slide-text {
        font-size: 22px;
        max-width: 60%;
    }

    .slider-prev, .slider-next {
        padding: 8px;
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .slider {
        height: 180px;
    }

    .vector-art {
        width: 80px;
        height: 80px;
    }

    .money-art-1::before,
    .money-art-2::before,
    .support-art-1::before,
    .support-art-2::before {
        font-size: 30px;
    }

    .money-art-1::after,
    .money-art-2::after,
    .support-art-1::after,
    .support-art-2::after {
        font-size: 14px;
    }

    .slide-text {
        font-size: 25px;
    }
}
/* for max width ex. laptop */
@media (min-width: 769px) and (max-width: 992px) {
    .slider {
        height: 180px;
    }

    .slide-text {
        font-size: 20px;
    }
}
.add-to-cart-btn {
    padding: 8px 15px;
    background: #8B6F47;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #6B4E31;
    transform: translateY(-2px);
}