/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial;
}


@font-face {
    font-family: "santosh";
    src: url(../font/Satoshi-Bold.woff);
}


@font-face {
    font-family: "font2";
    src: url(../font/fa-solid-900.woff2);
}

/* TOP BAR */

.top_bar {
    background: #5c6b2f;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top_container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_left span {
    margin-right: 20px;
}

.top_right i {
    margin-left: 10px;
    cursor: pointer;
}

/* NAVBAR */

.navbar {
    width: 100%;
    position: absolute;
    /* HOME PAGE */
    top: 40px;
    left: 0;
    z-index: 100;
}

#left-nav {
    margin-left: -50px;
}

#right-nav {
    margin-left: 60px;
}

.nav_container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: -35px;
}

.nav_links {
    display: flex;
    gap: 45px;
}

.nav_links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: "santosh";
    /* ✅ FIXED */
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: -25px;
    background: #fff;
    min-width: 230px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 20px;
}

.dropdown_menu li {
    list-style: none;
    position: relative;
}

.dropdown_menu a {
    color: #333 !important;
    padding: 10px 20px;
    display: block;
    font-size: 14px;
}

.dropdown:hover .dropdown_menu {
    display: block;
}

/* SUBMENU */

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 300px;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-height: 350px;
    overflow-y: auto;
}

.submenu_parent:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
}

.submenu a {
    padding: 10px 18px;
    display: block;
    font-size: 14px;
    color: #333;
}

.logo_center img {
    width: 130px;
    margin-left: 78px;
}

.nav_icons {
    display: flex;
    gap: 60px;
    font-size: 20px;
    margin-left: 40px;
    color: #fff;
    cursor: pointer;
}

/* ================= STICKY NAV ================= */

.navbar.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 105px;
    padding-top: 35px;
}

.navbar.sticky a,
.navbar.sticky .nav_icons {
    color: #333;
}

@media (max-width:991px) {
    .navbar.sticky {
        height: 72px;
        padding-top: 40px;
    }
}

/* ================= INNER PAGE FIX ================= */

/* 🔥 KEY FIX: absolute remove + proper placement */
.inner-page .navbar {
    position: relative;
    /* IMPORTANT FIX */
    top: 0;
    background: #fff;
    padding-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* LINKS BLACK */
.inner-page .nav_links a {
    color: #333 !important;
}

/* ICONS BLACK */
.inner-page .nav_icons {
    color: #333;
}

/* HERO */

.hero_section {
    width: 100%;
    height: 580px;
    position: relative;
    overflow: hidden;
}

/* SLIDER */

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* STRIP ANIMATION */

.intro-strip-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 9999;
    pointer-events: none;
}

.intro-strip {
    width: 25%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.strip-cover {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}

.animate .strip-cover {
    animation: reveal 1s ease forwards;
}

@keyframes reveal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-105%);
    }
}

/* INDICATORS */

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 10px;
    width: 10px;
    background: #fff;
    margin: 5px;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
}

/* SEARCH */

/* SEARCH OVERLAY */

.search_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

/* CLOSE BUTTON */

.search_close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 28px;
    color: #ff7a00;
    cursor: pointer;
}

/* SEARCH BOX */

.search_container {
    width: 700px;
    max-width: 90%;
}

.search_container input {
    width: 100%;
    font-size: 32px;
    border: none;
    border-bottom: 2px solid #1d2340;
    padding: 15px 10px;
    background: transparent;
    outline: none;
    color: #1d2340;
}

/* PLACEHOLDER */

.search_container input::placeholder {
    color: #1d2340;
    opacity: 0.7;
}

/* OFFCANVAS */
/* OFFCANVAS */

.offcanvas_menu {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100%;
    background: #fff;
    padding: 30px;
    transition: 0.4s;
    z-index: 9999;
    overflow-y: auto;
    border-radius: 30px;
}

.offcanvas_menu.active {
    right: 0;
}

/* HEADER */

.offcanvas_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.offcanvas_header img {
    width: 120px;
}

.close_btn {
    font-size: 22px;
    cursor: pointer;
    color: #000;
}

/* CONTENT */

.offcanvas_content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #222;
    display: flex;
    gap: 12px;
}

.offcanvas_content i {
    color: #000;
    margin-top: 5px;
}

/* SOCIAL ICONS */

.social_icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.social_icons a {
    width: 45px;
    height: 45px;
    border: 1px dashed #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.social_icons a:hover {
    background: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
}

/* DIVIDER */

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

/* CONTACT BUTTON */

.contact_btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 35px;
    background: #ff7a00;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

/* MOBILE */

@media (max-width: 768px) {
    .nav_links {
        display: none;
    }

    .logo_center img {
        width: 70px;
        margin-left: -15px !important;
    }

    .hero_section {
        height: 227px;
        margin-top: 70px;
    }

    .search_overlay input {
        width: 80%;
    }


    .nav_container {
        background-color: white;
        margin-top: -40px;
    }

    .nav_container i {
        color: black;
    }
}

/* MOBILE MENU */

.mobile_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: 0.4s;
    overflow-y: auto;
    padding: 25px;
}

.mobile_menu.active {
    right: 0;
}

/* HEADER */
.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile_header img {
    width: 110px;
}

.mobile_header i {
    font-size: 26px;
    cursor: pointer;
}

/* MAIN LINKS */
.mobile_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_links li {
    border-bottom: 1px solid #eee;
}

/* NORMAL LINKS */
.mobile_links a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: #222;
    font-size: 16px;
}

/* TOGGLE (MAIN CATEGORY) */
.mobile_toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 16px;
    cursor: pointer;
}

/* SUBMENU (LEVEL 1) */
.mobile_submenu {
    display: none;
    padding-left: 15px;
}

/* SUB CATEGORY TOGGLE */
.mobile_sub_toggle {
    display: block;
    padding: 14px 0;
    cursor: pointer;
    position: relative;
    font-size: 15px;
}

/* ICON RIGHT SIDE */
.mobile_sub_toggle i {
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 14px;
}

/* SUBMENU (LEVEL 2) */
.mobile_sub_submenu {
    display: none;
    padding-left: 15px;
}

/* SUB ITEMS */
.mobile_sub_submenu li {
    border: none;
}

.mobile_sub_submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #444;
}

/* HOVER EFFECT */
.mobile_sub_submenu li a:hover {
    color: #000;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {
    .top_bar {
        display: none;
    }

    .nav_links {
        display: none;
    }

    .logo_center {
        order: 1;
    }

    .nav_icons {
        order: 2;
        margin-left: 200px !important;
        gap: 35px;
    }


}


/* about us */
.pack_section {
    padding: 60px 20px;
    overflow: hidden;
}

.pack_wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.pack_img img {
    /* width: 100%; */
    width: 300px;
    height: 400px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.pack_content {
    text-align: center;
}

.pack_heading {
    font-size: 31px;
    /* font-weight: 800; */
    line-height: 1.1;
    color: #0d1b3d;
    margin-bottom: 15px;
    font-family: "santosh";
}

.pack_heading span {
    display: inline-block;
    /* margin-right: 6px; */
    font-weight: 800;
}

.pack_sub {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.pack_para {
    /* font-size: 18px; */
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    font-size: 17px;
    margin: auto;
    margin-bottom: 25px;
}

/* BUTTON */
.sgp-btn-primary {
    display: inline-block;
    padding: 19px 45px;
    background: #ff8d21;
    color: rgba(0, 0, 0, 0.815);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 141, 33, 0.35);
    border: none;
    cursor: pointer;
}

.sgp-btn-primary:hover {
    background: #384048;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* MOBILE */

@media(max-width:992px) {

    .pack_wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pack_heading {
        font-size: 32px;
    }

    .pack_img {
        max-width: 420px;
        margin: auto;
    }

}

/* our story */

.story-section {
    background: url('../images/bg-image.webp') no-repeat center/cover;
    padding: 45px 20px;
    color: #fff;
}

.story-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.story-left {
    flex: 1;
}

.story-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.story-heading {
    font-size: 45px;
    margin-bottom: 20px;
    line-height: 1;
}

.story-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    text-align: justify;
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    border-radius: 15px;
    border: 4px solid white;
}

/* CARDS */
.story-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.circle-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    margin-bottom: 15px;
    border: 3px solid #fff;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.story-card p {
    font-size: 14px;
    color: #e4e2e2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        text-align: center;
    }

    .story-heading {
        font-size: 28px;
    }

    .story-cards {
        flex-direction: column;
        align-items: center;
    }
}


/*  */


/*  product */

.popcat-section {
    padding: 60px 20px;
}

/* TOP */
.popcat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.popcat-heading span {
    display: inline-block;
    font-size: 45px;
    font-weight: 700;
}

.popcat-btn {
    padding: 18px 25px;
    border: 1px solid #ccccccb6;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

/* ROW */
.popcat-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD */
.popcat-card {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px;
    overflow: hidden;

    height: 0;
    /* initial */
    opacity: 0;
    /* fade bhi add */
}

.popcat-content span {
    font-size: 22px;
    font-weight: 600;
}

/* COLORS */
.popcat-orange {
    background: #ff7a00;
    color: #fff;
}

.popcat-green {
    background: #2f4f2f;
    color: #fff;
}

/* CONTENT */
.popcat-content h3 {
    font-size: 55px;
    margin: 10px 0;
    width: 60%;
    line-height: 1;
    font-weight: 800;
}

.popcat-content a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    /* font-weight: 600; */
    text-decoration: none;
}

/* IMAGE */
.popcat-img img {
    /* max-width: 220px; */
    width: 270px;
    height: 280px;
    transition: 0.5s;
}

/* HOVER */
.popcat-card:hover .popcat-img img {
    transform: translateX(20px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .popcat-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .popcat-row {
        flex-direction: column;
    }

    .popcat-card {
        flex-direction: column;
        text-align: center;
    }

    .popcat-img img {
        margin-top: 20px;
    }
}

/*  */


/* product sectin with images */

.pack-tabs-section {
    padding: 40px 20px;
    text-align: center;
}

.pack-tag {
    display: inline-block;
    background: #FEF5ED;
    padding: 10px 25px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.pack-main-heading span {
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -1px;
    display: inline-block;
    max-width: 800px;
}

.pack-para {
    max-width: 980px;
    font-size: 18px;
    margin: 15px auto;
}

/* TABS */
.pack-tabs {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pack-tab {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background: #eee;
    cursor: pointer;
}

.pack-tab.active {
    background: #ff7a00;
    color: #fff;
}

/* CONTENT */
.pack-content {
    display: none;
}

.pack-content.active {
    display: block;
}

/* GRID */
.pack-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.pack-card {
    width: 280px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.pack-card img {
    /* width: 100%; */
    width: 230px;
    height: 250px;
}


.pack-card p {
    font-size: 15px;
    background-color: #f8dbc0;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .pack-main-heading span {
        font-size: 24px;
    }

    .pack-grid {
        flex-direction: column;
        align-items: center;
    }
}

/*  */


/* other section */

.innov-section {
    background: url('../images/sec-bg-img.webp') no-repeat center/cover;
    padding: 80px 20px;
    color: #fff;
}

.innov-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.innov-left {
    flex: 1;
}

.innov-heading span {
    display: inline-block;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
}

.innov-para {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.6;
}

.innov-sub {
    margin-top: 15px;
    font-size: 18px;
}

/* RIGHT */
.innov-right {
    flex: 1;
    text-align: center;
}

.innov-right img {
    max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .innov-container {
        flex-direction: column;
        text-align: center;
    }

    .innov-heading span {
        font-size: 32px;
    }

    .innov-para,
    .innov-sub {
        font-size: 16px;
    }
}

/*  */


/* other section */
.sustain-section {
    padding: 50px 20px;
    /* background: #f7f7f7; */
}

.sustain-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.sustain-left {
    flex: 1;
    display: flex;
    gap: 20px;
}

.s-img {
    flex: 1;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

.s-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.s-img:hover img {
    transform: scale(1.08);
}

/* RIGHT */
.sustain-right {
    flex: 1;
}

.sustain-heading {
    font-size: 43px;
    font-weight: 700;
    color: #1b1b3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sustain-heading span {
    display: inline-block;
}

.sustain-para {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.sustain-list {
    list-style: none;
}

.sustain-list li {
    margin-bottom: 10px;
    display: flex;
    font-size: 18px;
    align-items: center;
    gap: 10px;
    color: #333;
}

.sustain-list li::before {
    content: "✔";
    color: #2e7d32;
}

/* MOBILE */
@media (max-width: 768px) {
    .sustain-container {
        flex-direction: column;
    }

    .sustain-left {
        flex-direction: column;
    }

    .s-img {
        height: 220px;
    }

    .sustain-heading {
        font-size: 28px;
    }
}

/*  */


/* another section */

.quality-section {
    padding: 80px 10px;
    /* background: #f5f5f5; */
}

.quality-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT */
.quality-left {
    flex: 1;
}

.quality-heading {
    font-size: 45px;
    font-weight: 700;
    color: #0c1b3a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.quality-heading span {
    display: inline-block;
}

.quality-sub {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

.quality-para {
    color: #555;
    line-height: 1.6;
    font-size: 19px;
}

/* RIGHT */
.quality-right {
    flex: 2;
    display: flex;
    gap: 25px;
}

.quality-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    height: 390px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quality-card p {
    margin-top: 30px;
    text-align: justify;
}

.quality-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 80px;
    margin-bottom: 15px;
}

.quality-card h4 {
    font-size: 16px;
    color: #0c1b3a;
    line-height: 1.4;
}

/* BOTTOM TEXT */
.quality-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: left;
}

.quality-bottom p {
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .quality-container {
        flex-direction: column;
    }

    .quality-right {
        flex-direction: column;
    }

    .quality-heading {
        font-size: 28px;
    }
}

/*  */

/* make another section */

.future-section {
    padding: 40px 20px;
    /* background: #f5f5f5; */
}

.future-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

/* LEFT IMAGE */
.future-left {
    flex: 1;
}

.future-left img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT CONTENT */
.future-right {
    flex: 1;
}

.future-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0c1b3a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.future-heading span {
    display: inline-block;
}

.future-para {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.future-list {
    list-style: none;
}

.future-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    color: #444;
}

.future-list li::before {
    content: "✔";
    color: #2e7d32;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .future-container {
        flex-direction: column;
    }

    .future-heading {
        font-size: 28px;
    }
}

/*  */


/* review section */
.review-section {
    position: relative;
    padding: 50px 20px;
    background: url('../images/bg-image1.webp') center/cover no-repeat;
    overflow: hidden;
}



.review-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

/* TOP */
.review-top {
    text-align: center;
    margin-bottom: 40px;
}

.review-tag {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    /* margin-bottom: 5px; */
}

.review-heading {
    font-size: 49px;
    font-weight: 700;
    margin-top: 10px;
    color: #0c1b3a;
}

/* SLIDER */
.review-slider {
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollSlider 20s linear infinite;
}

.review-card {
    width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    flex-shrink: 0;
}

.stars {
    color: #f4b400;
    margin-bottom: 10px;
    font-size: 30px;
}

.review-card p {
    font-size: 19px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.review-card h4 {
    font-weight: 600;
    color: #0c1b3a;
}

/* ANIMATION */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .review-heading {
        font-size: 28px;
    }

    .review-card {
        width: 220px;
    }
}

/*  */


/* footer */

.footer {
    position: relative;
    background: url('../images/footer-img.webp') center/cover no-repeat;
    color: #fff;
    padding-top: 50px;
}



.footer-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* LOGO */
.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 150px;
}

/* ROW */
.footer-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* COL */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 25px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}


.footer-col ul a li {
    color: white;
    text-decoration: none;
}

.footer-col ul a {
    text-decoration: none;
}

.footer-col ul li:hover {
    color: #f9a826;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

.footer-social i {
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
}

.footer-social i:hover {
    color: #f9a826;
}

/* ICON TEXT */
.footer-col i {
    margin-right: 10px;
    color: #f9a826;
    font-size: 20px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    text-align: center;
    background: #f07c2f;
    padding: 12px;
    color: #fff;
    font-size: 14px;
}


.footer-div {
    padding-left: 80px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo img {
        width: 80px;
    }

    .footer-div {
        padding-left: 3px;
    }
}

/*  */


/* back to top */
.hx-backtotop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Arrow */
.hx-arrow {
    position: absolute;
    font-size: 20px;
    color: #ff7a00;
    font-weight: bold;
}

/* SVG ring */
.hx-progress-ring {
    transform: rotate(-90deg);
}

.hx-progress-bg {
    fill: none;
    stroke: #eee;
}

.hx-progress-fill {
    fill: none;
    stroke: #ff7a00;
    stroke-linecap: round;
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}

/* Hover */
.hx-backtotop:hover .hx-arrow {
    color: #e66900;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hx-backtotop {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .hx-arrow {
        font-size: 16px;
    }
}


/* about us  */
/* HERO SECTION */

.about-hero {
    width: 100%;
    height: 250px;
    background: url('https://dhulevaindustries.com/wp-content/uploads/2022/07/packing-bag-manufacturers-in-udaipur-2.jpg') no-repeat center center/cover;
    position: relative;
}

/* OVERLAY */
.about-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT CENTER */
.about-hero-content {
    text-align: center;
    color: #fff;
}

/* HEADING */
.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: white;
}

/* BREADCRUMB BOX */
.breadcrumb-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
}

/* BREADCRUMB TEXT */
.breadcrumb-box a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-box span {
    margin: 0 6px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .about-hero {
        height: 260px;
    }

    .about-hero-content h1 {
        font-size: 28px;
    }

    .breadcrumb-box {
        font-size: 13px;
        padding: 8px 15px;
    }
}

/* company overview */

.overview-section {
    padding: 60px 20px;
}

.overview-container {
    max-width: 1200px;
    margin: auto;
}

/* BADGE */

.overview-badge {
    display: inline-block;
    background: #FEF5ED;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* HEADING */

.overview-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #0c0c2e;
}

/* ROW */

.overview-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT */

.overview-content {
    flex: 1;
}

.overview-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* IMAGE */

.overview-image {
    flex: 1;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 400px;
    display: block;
}

/* MOBILE */

@media(max-width:768px) {

    .overview-heading {
        font-size: 28px;
    }

    .overview-row {
        flex-direction: column;
    }

}


/* QUALITY POLICY SECTION */

.qp-section {
    background: url("https://www.kalainternational.com/public/static/Quality-Policy-bg.webp");
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    color: #fff;
}

.qp-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.qp-left {
    position: relative;
    width: 520px;
}

/* SHAPE */


.qp-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}



/* RIGHT CONTENT */

.qp-content {
    flex: 1;
}

.qp-heading {
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 16px;
}

.qp-desc {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 19px;
}

.qp-content h4 {
    margin-top: 20px;
    font-weight: 700;
}

.qp-content ul {
    margin-top: 15px;
}

.qp-content strong {
    font-size: 28px;
}

.qp-content li {
    margin-bottom: 15px;
    font-size: 18px;
}

/* MOBILE */

@media(max-width:768px) {

    .qp-container {
        flex-direction: column;
    }

    .qp-content ul {
        text-align: left;
    }

    .qp-bags {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }

    .qp-content {
        text-align: center;
    }

    .qp-heading {
        font-size: 32px;
    }


    .qp-shape img {
        height: 400px;
        width: 400px;
        margin-left: 60px;
    }

}


/* other section */
/* SECTION */

.rd-section {
    padding: 70px 20px;
    background: #f6f6f6;
}

/* CONTAINER */

.rd-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */

.rd-content {
    flex: 1;
}

/* HEADING */

.rd-heading {
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b0b2d;
    line-height: 1.2;
}

/* TEXT */

.rd-intro {
    font-style: italic;
    margin-bottom: 15px;
    color: #666;
}

.rd-text {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* LIST */

.rd-list {
    padding-left: 18px;
}

.rd-list li {
    margin-bottom: 12px;
    color: #555;
}

/* IMAGE */

.rd-image {
    flex: 1;
}

.rd-image img {
    width: 100%;
    height: 500px;
    /* border-radius: 10px; */
    display: block;
}

/* MOBILE */

@media(max-width:768px) {

    .rd-container {
        flex-direction: column;
        gap: 40px;
    }

    .rd-heading {
        font-size: 32px;
        text-align: center;
    }

    .rd-content {
        text-align: center;
    }

    .rd-list {
        text-align: left;
    }

    .rd-text {
        text-align: justify;
    }

}


/* missin vission */
/* SECTION */

.mv-section {
    padding: 50px 20px;
    background: #f5f5f5;
}

/* CONTAINER */

.mv-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* BOX */

.mv-box {
    flex: 1;
}

/* HEADING */

.mv-heading {
    font-size: 45px;
    font-weight: 700;
    color: #0b0b2d;
    margin-bottom: 15px;
}

/* TEXT */

.mv-text {
    color: #666;
    line-height: 1.7;
    font-size: 17px;
    text-align: justify;
}

/* CENTER IMAGE */

.mv-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mv-center img {
    max-width: 100%;
    width: 450px;
    height: 400px;
    /* border-radius: 8px; */
}

/* RESPONSIVE */

@media(max-width:768px) {

    .mv-container {
        flex-direction: column;
        text-align: center;
    }

    .mv-center img {
        width: 100%;
        max-width: 300px;
    }

}


/* contact us  */
/* SECTION */

.ct-section {
    padding: 100px 20px;
    background: #f4f6fb;
}

/* CONTAINER */

.ct-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* MAP */

.ct-map {
    flex: 1;
}

.ct-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

/* CONTENT */

.ct-content {
    flex: 1;
    background: #eef1f7;
    padding: 40px;
    border-radius: 10px;
}

/* HEADING */

.ct-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0b0b2d;
    margin-bottom: 15px;
}

/* TEXT */

.ct-text {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* FORM */

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ct-row {
    display: flex;
    gap: 15px;
}

.ct-row input,
.ct-row textarea {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
}

.ct-row textarea {
    min-height: 100px;
    resize: none;
}

/* BUTTON */

.ct-btn {
    margin-top: 10px;
    padding: 14px;
    border: none;
    background: #ff7a00;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.ct-row select {
    flex: 1;
    padding: 14px;
    border: none;
    outline: none;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

.ct-btn:hover {
    background: #e96d00;
}

/* MOBILE */

@media(max-width:768px) {

    .ct-container {
        flex-direction: column;
    }

    .ct-map iframe {
        min-height: 300px;
    }

    .ct-content {
        padding: 25px;
    }

    .ct-heading {
        font-size: 28px;
        text-align: center;
    }

    .ct-text {
        text-align: center;
    }

    .ct-row {
        flex-direction: column;
    }

}


/* SECTION */

.ci-section {
    padding: 30px 20px;
    background: #f5f6fa;
}

/* CONTAINER */

.ci-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 25px;
}

/* CARD */

.ci-card {
    flex: 1;
    background: #eef1f7;
    padding: 30px;
    border-radius: 8px;
    transition: 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* HEADING */

.ci-card h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0b0b2d;
    margin-bottom: 5px;
}

/* SUB TEXT */

.ci-card span {
    font-size: 17px;
    color: #888;
    display: block;
    margin-bottom: 15px;
}

/* MAIN TEXT */

.ci-card p {
    color: #333;
    line-height: 1.3;
    font-size: 17px;
    font-weight: 600;
}

/* 🔥 HOVER EFFECT */

.ci-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #ff7a00;
    /* YOUR THEME */
    z-index: 0;
    transition: 0.4s ease;
}

.ci-card:hover::before {
    width: 100%;
}

/* TEXT ABOVE BG */

.ci-card * {
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

/* TEXT COLOR CHANGE */

.ci-card:hover h4,
.ci-card:hover span,
.ci-card:hover p {
    color: #fff;
}

/* SLIGHT LIFT */

.ci-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .ci-container {
        flex-direction: column;
    }

    .ci-card {
        text-align: center;
    }

}



/* product page css */

/* SECTION */
.bopp-section {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.bopp-wrapper {
    max-width: 1200px;
    margin: auto;
}

/* TOP TITLE */
.bopp-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bopp-title span {
    display: block;
    color: #FF7A00;
}

/* GRID LAYOUT */
.bopp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.bopp-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

/* FEATURES */
.bopp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bopp-feature-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #5C6B2F;
    transition: 0.3s;
}

.bopp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bopp-feature-card h4 {
    margin-bottom: 8px;
}

/* IMAGE STYLE */
.bopp-image {
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.bopp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.bopp-image:hover img {
    transform: scale(1.1);
}

/* ORANGE FLOAT ELEMENT */
.bopp-floating {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #FF7A00;
    top: -40px;
    right: -40px;
    border-radius: 30px;
    z-index: -1;
    filter: blur(40px);
}

/* RESPONSIVE */
@media(max-width:768px) {

    .bopp-title {
        font-size: 2rem;
    }

    .bopp-grid {
        grid-template-columns: 1fr;
    }

    .bopp-image {
        height: 350px;
    }

    .bopp-features {
        grid-template-columns: 1fr;
    }

}


/* SMOOTH WRAPPER */
.smooth-wrapper {
    overflow: hidden;
}

.smooth-content {
    will-change: transform;
}

/* SECTION */
.spec-section {
    padding: 50px 20px;
}

.spec-wrap {
    max-width: 1200px;
    margin: auto;
}

.spec-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.spec-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.spec-title span {
    display: block;
    color: #ff7a00;
    font-weight: 500;
}

.spec-price {
    font-size: 1.4rem;
    color: #5c6b2f;
    font-weight: 600;
}

/* TABLE STYLE */
.spec-table {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-radius: 20px;
    overflow: hidden;
}

.spec-row {
    display: contents;
}

.spec-label {
    background: #5c6b2f;
    color: #fff;
    padding: 22px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-value {
    background: #fff;
    padding: 22px;
    font-size: 18px;
    color: #444;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.spec-row:last-child .spec-label,
.spec-row:last-child .spec-value {
    border-bottom: none;
}

/* HOVER EFFECT */
.spec-row:hover .spec-value {
    background: #fff7f0;
}

.spec-row:hover .spec-label {
    background: #4a5726;
}

/* FLOAT DECOR */
/* .spec-deco {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ff7a00;
    filter: blur(60px);
    border-radius: 40px;
    top: 0;
    right: 0;
    z-index: -1;
} */

/* MOBILE */
@media (max-width: 768px) {
    .spec-title {
        font-size: 2rem;
    }

    .spec-table {
        grid-template-columns: 1fr;
    }

    .spec-label {
        border-radius: 10px 10px 0 0;
    }

    .spec-value {
        border-radius: 0 0 10px 10px;
        margin-bottom: 15px;
    }
}



/* market area */
.market-section {
    padding: 40px 20px;
    background: #f9f9f7;
    font-family: Arial, sans-serif;
}

.market-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* BLOCK */
.market-block {
    background: #fff;
    padding: 30px;
    border-left: 5px solid #FF7A00;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.market-block:hover {
    transform: translateY(-4px);
}

/* HEADINGS */
.market-block h3,
h4,
h5 {
    color: #5C6B2F;
    font-size: 24px;
    margin-bottom: 8px;
}



/* TEXT */
.market-block p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* MOBILE */
@media(max-width: 600px) {
    .market-block {
        padding: 20px;
    }

    .market-block h3 {
        font-size: 20px;
    }
}



.custom-btn-wrap {
    text-align: center;
    margin: 40px 0;
}

.open-modal-btn {
    background: linear-gradient(135deg, #5C6B2F, #7a8c3f);
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(92, 107, 47, 0.3);
}

/* Icon */
.open-modal-btn i {
    font-size: 16px;
}

/* Hover */
.open-modal-btn:hover {
    background: linear-gradient(135deg, #D12C0A, #ff4d2e);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(209, 44, 10, 0.4);
}

/* Click effect */
.open-modal-btn:active {
    transform: scale(0.97);
}