<style>
        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
        /* Body */
     
        body {
            font-family: "Poppins", sans-serif;
        }
    
        /* Header */
        header {
            background: #0f172a;
            padding: 20px 40px;
        }
    
        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
    
        /* Logo */
        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
    
        /* Navigation Links */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }
    
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
        }
    
        .nav-links a:hover {
            color: #8d1313;
        }
    
        /* Navigation Icons */
        .nav-icons {
            color: white;
            font-size: 22px;
        }
    
        @media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    }
    
    .hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:100px 8%;
    min-height:90vh;
    background:hwb(0 94% 5%);
    gap:60px;
    }
    
    .hero-content{
    flex:1;
    }
    
    .hero-tag{
    color:#8d1313;
    font-weight:bold;
    letter-spacing:3px;
    }
    
    .hero-content h1{
    font-size:60px;
    margin:20px 0;
    color:#8d1313;
    line-height:1.1;
    }
    
    .hero-content p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    max-width:550px;
    margin-bottom:35px;
    }
    
    .hero-btns{
    display:flex;
    gap:20px;
    }
    
    .btn{
    background:#8d1313;
    color:white;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    }
    
    .btn-outline{
    border:2px solid #8d1313;
    color:#8d1313;
    padding:15px 35px;
    text-decoration:none;
    border-radius:50px;
    }
    
    .hero-image{
    flex:1;
    text-align:center;
    }
    
    .hero-image img{
    width:100%;
    max-width:600px;
    height:650px;
    object-fit:cover;
    border-radius:15px;
    }
    
    @media (max-width: 768px) {
    
    .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    }
    
    .hero-content {
    order: 2;
    }
    
    .hero-image {
    display: none;
    }
    
    .hero-content h1 {
    font-size: 40px;
    }
    
    .hero-content p {
    font-size: 16px;
    max-width: 100%;
    }
    
    .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
    }
    
    .hero-image img {
    width: 100%;
    max-width: 350px;
    }
    
    }
    
    
  
    
    .categories{
        padding:90px 8%;
        background:#f8fafc;
    }
    
    .container{
        max-width:1200px;
        margin:auto;
    }
    
    .section-title{
        text-align:center;
        margin-bottom:50px;
    }
    
    .section-title h2{
        font-size:42px;
        color:#111827;
        margin-bottom:15px;
    }
    
    .section-title p{
        color:#6b7280;
        font-size:18px;
    }
    
    .category-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:25px;
    }
    
    .category-card{
        position:relative;
        overflow:hidden;
        border-radius:18px;
        cursor:pointer;
        height:430px;
    }
    
    .category-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.6s;
    }
    
    .category-card:hover img{
        transform:scale(1.1);
    }
    
    .overlays{
        position:absolute;
        inset:0;
        background:linear-gradient(to top,
            rgba(0,0,0,.85),
            rgba(0,0,0,.1));
        display:flex;
        flex-direction:column;
        justify-content:flex-end;
        align-items:center;
        padding:35px;
        text-align:center;
    }
    
    .overlays h3{
        color:#fff;
        font-size:28px;
        margin-bottom:15px;
    }
    
    .overlays a{
        text-decoration:none;
        background:#fff;
        color:#111827;
        padding:12px 28px;
        border-radius:40px;
        font-weight:bold;
        transition:.3s;
    }
    
    .overlays a:hover{
        background:#8d1313;
        color:#fff;
    }
    
    @media(max-width:992px){
    
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    }
    
    @media(max-width:768px){
    
    .categories{
        padding:70px 20px;
    }
    
    .section-title h2{
        font-size:32px;
    }
    
    .section-title p{
        font-size:16px;
    }
    
    .category-grid{
        grid-template-columns:1fr;
    }
    
    .category-card{
        height:350px;
    }
    
    }
    
    
    
  
    
    .new-arrivals{
        padding:100px 8%;
        background:#ffffff;
    }
    
    .section-heading{
        text-align:center;
        margin-bottom:60px;
    }
    
    .section-heading span{
        color:#b81731;
        font-weight:700;
        letter-spacing:2px;
        font-size:14px;
    }
    
    .section-heading h2{
        font-size:42px;
        margin:15px 0;
        color:#111827;
    }
    
    .section-heading p{
        color:#6b7280;
        font-size:18px;
    }
    
    .products{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:30px;
    }
    
    .product-card{
        background:#fff;
        border-radius:18px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        transition:.4s;
    }
    
    .product-card:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 45px rgba(0,0,0,.15);
    }
    
    .product-image{
        position:relative;
        overflow:hidden;
    }
    
    .product-image img{
        width:100%;
        height:340px;
        object-fit:cover;
        transition:.5s;
    }
    
    .product-card:hover img{
        transform:scale(1.08);
    }
    
    .badge{
        position:absolute;
        top:18px;
        left:18px;
        background:#8d1313;
        color:#fff;
        padding:8px 14px;
        border-radius:25px;
        font-size:12px;
        font-weight:bold;
    }
    
    .product-info{
        padding:25px;
    }
    
    .product-info h3{
        font-size:22px;
        margin-bottom:8px;
        color:#111827;
    }
    
    .category{
        color:#6b7280;
        margin-bottom:15px;
    }
    
    .rating{
        color:#f59e0b;
        font-size:18px;
        margin-bottom:15px;
    }
    
    .price{
        margin-bottom:20px;
    }
    
    .current{
        color:#8d1313;
        font-size:24px;
        font-weight:bold;
    }
    
    .old{
        margin-left:10px;
        color:#9ca3af;
        text-decoration:line-through;
    }
    
    .product-info button{
        width:100%;
        border:none;
        background:#111827;
        color:#fff;
        padding:15px;
        border-radius:40px;
        cursor:pointer;
        font-size:16px;
        transition:.3s;
    }
    
    .product-info button:hover{
        background:#8d1313;
    }
    
    @media (max-width:768px){
    
    .products{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    }
    
    .product-image img{
    height:220px;
    }
    
    .product-info{
    padding:15px;
    }
    
    .product-info h3{
    font-size:18px;
    }
    
    .current{
    font-size:20px;
    }
    
    }
    
    .category-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:50px;
    }
    
    .category-filter button{
    padding:12px 28px;
    border:1px solid #d1d5db;
    background:#fff;
    color:#111827;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    }
    
    .category-filter button:hover{
    background:#8d1313;
    color:#fff;
    border-color:#8d1313;
    }
    
    .category-filter button.active{
    background:#8d1313;
    color:#fff;
    border-color:#8d1313;
    }
    
    @media (max-width:768px){
    
    .category-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:10px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
    }
    
    .category-filter::-webkit-scrollbar{
    display:none;
    }
    
    .category-filter button{
    white-space:nowrap;
    flex-shrink:0;
    padding:10px 22px;
    font-size:14px;
    }
    
    }
    
    .product-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    cursor:pointer;
    }
    
    .product-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
    transition:.4s;
    }
    
    .product-card:hover img{
    transform:scale(1.08);
    }
    
    .view-btn{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    padding:12px 35px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,0.2);
    border:1px solid rgba(255,255,255,0.5);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-radius:40px;
    font-weight:600;
    transition:.3s;
    }
    
    .product-card:hover .view-btn{
    background:#8d1313;
    border-color:#8d1313;
    }
    
    
    
  
    
    .about-us{
        padding:100px 8%;
        background:#f8fafc;
    }
    
    .about-container{
        max-width:1200px;
        margin:auto;
        display:flex;
        align-items:center;
        gap:70px;
    }
    
    .about-image{
        flex:1;
    }
    
    .about-image img{
        width:100%;
        height:550px;
        object-fit:cover;
        border-radius:20px;
        display:block;
    }
    
    .about-content{
        flex:1;
    }
    
    .about-tag{
        display:inline-block;
        background:#8d1313;
        color:#fff;
        padding:8px 18px;
        border-radius:30px;
        font-size:14px;
        font-weight:600;
        letter-spacing:1px;
        margin-bottom:20px;
    }
    
    .about-content h2{
        font-size:46px;
        color:#111827;
        margin-bottom:20px;
        line-height:1.2;
    }
    
    .about-content p{
        font-size:17px;
        line-height:1.9;
        color:#6b7280;
        margin-bottom:18px;
    }
    
    .about-stats{
        display:flex;
        gap:40px;
        margin:35px 0;
    }
    
    .stat h3{
        font-size:34px;
        color:#8d1313;
        margin-bottom:5px;
    }
    
    .stat span{
        color:#6b7280;
        font-size:15px;
    }
    
    .about-btn{
        display:inline-block;
        padding:15px 35px;
        background:#111827;
        color:#fff;
        text-decoration:none;
        border-radius:40px;
        transition:.3s;
        font-weight:600;
    }
    
    .about-btn:hover{
        background:#8d1313;
    }
    
    @media (max-width:992px){
    
    .about-container{
        flex-direction:column;
    }
    
    .about-content{
        text-align:center;
    }
    
    .about-stats{
        justify-content:center;
    }
    
    .about-image img{
        height:450px;
    }
    
    }
    
    @media (max-width:768px){
    
    .about-us{
        padding:70px 20px;
    }
    
    .about-image img{
        height:350px;
    }
    
    .about-content h2{
        font-size:34px;
    }
    
    .about-content p{
        font-size:16px;
    }
    
    .about-stats{
        flex-direction:column;
        gap:20px;
    }
    
    }
    
    
  
    
        .contact-section{
            padding:100px 8%;
            background:#ffffff;
        }
        
        .contact-header{
            text-align:center;
            margin-bottom:60px;
        }
        
        .contact-header span{
            color:#8d1313;
            font-weight:600;
            letter-spacing:2px;
        }
        
        .contact-header h2{
            font-size:42px;
            color:#111827;
            margin:15px 0;
        }
        
        .contact-header p{
            color:#6b7280;
            max-width:650px;
            margin:auto;
            line-height:1.8;
        }
        
        .contact-wrapper{
            display:flex;
            align-items:center;
            gap:60px;
        }
        
        .contact-info{
            flex:1;
        }
        
        .contact-card{
            display:flex;
            align-items:flex-start;
            gap:20px;
            background:hwb(0 94% 5%);
            padding:22px;
            margin-bottom:20px;
            border-radius:16px;
            box-shadow:0 8px 25px rgba(0,0,0,.05);
        }
        
        .contact-card .icon{
            width:55px;
            height:55px;
            border-radius:50%;
            background:#8d1313;
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:22px;
        }
        
        .contact-card h3{
            color:#111827;
            margin-bottom:6px;
        }
        
        .contact-card p{
            color:#6b7280;
            line-height:1.6;
        }
        
        .social-links{
            margin-top:30px;
            display:flex;
            gap:15px;
            flex-wrap:wrap;
        }
        
        .social-links a{
            text-decoration:none;
            color:#111827;
            border:1px solid #d1d5db;
            padding:12px 20px;
            border-radius:30px;
            transition:.3s;
        }
        
        .social-links a:hover{
            background:#8d1313;
            color:#fff;
            border-color:#8d1313;
        }
        
        .contact-image{
            flex:1;
        }
        
        .contact-image img{
            width:100%;
            height:600px;
            object-fit:cover;
            border-radius:20px;
            display:block;
        }
        
        @media(max-width:992px){
        
        .contact-wrapper{
            flex-direction:column;
        }
        
        .contact-image img{
            height:450px;
        }
        
        }
        
        @media(max-width:768px){
        
        .contact-section{
            padding:70px 20px;
        }
        
        .contact-header h2{
            font-size:32px;
        }
        
        .contact-card{
            padding:18px;
        }
        
        .contact-image img{
            height:320px;
        }
        
        }
        
        
    
  
    
    .footer{
        background:#111827;
        color:#d1d5db;
        padding:80px 8% 30px;
    }
    
    .footer-grid{
        display:grid;
        grid-template-columns:2fr 1fr 1fr 1.5fr;
        gap:50px;
    }
    
    .footer-logo{
        color:#ffffff;
        font-size:32px;
        margin-bottom:20px;
    }
    
    .footer-col p{
        line-height:1.8;
        color:#9ca3af;
    }
    
    .footer-col h3{
        color:#ffffff;
        margin-bottom:25px;
        font-size:20px;
    }
    
    .footer-col ul{
        list-style:none;
    }
    
    .footer-col ul li{
        margin-bottom:15px;
    }
    
    .footer-col ul li a{
        color:#9ca3af;
        text-decoration:none;
        transition:.3s;
    }
    
    .footer-col ul li a:hover{
        color:#ffffff;
        padding-left:6px;
    }
    
    .contact-list li{
        color:#9ca3af;
    }
    
    .footer-social{
        margin-top:25px;
        display:flex;
        gap:12px;
        flex-wrap:wrap;
    }
    
    .footer-social a{
        text-decoration:none;
        color:#fff;
        border:1px solid rgba(255,255,255,.2);
        padding:10px 18px;
        border-radius:30px;
        transition:.3s;
    }
    
    .footer-social a:hover{
        background:#8d1313;
        border-color:#8d1313;
    }
    
    .footer-bottom{
        border-top:1px solid rgba(255,255,255,.1);
        margin-top:60px;
        padding-top:25px;
        text-align:center;
    }
    
    .footer-bottom p{
        color:#9ca3af;
        font-size:15px;
    }
    
    @media (max-width:992px){
    
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
    
    }
    
    @media (max-width:768px){
    
    .footer{
        padding:60px 20px 25px;
    }
    
    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    
    .footer-logo{
        font-size:28px;
    }
    
    .footer-col{
        text-align:center;
    }
    
    .footer-social{
        justify-content:center;
    }
    
    }
    
    .clothes-section{
        padding:100px 8%;
        background:#fff;
    }
    
    .clothes-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
        gap:25px;
    }
    
    .cloth-card{
        position:relative;
        overflow:hidden;
        border-radius:18px;
    }
    
    .cloth-card img{
        width:100%;
        height:420px;
        object-fit:cover;
        display:block;
        transition:.5s;
    }
    
    .cloth-card:hover img{
        transform:scale(1.08);
    }
    
    .view-btn {
        display: inline-block;
        background:rgb(15, 23, 42);
        color: #fff;
        padding: 10px 20px;
        text-decoration: none;
        border: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    
    .view-btn:hover {
        background: #00338d; /* Lighter navy on hover */
    }
    
    @media (max-width:768px){
    
    .clothes-section{
        padding:70px 20px;
    }
    
    .clothes-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }
    
    .cloth-card img{
        height:220px;
    }
    
    .view-btn{
        padding:8px 18px;
        font-size:14px;
    }
    
    }
    
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }
    
    /* Header */
    
    .header{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:75px;
        background:#0f172a;
        display:flex;
        align-items:center;
        padding:0 8%;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
        z-index:1000;
    }
    
    .logo{
        color:#fff;
        font-size:28px;
        font-weight:bold;
    }
    
    /* Desktop Navigation */
    
    .desktop-nav{
        display:flex;
        gap:35px;
        margin-left:auto;
    }
    
    .desktop-nav a{
        text-decoration:none;
        color:#fff;
        font-weight:500;
        transition:.3s;
    }
    
    .desktop-nav a:hover{
        color:#8d1313;
    }
    
    /* Right Side */
    
    .header-right{
        display:none;
        margin-left:20px;
    }
    
    /* Hamburger */
    
    .menu-btn{
        border:none;
        background:none;
        color:#fff;
        font-size:30px;
        cursor:pointer;
    }
    
    /* Sidebar */
    
    .sidebar{
        position:fixed;
        top:0;
        left:-300px;
        width:280px;
        height:100vh;
        background:#fff;
        padding:80px 30px;
        box-shadow:5px 0 20px rgba(0,0,0,.15);
        transition:.4s;
        z-index:1001;
    }
    
    .sidebar a{
        display:block;
        text-decoration:none;
        color:#001f54;
        margin:25px 0;
        font-size:18px;
        font-weight:500;
    }
    
    .sidebar a:hover{
        color:#9d0b0b;
    }
    
    .close-btn{
        position:absolute;
        top:20px;
        right:25px;
        font-size:30px;
        cursor:pointer;
    }
    
    .overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        display:none;
        z-index:999;
    }
    
    /* Mobile */
    
    @media (max-width:768px){
    
        .desktop-nav{
            display:none;
        }
    
        .header-right{
            display:flex;
            margin-left:auto;
            align-items:center;
        }
    
        .menu-btn{
            display:block;
        }
    
    }
    
    /* Prevent page from hiding under the fixed header */
    
    body{
        margin:0;
        padding-top:75px;
    }

    .logo{
    padding:0 10px;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.footer-logo{
    margin-bottom:20px;
}

.footer-logo img{
    height:80px;
    width:auto;
    display:block;
}

@media (max-width:768px){

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

}
    
.filter-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin:40px 0;
}

.filter-btn{
    padding:10px 22px;
    border:none;
    border-radius:30px;
    background:#f4f4f4;
    color:#333;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
    font-weight:500;
}

.filter-btn:hover,
.filter-btn.active{
    background:#8d1313;
    color:#fff;
}

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:50px;
    flex-wrap:wrap;
}

.page-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
    text-decoration:none;
    color:#333;
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    font-weight:600;
    transition:.3s ease;
}

.page-btn:hover{
    background:#8d1313;
    color:#fff;
    border-color:#8d1313;
}

.page-btn.active{
    background:#8d1313;
    color:#fff;
    border-color:#8d1313;
}

/* Next button */
.page-btn:last-child{
    width:auto;
    padding:0 20px;
}

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#sliderImage{
    width:400px;
    max-width:90%;
    border-radius:10px;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:45px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    padding:15px;
}

.prev{
    left:30px;
}

.next{
    right:30px;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

<style>
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 45px;
    height: 45px;
    padding: 0 16px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.pagination a:hover{
    background: #8d1313;
    color: #fff;
    border-color: #8d1313;
}

.pagination a.active{
    background: #8d1313;
    color: #fff;
    border-color: #8d1313;
}

.pagination a.disabled{
    opacity: .5;
    pointer-events: none;
}

@media (max-width: 768px){
    .pagination{
        gap: 6px;
    }

    .pagination a{
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }
}
</style>
<style>
.view-btn {
    display: inline-block;
    background-color:rgb(145, 13, 11);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-btn:hover {
    background-color: #c62828;
}
</style>

<style>
.load-more {
    text-align: center;
    margin: 40px 0;
}

.view-btns {
    display: inline-block;
    background-color: #8d1313;
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 30px; /* More rounded */
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #001f54;
}

.view-btns:hover {
    background-color: transparent;
    color: #001f54;
    transform: translateY(-2px);
}
</style>
.contact-card{
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
    width:100%;
    min-width:0;
    overflow:hidden;
}

.contact-card .icon{
    flex:0 0 55px;
    width:55px;
    height:55px;
}

.contact-card > div:last-child{
    flex:1;
    min-width:0;
}

.contact-card h3,
.contact-card p{
    overflow-wrap:anywhere;
    word-break:break-word;
}
@media (max-width:768px){

.contact-card{
    align-items:flex-start;
}

.contact-card .icon{
    width:50px;
    height:50px;
    flex:0 0 50px;
}

.social-links{
    justify-content:center;
}

.social-links a{
    flex:1;
    min-width:90px;
    text-align:center;
}

}