@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ysabeau+SC:wght@1..1000&display=swap");


*{
  
    margin:0;
    padding:0;
}


body {
    font-family: "poppins";
    background-color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container{
    max-width:1140px !important;
    margin:auto;
    padding:auto;
    overflow:hidden;
}
/* Mobile Top Navbar */
.mobile-top-nav {
    background-color: #0054a6;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.mobile-top-nav .navbar-brand img {
    height: 30px;
}

.mobile-top-nav .user-icons i {
    color: #fff;
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
}

/* Search Bar */
.search-bar {
    position: fixed;
    top: -70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: top 0.3s ease;
    z-index: 10000;
}

.search-bar.active {
    top: 0;
}

.search-bar form {
    display: flex;
    width: 100%;
    max-width: 600px;
}

.search-bar input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.search-bar button {
    padding: 8px 15px;
    border: none;
    background: #0054a6;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}


@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}


.fixed-service-btn {
    position: fixed;
    top: 65%;
    left: 0;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    z-index: 1050;
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
    background-color: rgb(255, 155, 0);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border:none !important;
}
.fixed-service-btn:hover {
    background-color: rgb(255, 155, 0);
    color: #fff;
    cursor: pointer;
}

  @font-face {
            font-family: "Ysabeau SC";
            src: url("fonts/YsabeauSC-Regular.woff2") format("woff2"),
                url("fonts/YsabeauSC-Regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
        }

        :root {
            --light-cream: #fff5e6;
            --cream-bg: #ffe6cc;
        }

        .hero-section {
            /* background: linear-gradient(
                135deg,
                var(--light-cream) 0%,
                var(--cream-bg) 100%
            ); */
            min-height: calc(100vh - 80px);
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            width: 94%;
            margin: 0 3%;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            transition: opacity 0.6s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* Gradient overlay on background image */
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(
                to bottom,
                rgba(255, 51, 0, 0.1),
                rgba(255, 155, 0, 0.1)
            ); */
            z-index: 1;
        }

        .carousel-item .container {
            position: relative;
            z-index: 2;
        }

        .welcome-text {
            color: #f7941d;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 18px;
            margin-bottom: 8px;
            font-family: "Ysabeau SC", sans-serif;
        }

        .hero-title {
            color: #000000;
            font-size: 2.5rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-description {
            color: #5d5e5e;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            text-align: justify;
        }

        .btn-custom {
            background-color: #0054a6;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background-color: #003d7a;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 84, 166, 0.3);
        }

        .btn-outline-custom {
            background-color: transparent;
            color: #0054a6;
            padding: 12px 30px;
            border: 2px solid #0054a6;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .navigation-arrows {
            position: absolute;
            bottom: 30px;
            right: 50px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            border: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
        }

        .nav-arrow:hover {
            background-color: #0054a6;
            border-color: #0054a6;
            color: white;
            transform: scale(1.1);
        }

        .nav-arrow.active {
            background-color: #0054a6;
            border-color: #0054a6;
            color: white;
        }

        .slide-content {
            min-height: 500px;
            display: flex;
            align-items: center;
        }

        /* Fade animation */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
        }

        .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        /* Content background for better readability */
        .content-wrapper {
            /* background: rgba(255, 255, 255, 0.95); */
            padding: 40px;
            border-radius: 10px;
            /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .navigation-arrows {
                right: 20px;
                bottom: 20px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
            }

            .content-wrapper {
                padding: 20px;
            }

            .slide-content {
                min-height: 400px;
            }
        }

.service-box {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 20px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #ff9b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.service-box p {
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.btn-custom:hover {
    background-color: #0054a6;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-custom {
    color: #5d5e5e;
    border: 2px solid rgba(93, 94, 94, 0.2);
    /* background: rgba(93, 94, 94, 0.2); */
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    transform: translateY(-2px);
}

.product-image-container {
    position: relative;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.product-item {
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.product-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.product-item.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.product-package {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-orange {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffa500, #ff8c00);
    border-radius: 50%;
    animation: floatOrange 8s ease-in-out infinite;
}

.orange-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.orange-2 {
    bottom: 30%;
    right: 10%;
    animation-delay: -2s;
    width: 60px;
    height: 60px;
}

.orange-3 {
    top: 60%;
    right: 25%;
    animation-delay: -4s;
    width: 50px;
    height: 50px;
}

@keyframes floatOrange {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.navigation-arrows {
    position: absolute;
    bottom: 100px;
    right: 100px;
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adadad;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: #ff9b00;
    color: white;
    transform: scale(1.1);
}

.nav-arrow.active {
    background-color: #ff9b00;
    color: white;
}

.user-icons {
    color: white;
    font-size: 1.2rem;
    margin-left: 20px;
}
.user-icons a {
    color: white;
    font-size: 1.2rem;
    margin-left: 20px;
    text-decoration: none;
}

.user-icons i {
    margin: 0 8px;
    cursor: pointer;
    transition: color 0.3s ease;

}

.fa-solid .fa-user{
    font-size: 22px;
}

.user-icons i:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .product-image-container {
        margin-top: 40px;
    }

    .floating-orange {
        display: none;
    }

    .navigation-arrows {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
    }
}

/* category */
.category-section {
    width: 76%;
    margin: 0 23%;
    overflow: hidden;
}

.category-second-section {
    /*width: 80%;*/
    margin: 25px 0;
}

.category-second-section .packaging-grid .packaging-item img {
    height: auto;
    object-fit: cover;
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.packaging-item {
    position: relative;
    overflow: hidden;
}

.packaging-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    height:auto;
}

.packaging-item:hover img {
    transform: scale(1.05);
}




/* Hover overlay */
.packaging-item::after {
    content: attr(data-category);
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Gradient background layer */
.packaging-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(247, 148, 29, 0.1) 0%,
        /* Top color with 10% opacity */ rgba(247, 148, 29, 1) 100%
            /* Bottom color with 100% opacity */
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Hover effect */
.packaging-item:hover::before,
.packaging-item:hover::after {
    opacity: 1;
}

/* End category */

/* start notice */
.notice-section {
    width: 100%; /* Full width on all devices */
    margin: 50px auto;

    padding: 60px 20px;
    border-radius: 10px;
}

.notice-icon img {
    height: 35px;
    margin-right: 10px;
}

.notice-text h3 {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .notice-text h3 {
        font-size: 14px;
        text-align: left;
    }
    .notice-icon img {
        height: 28px;
    }
}

/* feature product */

.featured-section {
    width: 76%;
    margin: 50px 12%;
    padding: 60px 0;
    text-align: center;
}
.featured-section h6 {
    color: #f7941d;
    font-weight: 400; /* Yeon Sung is a display font — use normal or remove weight */
    font-family: "Yeon Sung", cursive !important;
    font-size: 21px;
}

.featured-section h2 {
    font-weight: 700;
    margin-bottom: 100px;
    color: #000000;
    font-size: 2.5rem;
    font-family: poppins;
}
.filter-btns {
    margin-bottom: 50px;
}
.filter-btns button {
    background: none;
    border: none;
    font-weight: 600;
    margin: 0 10px;
    font-size: 16px;
    color: #5d5e5e;
    cursor: pointer;
    transition: color 0.3s ease;
}
.filter-btns button.active,
.filter-btns button:hover {
    color: #f7941d;
}

.product-card{
    border:none;
}
.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}
.product-card .card-body {
    text-align: center;
}
.card-body {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
}
.card-body h6 {
    font-weight: 600;
    margin: 10px 0;
    color: #000000;
    font-family: poppins !important;
    font-size: 18px;
    margin: 0px 0 20px 0;
}
.rating {
    color: #f7941d;
    margin-bottom: 5px;
    font-size: 20px;
}
.place-order-btn {
    background: #ff9b00;
    border: none;
    padding: 8px 50px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    /* transition: background 0.3s ease; */
    font-size: 15px;
}
.place-order-btn a {
    text-decoration: none;
    color: #ffffff;
}
.place-order-btn:hover {
    /* background: #d97a12; */
}
.browse-btn-custom {
    background-color: #f7941d;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 20px;
}

/* project product section */

.project-card-body {
    background-color: rgba(247, 148, 29, 0.1);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    min-height: 150px;
    border-radius:0 0 5px 5px;
}
.project-card-text {
    padding: 30px;
}

.project-card-body h6 {
    font-weight: 600;
    color: #000000;
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center; /* dot + text একই height এ */
}

.project-card-body .point {
    width: 12px;
    height: 12px;
    background-color: #000000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.project-card-body p {
    color: #ff9b00;
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins", sans-serif !important;
    margin: 0;
}

.all-project {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* spacing between items */
}

.all-project span {
    margin: 0;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    font-family: "Poppins" !important;
}

.all-project svg {
    height: 30px;
    width: 30px;
    flex-shrink: 0; /* keeps svg size fixed */
}

.all-project-btn-custom {
    color: #ff9b00;
    /* padding: 10px 30px; */
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
}

/* Top Menu Section */
.service-menu {
    background: linear-gradient(
        to right,
        rgba(255, 155, 0, 0.2),
        rgba(0, 84, 166, 0.2)
    );
    padding: 17px 0;
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.scroll-content {
    display: flex;
    white-space: nowrap;
}

.service-menu span {
    font-weight: 600;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    margin-left: 25px;
    position: relative;
    color: #000000;
}

.service-menu span::after {
    content: "✱";
    color: #f7941d;
    margin-left: 20px;
    font-size: 22px;
    position: relative;
    top: 2px;
}

.service-menu span:last-child::after {
    content: "";
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Trusted Clients Section */
.trusted-section {
    text-align: center;
    padding: 60px 0;
    margin: 50px 0;
}
.trusted-section h6 {
    color: #f7941d;
    font-weight: 400; /* Yeon Sung is a display font — use normal or remove weight */
    font-family: "Yeon Sung" !important;
    font-size: 21px;
}
.trusted-section h3 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #000000;
}

/* Client Logo Grid */
.client-logos {
    margin-top: 30px;
}

/* base card (keep this first) */
.client-card {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 150px; /* same height for every card */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 30px;
}

/* keep images contained and centered */
.client-card img {
    max-width: 120px;
    /*width: 100%;*/
    height: 150px;
    object-fit: contain;
}

/* override bg colors by targeting the column element's nth-child */
/*.client-logos .row > div:nth-child(1) .client-card {*/
/*    background: #faf6f1;*/
/*}*/
/*.client-logos .row > div:nth-child(2) .client-card {*/
/*    background: #ecf4fa;*/
/*}*/
/*.client-logos .row > div:nth-child(3) .client-card {*/
/*    background: #eaf6f2;*/
/*}*/
/*.client-logos .row > div:nth-child(4) .client-card {*/
/*    background: #e2fbe7;*/
/*}*/
/*.client-logos .row > div:nth-child(5) .client-card {*/
/*    background: #f3f6ea;*/
/*}*/
/*.client-logos .row > div:nth-child(6) .client-card {*/
/*    background: #f4eff5;*/
/*}*/
/*.client-logos .row > div:nth-child(7) .client-card {*/
/*    background: #e2fbe7;*/
/*}*/

/* optional hover */
/* .client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
} */

/* footer start */
.footer {
    background: #0056b3; /* Blue background like image */
    color: #fff;
    padding: 50px 0 20px;
    /*width:412px;*/
   /*overflow:hidden;*/
}
.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}
.footer p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
}
.footer .logo-text {
    font-size: 22px;
    font-weight: 700;
}
.footer .logo-text span {
    color: #f7941d; /* Orange accent */
}
.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    font-family: poppins !important;
}
.footer a:hover {
    color: #f7941d;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 8px;
    font-size: 14px;
}
.footer ul li i {
    margin-right: 6px;
    color: #fff;
    font-size: 12px;
}
.footer .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}
.footer-bottom {
    padding: 0 0 15px 0;
}

.footer-bottom .bottom-text {
    font-size: 14px;
    color: #ffffff;
}

.footer-bottom .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;

    border-radius: 50%;
    background-color: #fff;
    color: #fff;
    transition: all 0.3s;
}

.footer-bottom .social-icons a.facebook {
    color: #3b5998;
}
.footer-bottom .social-icons a.linkedin {
    color: #0e76a8;
}
.footer-bottom .social-icons a.twitter {
    color: #00acee;
}
.footer-bottom .social-icons a.instagram {
    color: #e1306c;
}

.footer-bottom .social-icons a:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        float: left;
    }
    .footer-bottom .social-icons {
        margin-top: 0px;
        margin-bottom: 10px;
    }
}

.footer-logo img {
    margin-bottom: 35px !important;
}

.footer-image {
    display: flex;
    width: 100%;
    margin-top:50px;
    padding-top:60px;
    overflow: hidden; /* overflow hide */
}

.footer-img {
    flex: 1;
    min-width: 0; /* Flexbox overflow issue fix */
    height: 184px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .footer-img {
        height: 80px;
    }
}
.footer-logo {
    height: 184px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 40px;
        /* margin: 5px; */
    }
}



/* footer end */
/*Background Section */
 
        .testimonial-section {
             background: url("public/assets/frontend/img/t-bg.png") no-repeat center center/cover;
            padding: 80px 0 70px;
            position: relative;
            background-color: #f8f9fa;
        }

        .testimonial-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonial-title h6 {
            color: #f7941d;
            font-weight: 400;
            font-family: "Yeon Sung", cursive;
            font-size: 21px;
            margin-bottom: 10px;
        }

        .testimonial-title h2 {
            font-weight: 700;
            color: #000000;
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
        }

        .testimonial-slider-top,
        .testimonial-slider-bottom {
            padding-bottom: 20px;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 15px 10px;
            transition: all 0.3s ease;
           
        }

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

        .testimonial-card .row {
            margin: 0;
            align-items: flex-start;
        }

        .testimonial-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .stars {
            color: #f8b400;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .testimonial-card p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .client-name {
            font-weight: 600;
            margin-top: 10px;
            color: #000000;
            font-size: 16px;
        }

        .client-role {
            font-size: 14px;
            color: #777;
        }

        .pr-0 {
            padding-right: 0 !important;
        }

        .pl-0 {
            padding-left: 10px !important;
        }

        .testimonial-slider-top {
            margin-bottom: 30px;
        }

        .owl-carousel .owl-stage {
            display: flex;
            align-items: stretch;
        }

        .owl-carousel .owl-item {
            display: flex;
        }

        .owl-dots {
            display: none;
        }

        /* RTL Fix */
        .testimonial-slider-bottom .owl-item {
            direction: ltr !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-section {
                padding: 50px 0;
            }

            .testimonial-title h2 {
                font-size: 1.8rem;
            }

            .testimonial-card img {
                width: 50px;
                height: 50px;
            }

            .testimonial-card {
                margin: 10px 5px;
                padding: 20px;
            }

            .testimonial-card p {
                font-size: 14px;
            }
        }
/* Contact Container */

.section-title {
    text-align: center;
    padding: 50px 0;
    margin: 50px 0;
}
.section-title h6 {
    color: #f7941d;
    font-weight: 400; /* Yeon Sung is a display font — use normal or remove weight */
    font-family: "Yeon Sung" !important;
    font-size: 21px;
}
.section-title h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: #000000;
}

.contact-section{
    margin-top:50px ;
    margin-bottom:50px ;
    padding:50px 0 60px 0;
}
.contact-container {
    background: rgba(247, 148, 29, 0.1);
    overflow: hidden;
    padding: 15px;
}

/* Left Orange Box */
.contact-info {
    background: #f7941d;
    color: #fff;
    padding: 40px 40px;
    position: relative;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.contact-info h4 {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-family: poppins;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #f3f3f3;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-info .info-item i {
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    /* border-radius: 50%; */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
    padding: 5px 10px;
}
.contact-info .info-item span {
    color: #f3f3f3;
    font-size: 15px;
    font-family: poppins;
}

/* Background circles */
.contact-info::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(0, 84, 166, 0.4);
    /* background: rgba(255, 255, 255, 0.2); */
    border-radius: 50%;
}

.contact-info::before {
    content: "";
    position: absolute;
    bottom: 70px;
    right: 95px;
    width: 125px;
    height: 125px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Right Form */
.contact-form {
    padding: 35px 30px;
}
.form-label {
    font-weight: 500;
    color: #ff9b00;
    margin-bottom: 4px;
    font-family: poppins;
}

.contact-form-control {
    border: none;
    border-bottom: 1px solid #ff9b00;
    border-radius: 0;
    background: transparent;
    padding: 6px 0;
    color: #000;
}

.contact-form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #ff9b00;
    color: #000;
    background-color: transparent !important;
}

.btn-submit {
    background: #ff9b00;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
}

/* portfolio page start */
.portfolio {
    background-color: #ffffff;
}
.portfolio-banner {
    background: url("/public/assets/frontend/img/portfolio.png") no-repeat center
        center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.portfolio-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}
.portfolio-recent-work {
    width: 76%;
    margin: 50px 12%;
    padding: 60px 0;
    text-align: center;
}
.portfolio-section-header {
    text-align: center;
    margin-bottom: 100px;
}
.portfolio-section-header h2 {
    font-weight: regular;
    margin: 0;
    color: #ff9b00;
    font-size: 1.2rem;
    font-family: Yeon Sung !important;
}
.portfolio-section-header p {
    font-weight: 700;
    color: #000000;
    font-size: 2rem;
    font-family: poppins !important;
}

/* Portfolio Page packaging overlay */
.portfolio-packaging-item {
    position: relative;
    overflow: hidden;
}

.portfolio-packaging-item img {
    display: block;
    width: 100%;
    transition: transform 0.4s ease;
}

.portfolio-packaging-item:hover img {
    transform: scale(1.05);
}

/* Hover overlay text + icon */
.portfolio-packaging-item::after {
    content: attr(data-category) "  +"; /* Text + plus icon */
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Gradient background */
.portfolio-packaging-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(247, 148, 29, 0.1) 0%,
        rgba(247, 148, 29, 1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Show on hover */
.portfolio-packaging-item:hover::before,
.portfolio-packaging-item:hover::after {
    opacity: 1;
}

/* Plus icon styling */
.portfolio-packaging-item::after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* space between text and icon */
}

.portfolio-packaging-item::after {
    content: attr(data-category);
}

.portfolio-packaging-item::before,
.portfolio-packaging-item .overlay-content {
    pointer-events: none;
}

.overlay-content {
    position: absolute;
    bottom: 20px;
    left: 40%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    width: 80%;
    margin: 0 10%;
}

.portfolio-packaging-item:hover .overlay-content {
    opacity: 1;
}

.overlay-content .plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

/* Portfolio Page end */

/*page banner start*/
.shop-banner {
    background: url("/public/assets/frontend/img/shop.png") no-repeat center
        center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.shop-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}

/* Wrapper to center / demo spacing */
.pagination-container {
    display: flex;
    justify-content: end;
    padding: 24px;
}

/* Base pill style */
.custom-pagination .page-link {
    background: rgba(207, 207, 207, 0.3);
    color: #f7941d;
    border: none;
    min-width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin: 0 6px;
    font-weight: 600;
    font-size: 20px;
    transition: transform 0.08s ease, box-shadow 0.08s ease;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

/* Hover/focus */
.custom-pagination .page-link:hover,
.custom-pagination .page-link:focus {
    /* transform: translateY(-2px); */
    text-decoration: none;
}

/* Active item */
.custom-pagination .page-item.active .page-link {
    background: #f7941d;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    border-radius: 2px !important;
    /* box-shadow: 0 8px 20px rgba(247,148,29,0.18); */
}

/* Disabled */
.custom-pagination .page-item.disabled .page-link {
    opacity: 0.6;
    pointer-events: none;
}

/* Arrow button size like the number pills but slightly narrower */
.custom-pagination .page-link .arrow {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}
/* SVG size & default color */
.page-link .arrow-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    font-size: 20px; /* SVG inherits text color */
    font-weight: 600;
}

/* inactive color */
.page-link {
    color: #f7941d; /* icon and text */
    border-radius: 2px !important;
}

/* active/selected state */
.page-item.active .page-link {
    background: #f7941d;
    color: #fff; /* SVG turns white */
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 2px !important; /* keep outer corners rounded */
}

/* remove bootstrap focus outline */
.page-link:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* small screens reduce gaps */
@media (max-width: 420px) {
    .custom-pagination .page-link {
        min-width: 36px;
        height: 36px;
        line-height: 36px;
        margin: 0 4px;
    }
}

/*page banner end*/

/*service page start*/

.service-banner {
    background: url("/public/assets/frontend/img/service.png") no-repeat center
        center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.service-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}
.service-content {
    width: 76%;
    margin: 50px 12% 0 12%;
    padding: 60px 0;
    text-align: center;
}

.service-content h6 {
    color: #f7941d;
    font-weight: 400; /* Yeon Sung is a display font — use normal or remove weight */
    font-family: "Yeon Sung", cursive !important;
    font-size: 21px;
}

.service-content h2 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    font-size: 3rem;
    font-family: poppins;
}
.service-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(200, 200, 200, 0.3);
}

.service-card:hover .icon-container {
    background: #ff9b00;
}
.service-card:hover .icon-container i {
    color: #ffffff;
}

.icon-container {
    width: 70px;
    height: 70px;
    background: rgba(255, 155, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.icon-container i {
    color: #ff9b00;
    font-size: 28px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    font-family: poppins;
}

.service-description {
    color: #5d5e5e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: poppins;
    font-weight: normal;
}

.container-custom {
    max-width: 1140px;
    margin: 70px auto;
    padding: 0 20px;
    overflow: hidden;
}

/*.col-12.mb-4.custom-css-for-about-disc {*/
/*    margin-left: 70px;*/
/*}*/

.row-gap {
    gap: 20px;
}

@media (max-width: 768px) {
    .service-content{
        width:94%;
        margin:0 auto;
    }
    .service-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-description {
        font-size: 13px;
    }

    .icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-container i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }

    .container-custom {
        padding: 0 15px;
    }
}

/*service page end*/
/* about us page start */
.about-banner {
    background: url("/public/assets/frontend/img/about.png") no-repeat center
        center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.about-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}
.about-description {
    color: #000000;
    text-align: justify;
    font-size: 16px;
    font-family: poppins;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
}

.custom-bg {
    position: relative;
    background: url("public/assets/frontend/img/about-bg.png") no-repeat left bottom;
    background-size: 200px auto;
    padding: 40px 20px;
    color: #000000;
}

/* about us page end  */

/*Contact page start */
.contact-banner {
    background: url("/public/assets/frontend/img/contact.png") no-repeat center
        center/cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.contact-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}

/*Contact page end */

/*sign in page start */
.sign-banner {
    background-color: rgba(255, 155, 0, 0.1);

    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 25px;
}
.sign-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    color: #ff9b00;
    font-family: poppins !important;
}

.login-card {
    max-width: 500px;
    margin: 50px auto;
    background-color: rgba(170, 170, 170, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(142, 142, 142, 0.4);
    padding: 30px;
}
.login-card h2 {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
    font-family: poppins;
}
.login-card p {
    color: #767676;
    font-size: 16px;
    margin-bottom: 25px;
}
.sign-form-control {
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
}
.sign-form-control:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent !important;
}
.sign-form-control::placeholder {
    color: #c8c8c8;
}

p.mt-3.have-an-account {
    margin-bottom: -8px;
}

.btn-login {
    background-color: #ff9b00;
    border: none;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    color: #ffffff;
    width: 100%;
    transition: 0.3s;
    text-align: center;
}

.btn-google {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    transition: 0.3s;
    color: #5d5e5e;
    margin-top: 30px;
}

.btn-google img {
    height: 30px;
    width: 30px;
}

.sign-up-link {
    color: #ff9b00; /* match your theme color */
    font-weight: 600;
    text-decoration: none;
}

/*sign in page end */

/* Forgot Password Start*/

.forgot-password {
    color: #5c6065;
    font-weight: 500;
    text-decoration: none;
    margin-left: 15px;
    font-size: 15px;
}

/* Forgot Password End*/

/* place order page start */
.form-container {
    width: 86%;
    margin: 40px 7%;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.form-content {
    padding: 40px;
    background-color: rgba(170, 170, 170, 0.05);
    border: 1px solid rgba(142, 142, 142, 0.4);
    border-radius: 5px;
    width: 60%;
    margin-left: 20%;
}

.order-form-control,
.form-select {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    /* transition: all 0.3s ease; */
    background-color: #ffffff;
}

.order-form-control:focus,
.form-select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: none !important;
}

.order-form-control::placeholder {
    color: #49505761;
    font-family: poppins;
    font-size: 16px;
}
.form-select {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000; /* default for chosen option */
}

.form-select:invalid {
    color: #49505761;
}

.form-select option {
    color: #000;
}

.order-form-control .form-label {
    font-weight: 500;
    color: #49505761;
    margin-bottom: 8px;
    font-size: 14px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    background-color: #f8f9fa;
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.file-upload-area:hover {
    border-color: #ff9500;
    background-color: #fff5e6;
}

.file-upload-area.dragover {
    border-color: #ff9500;
    background-color: #fff5e6;
    transform: scale(1.02);
}

.upload-icon {
    width: 60px;
    height: 60px;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.file-upload-area:hover .upload-icon {
    background-color: #ff9500;
    color: white;
}

.upload-icon i {
    font-size: 24px;
    color: #6c757d;
}

.file-upload-area:hover .upload-icon i {
    color: white;
}

.upload-text {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.upload-subtext {
    color: #6c757d;
    font-size: 14px;
}

.btn-submit-order {
    background: #ff9b00;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    width: 100%;
    margin: 20px 40% 0 0; /* center the button horizontally */
    transition: all 0.3s ease;
}

.btn-submit-order:hover {
    background: #ff9b00;
    color: white;
}

.btn-submit:active {
    transform: translateY(0);
}

#fileInput {
    display: none;
}

.selected-files {
    margin-top: 20px;
}

.file-item {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e9ecef;
}

.file-name {
    font-weight: 500;
    color: #495057;
}

.file-size {
    font-size: 12px;
    color: #6c757d;
}

.remove-file {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
}

.remove-file:hover {
    color: #c82333;
}
/* place order page end */
