* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #4caf50;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar select {
    padding: 5px;
    border-radius: 4px;
    border: none;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #e91e63;
}

.search input {
    width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.icons{
    display:flex;
    gap:12px;
}

/* BOX */
.icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f5f5f5;   /* light grey */
    text-decoration:none;
}

/* ICON SIZE SMALL */
.icons i{
    font-size:14px;
}


/* NAVBAR */
.navbar {
    display: flex;
    gap: 25px;
    padding: 12px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #e91e63;
}

/* HERO SECTION */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    min-height: 500px;
    overflow: hidden;
    display: flex;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-bg.active {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 50%;
    margin-top: 60px;
    top: 50px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

.btn-light {
    background: white;
    color: #e91e63;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-dark {
    background: #1c1c1c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* HERO IMAGE */
.hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid #f7a1b5;
    object-fit: cover;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* MENU BOX */
.dropdown-menu {
    position: absolute;
    top: 100%;   /* 🔥 এটা use করো */
    left: 0;
    background: #eee;
    width: 230px;
    border-radius: 12px;
    padding: 15px 0;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

/* MENU ITEMS */
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #ddd;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Section */
.categories{
    padding: 40px;
    background: #f8f8f8;
}

.categories h2{
    font-size: 28px;
    margin-bottom: 5px;
}

.categories p{
    color: gray;
    margin-bottom: 20px;
}

/* Container */
.category-container{
    display: flex;
    gap: 20px;
}

/* Card */
.card{
    position: relative;
    width: 32%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Overlay Text */
.overlay{
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
}

/* Hover Effect */
.card:hover img{
    transform: scale(1.1);
    transition: 0.3s;
}

/* Offering Section */
.offering{
    padding: 50px;
    background: white;
}

.offering h2{
    font-size: 28px;
    margin-bottom: 5px;
}

.offering p{
    color: gray;
    margin-bottom: 30px;
}

/* Container */
.offering-container{
    display: flex;
    gap: 20px;
}

/* Card */
.offer-card{
    width: 23%;
}

/* Image */
.offer-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Title */
.offer-card h3{
    font-size: 16px;
    margin: 10px 0;
    color: #d63384;
}

/* Text */
.offer-card p{
    font-size: 14px;
}

/* Link */
.offer-card a{
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: #d63384;
    text-decoration: none;
}

.milestones{
    display: flex;
    justify-content: space-around;
    padding: 40px;
}

.milestone-box{
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    width: 150px;
    font-weight: bold;
}

.milestone-box span{
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

.cta{
    background: linear-gradient(to right, #579209, #1aa564);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta button{
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: black;
    color: white;
}

/* container */
.manu-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* card */
.manu-container div {
    width: 23%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* image */
.manu-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

/* hover zoom */
.manu-container div:hover img {
    transform: scale(1.1);
}

/* hover lift */
.manu-container div:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* text */
.manu-container p {
    padding: 15px;
    font-size: 14px;
    color: #444;
}

/* ===== UNIQUE GRID ===== */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Box style */
.unique-grid div {
    width: 100%;
    height: 120px; /* 👈 same box height */
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden; /* 👈 important */
}

/* Hover effect */
.unique-grid div:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.unique-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 main magic */
}

/* ===== RANGE SECTION ===== */
.range {
    padding: 40px;
}

.range p {
    color: #4caf50;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .manu-container img {
        width: 48%;
    }

    .unique-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .manu-container img {
        width: 100%;
    }
}

/* OUR RANGE */
.range{
    padding: 40px;
}

.range h2{
    margin-bottom: 20px;
}

.range-box h4{
    color: #4caf50;
    margin-top: 15px;
}

.range-box p{
    color: rgb(121, 122, 122);
    font-size: 14px;
    line-height: 1.6;
}


/* FLOAT ICONS */
.call-icon,
.whatsapp-icon {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    background: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}

/* Separate color */
.call-icon{
    bottom: 80px;
    background: red;
}

.whatsapp-icon{
    bottom: 20px;
    background: #008000;
}

/* FOOTER SECTION */
.footer-section {
    background: #e8c3cc;
    padding: 50px 8%;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    color: #d81b60;
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-left p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* RIGHT */
.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* GRID */
.links-grid {
    display: flex;
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
}

.links-grid li {
    margin-bottom: 10px;
}

.links-grid a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.links-grid a:hover {
    color: #d81b60;
}

/* HIGHLIGHT LINK */
.highlight {
    color: #d81b60;
    font-weight: 500;
}

* FOOTER */
.footer{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f8f8f8;
}

.footer h4{
    margin-bottom: 10px;
}


/* SOCIAL */
.social{
    padding: 20px 40px;
}

/* Navbar basic */
.dropdown {
    position: relative;
    list-style: none;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #eee;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: #ddd;
}

/* Divider line */
.dropdown-menu hr {
    margin: 5px 10px;
    border: 0.5px solid #ccc;
}

/* View all style */
.view-all {
    font-weight: bold;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.logo img {
    height: 75px;
    width: 75px;
}

.btn-light {
    background: white;
    color: #e91e63;
    padding: 8px 16px;   /* smaller */
    border-radius: 6px;
    cursor: pointer;

    text-decoration: none;   /* underline remove */
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
}

.btn-dark {
    background: #1c1c1c;
    color: white;
    padding: 8px 16px;   /* same size */
    border-radius: 6px;
    cursor: pointer;
    border: none;

    font-size: 13px;
    font-weight: 500;
}

.category-section {
    padding: 40px;
    background: #f5f5f5;
}

.category-section h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.category-section p {
    color: #555;
    margin-bottom: 20px;
}

/* Slider */
.slider-container {
    position: relative;
    overflow: hidden;
}

/* Slider row */
.slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px; /* arrow space er jonno */
}

.slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.card {
    min-width: 280px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text overlay */
.card span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    max-width: 85%;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* left arrow */
.left {
    left: 5px;
}

/* right arrow */
.right {
    right: 5px;
}