@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');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'MilligramTrial';
    src: url('../fonts/MilligramTrial-Regular.woff2') format('woff2'),
        url('../fonts/MilligramTrial-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'STIX Two Text';
    src: url('../fonts/STIXTwoText.woff2') format('woff2'),
        url('../fonts/STIXTwoText.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    line-height: 25px !important;
    font-weight: normal;
    color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'MilligramTrial' !important;
    font-family: 'STIX Two Text' !important;
    letter-spacing: 2px;
}

p>strong {
    font-weight: 600;
}

.h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}

.bg1 {
    background: #B9B9B9;
}

.bg2 {
    background: #AA8A2E;
}

.bg3 {
    background: #006071;
}

/* header new start */

.site-header .logo-col a {
    display: inline-block;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #dcdcdc;
}

/* GRID */
.site-header .header-row {
    display: grid;
    grid-template-columns: 200px 1fr;
}

/* DESKTOP LOGO */
.site-header .logo-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* border-right: 1px solid #dcdcdc; */
    padding: 10px 0;
    position: relative;
    background: #ffffff;
}

.site-header .logo-col img {
    max-width: 160px;
    position: relative;

}

/* RIGHT HEADER */
.site-header .right-header {
    display: flex;
    flex-direction: column;
}

/* TOP HEADER */
.site-header .top-header {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    padding: 10px 0;
    position: relative;
}

.site-header {
    position: relative;
}

.site-header::before {
    position: absolute;
    content: '';
    right: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 44%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.25) 54%,
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(to right,
            #885f2b 0%,
            #997b33 6%,
            #b39050 20%,
            #cda66d 38%,
            #ddb47e 50%,
            #bd995b 65%,
            #b38a56 100%);

    height: 54px;
    width: 100%;
    top: 0;
    z-index: 0;
}

.site-header .logo-col {
    position: relative;
}

.site-header .logo-col::before {
    position: absolute;
    width: 1400%;
    height: 100%;
    background: #ffffff;
    content: '';
    left: -1400%;
    top: 0;
    z-index: 0;

}


/* .site-header .top-header::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    background: #dcdcdc;
    height: 1px;
    width: 100%;
} */

.site-header .top-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header .top-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #aa8a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TABLET LOGO */
.site-header .tablet-logo img {
    max-width: 140px;
}

/* BOTTOM HEADER */
.site-header .bottom-header {
    padding: 16px 0;
}

/* NAV */
.site-header .custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* QUOTE BUTTON */
.site-header .quote-btn {
    border: 2px solid #b08d2b;
    font-weight: 600;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.site-header .quote-btn:hover {
    background: #b08d2b;
    color: #fff;
}

/* NAV LINKS */
.site-header .nav-link {
    padding: 10px;
    color: #000;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* NAV LINK HOVER + ACTIVE */
.site-header .nav-link:hover,
.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link.show {
    color: #AA8A2E;
}

.site-header .nav-item.dropdown {
    position: relative;
}


/* DROPDOWN ITEMS */
.site-header .dropdown-item {
    font-weight: 500;
    color: #000;
    transition: color 0.25s ease;
    padding: 14px 28px 14px 24px;
    font-size: 15px;
}

.site-header .navbar .dropdown-menu li {
    border-bottom: 1px solid #aa8a2e3b;
}



.site-header .dropdown-item:hover,
.site-header .dropdown-item.active {
    color: #AA8A2E;
    background: unset;
}

.site-header .dropdown-item {
    display: grid;
    grid-template-columns: 30px auto;
    gap: 10px;
    align-items: center;
}

.site-header .dropdown-item img {
    width: 30px;
    height: 30px;
}

.site-header .top-item a {
    color: #ffffff;
}

.site-header .navbar-expand-lg .navbar-nav {
    padding-left: 20px;
}

.form-btn.submit-btn .submit-icon{	display:none !important;}

/* ================= DESKTOP DROPDOWN (HOVER ONLY) ================= */
@media (min-width: 992px) {

    /* Remove Bootstrap default caret */
    .site-header .dropdown-toggle::after {
        content: "\f078";
        /* fa-chevron-down */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        /* solid icon */
        border: none;
        margin-left: 6px;
        vertical-align: middle;
        pointer-events: none;
        font-size: 12px;
        margin-top: -4px;

    }


    /* Disable Bootstrap click-open feel */
    .site-header .dropdown-toggle::after {
        pointer-events: none;
    }

    .site-header .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        pointer-events: none;
        transition: all 0.25s ease;
        border: none;
        border-radius: 0;
        padding: 10px 0 0;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        left: 50%;
        position: absolute;
    }

    .site-header .navbar .dropdown-menu {
        position: absolute;
        transform: translate(-50%, 20%);
    }

    .site-header .navbar .dropdown-menu {
        padding: 0;
    }

    /* OPEN ON HOVER */
    .site-header .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0%);
        pointer-events: auto;
    }

    /* Prevent click-open staying active */
    .site-header .dropdown-menu.show {
        display: none;
    }
}

/* ================= TABLET ================= */
@media (max-width: 991px) {

    .site-header .header-row {
        grid-template-columns: 1fr;
    }

    .site-header .logo-col {
        display: none;
    }

    /* STACK LOGO → EMAIL → PHONE */
    .site-header .top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }

    /* NORMAL BOOTSTRAP CLICK DROPDOWN */
    .site-header .dropdown-menu {
        box-shadow: none;
        border: none;
        padding-left: 18px;
    }

    .site-header .custom-navbar {
        justify-content: space-between;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

    /* HIDE CONTACT INFO */
    .site-header .top-item {
        display: none;
    }

    /* CENTER LOGO */
    .site-header .top-header {
        align-items: center;
    }

    .site-header .tablet-logo {
        margin-bottom: 10px;
    }
}


.site-header .top-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* header new end */

/* .header .logo {
    width: 172px;
}

.header .dropdown-menu {
    display: block !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transition: 0.5s !important;
    transform: translateY(20%);
    padding: 0;
    border-radius: 0;
}

.header .dropdown-menu.show {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0%);
}

.header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 16px;
}

.header .navbar-expand-lg .row {
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
}

.header .navbar-nav .nav-link.active,
.header .navbar-nav .nav-link.show {
    color: #AA8A2E;
}

.header .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
}

.header .dropdown-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
    font-size: 16px;
    transition: 0.5s;
}

.header .dropdown-item.active,
.header .dropdown-item:hover {
    background: #AA8A2E !important;
    color: #ffffff !important;
}

.header .navbar-toggler {
    border: none !important;
    outline: none !important;
}

.header .navbar-toggler:focus,
.header .offcanvas-header .btn-close:focus {
    box-shadow: none !important;
}

.header .dropdown-menu li:last-child .dropdown-item {
    border-bottom: unset;
}

.header .nav-link {
    font-size: 18px;
    color: #000000;
}

.header .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
}

.header .top-head-contact {
    display: grid;
    grid-template-columns: 80px auto;
}

.header .navbar-expand-lg {
    flex-direction: column;
}

.seperator {
    border-bottom: 1px solid #B9B9B9;
    width: 100%;
    margin: 10px 0;
}

.header .top-head-contact {
    padding-top: 20px;
}

.header .top-icon {
    width: 60px;
    height: 60px;
    background: #AA8A2E;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
}

.header .top-detail ul li a,
.header .top-detail ul li {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
}

.header .navbar-brand {
    display: block;
} */

.fancy {
    background-color: transparent;
    border: 2px solid #AA8A2E;
    border-radius: 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    outline: none;
    overflow: visible;
    padding: 15px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease-in-out;
    user-select: none;
    font-size: 13px;
    border-radius: 10px;
    overflow: hidden;
}

.fancy::before {
    display: none;
    content: " ";
    width: 1.5625rem;
    height: 2px;
    background: #000000;
    top: 50%;
    left: 1.5em;
    position: absolute;
    transform: translateY(-50%);
    transform-origin: center;
    transition: background 0.3s linear, width 0.3s linear;
}

.fancy.white::before,
.fancy.yellow::before {
    background: #ffffff;
}

.fancy.yellow {
    background: #AA8A2E;
}

.fancy:hover.yellow {
    background: #000000;
    border-color: #000000;
}


.fancy .text {
    font-size: 1.125em;
    line-height: 1em;
    /* padding-left: 2em; */
    display: block;
    text-align: left;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
}

.fancy.white .text,
.fancy.yellow .text {
    color: #ffffff;
}

.fancy .top-key {
    height: 2px;
    width: 1.5625rem;
    top: -2px;
    left: 0.625rem;
    position: absolute;
    background: #AA8A2E;
    transition: width 0.5s ease-out, left 0.3s ease-out;
}

.fancy .bottom-key-1 {
    height: 2px;
    width: 1.5625rem;
    right: 1.875rem;
    bottom: -2px;
    position: absolute;
    background: #AA8A2E;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy .bottom-key-2 {
    height: 2px;
    width: 0.625rem;
    right: 0.625rem;
    bottom: -2px;
    position: absolute;
    background: #AA8A2E;
    transition: width 0.5s ease-out, right 0.3s ease-out;
}

.fancy:hover {
    color: white;
    background: #AA8A2E;
}

.fancy:hover::before {
    background: white;
}

.fancy:hover .text {
    color: white;
    /* padding-left: 1.5em; */
}

.fancy:hover .top-key {
    left: -2px;
    width: 0px;
}

.fancy:hover .bottom-key-1,
.fancy:hover .bottom-key-2 {
    right: 0;
    width: 0;
}

/* CUSTOM HAMBURGER */
.site-header .menu-toggle {
    width: 26px;
    height: 20px;
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
}

.site-header .menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header .menu-toggle span:nth-child(1) {
    top: 0;
}

.site-header .menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.site-header .menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* OPEN STATE (CROSS) */
.site-header .menu-toggle.is-open span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.site-header .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header .menu-toggle.is-open span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

.site-header .navbar-toggler:focus {
    box-shadow: none;
}

#mobileMenu .offcanvas-header .btn-close {
    font-size: 22px;
    opacity: 1;
}

#mobileMenu .offcanvas-header .btn-close:focus {
    box-shadow: unset;
}

#mobileMenu .offcanvas-header {
    padding-top: 0;
}

#mobileMenu {
    padding: 20px 0;
}

/* hero slider start */

.hero-slider {
    width: 100%;
    height: 700px;
}

.hero-slider .heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slider .slide-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

/* Dark overlay */
.hero-slider .slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 80%);
}

.hero-slider .slide-content {
    position: relative;
    max-width: 600px;
    color: #fff;
}

.hero-slider .subheading {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f5b942;
    margin-bottom: 12px;
    line-height: 24px;
}

.hero-slider .heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    padding: 10px 0 16px;
    letter-spacing: 2px;
}

.hero-slider .description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 26px;
}

.hero-slider .btn-group {
    display: flex;
    gap: 15px;
}

.hero-slider .btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-slider .btn.primary {
    background: #f5b942;
    color: #000;
}

.hero-slider .btn.primary:hover {
    background: #fff;
}

.hero-slider .btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-slider .btn.secondary:hover {
    background: #fff;
    color: #000;
}

/* Centered arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: #fff;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 30px;
}

/* hero slider end */


/* about start  */


/* Badge */

.about-modern .image-stack {
    position: relative;
}

.about-modern .image-stack1 {
    position: relative;
    width: 70%;
    height: 550px;
}

.about-modern .image-stack2 {
    position: absolute;
    z-index: 1;
    right: -10px;
    width: 50%;
    height: 500px;
    top: 50%;
    transform: translateY(-50%);
}

.about-modern .image-stack1 img,
.about-modern .image-stack2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-modern .image-stack1 img {
    border-radius: 20px;
}

.about-modern .image-stack2 img {
    border-radius: 30px;
    border: 10px solid #ffffff;
}

.about-modern {
    background: url(../images/bg1.jpg) no-repeat;
    background-size: cover;
    background-position: top left;
}

.about-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    color: #AA8A2E;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Heading */
.about-modern .about-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
}

/* Paragraph */
.about-modern .about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 35px;
}

/* ==============================
   KEY INFO GRID
============================== */

.about-modern .about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-modern .info-item {
    border-left: 3px solid #AA8A2E;
    padding-left: 15px;
}

.about-modern .info-item span {
    font-size: 13px;
    color: #AA8A2E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-modern .info-item p {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0 0;
    color: #000000;
}

/* ==============================
   IMAGE STYLING
============================== */

.about-modern .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-modern .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-modern .about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.2));
}

/* ==============================
   USP SECTION
============================== */


.about-modern .usp-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-modern .usp-item i {
    font-size: 28px;
    color: #AA8A2E;
    margin-top: 5px;
}

.about-modern .usp-item h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000000;
}

.about-modern .usp-item p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.about-modern .usp-item svg {
    color: #ffffff;
    font-size: 40px;
}

/* .about-modern .year-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #005182, #003b4f);
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 35px rgba(0, 81, 130, 0.4);
}

.about-modern .year-box span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #faa31f;
    white-space: nowrap;
}

.about-modern .year-box strong {
    background: #faa31f;
    color: #003b4f;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
} */


/* .about-modern .year-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 81, 130, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-modern .year-box span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #faa31f;
}

.about-modern .year-box strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
} */

.about-modern .year-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #005182;
    color: #fff;
    padding: 12px 18px;
    border-left: 4px solid #faa31f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.about-modern .year-box span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #faa31f;
}

.about-modern .year-box strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}



/* about end */


/* category section start */


.category-section .slider-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.category-section .section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Arrows */
.category-section .slider-arrows {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.category-section .custom-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #AA8A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    color: #ffffff;
}

.category-section .custom-arrow:hover {
    background: #ffffff;
    color: #000000;
    border: 1px solid #AA8A2E;
}


/* Card */
.category-section .category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.category-section .category-card .img-bx {
    overflow: hidden;
    height: 300px;
}

.category-section .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-section .category-card:hover img {
    transform: scale(1.08);
}

/* Overlay */
.category-section .category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: 0.4s;
}

.category-section .category-card:hover::after {
    opacity: 1;
}

/* Label */
.category-section .category-label {
    width: 70%;
    z-index: 2;
}

.category-section .category-label span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
}

.category-section .category-labels {
    width: 70%;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}


.category-section .category-labels span {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
}

.category-section .arrow-circle {
    width: 34px;
    height: 34px;
    background: #AA8A2E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-section .arrow-circle svg {
    color: #ffffff;
}

.content-bx {
    padding: 25px 25px 35px;
    display: block;
    background: #d2c397;
    min-height: 185px;
}

.product-description {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    opacity: 0.9;
}

.product-country {
    margin-top: 8px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-country span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #000000;
    opacity: 0.9;
}

.product-country img {
    filter: brightness(0) invert(1);
}


.product-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


.product-tags span {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    border: 1px solid rgb(122 94 13);
    border-radius: 14px;
    line-height: 1;
    background: transparent;
    transition: all 0.3s ease;
}


.category-section.main-c .category-card,
.category-section.main .category-card {
    height: 280px;
}

.category-section.main-c .category-labels {
    justify-content: space-between;
}

.category-section.main-c .category-swiper,
.category-section.main .category-swiper {
    height: 100%;
}

/* category section end */


/* product section start */

.our-products {
    background: url(../images/bg1.jpg) no-repeat;
    background-size: cover;
    background-position: bottom 200px center;
}

/* Heading */
.our-products .section-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AA8A2E;
    margin-bottom: 10px;
    font-weight: 600;
}

.our-products .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

/* Product Card */
.our-products .product-card {
    text-align: center;
}

.our-products .product-img {
    overflow: hidden;
    border-radius: 16px;
    height: 280px;
    border: 1px solid #aa8a2e;
    background: #ffffff;
}

.our-products .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.our-products .product-card:hover .product-img img {
    transform: scale(1.08);
}

.our-products .product-title {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

/* Explore Button */
.our-products .explore-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #AA8A2E;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.our-products .explore-btn:hover {
    background: #AA8A2E;
    color: #ffffff;
}

/* product section end */


/* our usp start */

.usp-section {
    padding: 70px 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 44%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.25) 54%,
            rgba(255, 255, 255, 0) 60%),
        linear-gradient(to right,
            #885f2b 0%,
            #997b33 6%,
            #b39050 20%,
            #cda66d 38%,
            #ddb47e 50%,
            #bd995b 65%,
            #b38a56 100%);

}

.usp-section .usp-card {
    background: #ffffff;
    text-align: center;
    padding: 45px 35px;
    border-radius: 14px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #AA8A2E;
}

.usp-section .usp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.usp-section .usp-icon {
    width: 70px;
    height: 70px;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.usp-section .usp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.usp-section .usp-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.usp-section .usp-card p {
    font-size: 14px;
    color: #555555;
    margin: 0;
}

/* our usp end */


/* testimonail start */

.testimonial {
    position: relative;
}

.testimonial:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial .content h2 {
    font-size: 26px;
    line-height: 36px;
    color: #ffffff;
}

.testimonial .content p {
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}

.testimonial .content a {
    display: inline-flex;
    align-items: center;
    gap: 0 10px;
    font-size: 16px;
    line-height: 36px;
    color: #000000;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid transparent;
    padding: 10px 20px;
    transition: 0.5s;
    border-radius: 30px;
    border: 1px solid #ffffff;
}

.testimonial .content a i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 12px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
}

.testimonial .content a i:before {
    font-weight: 600 !important;
}

.testimonial .slide-card {
    border-radius: 10px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.129);
}

.testimonial .slides .slick-slide {
    margin: 0 10px;
}

.testimonial .slide-card .slide-img {
    width: 100%;
    height: 250px;
    position: relative;
}

.testimonial .slide-card .slide-img i {
    position: absolute;
    left: 0;
    bottom: -30px;
    background: #012e6a;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial .slide-card .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial .slide-card .slide-content {
    padding-top: 30px;
}

.testimonial .slide-card .slide-content p {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 0;
}

.testimonial .slide-card .slide-content h3 {
    font-size: 25px;
    line-height: 35px;
    color: #000000;
    padding-top: 10px;
}

.testimonial .slide-card .slide-content h4 {
    font-size: 18px;
    line-height: 28px;
    color: #474747;
    font-style: italic;
}

.testimonial .slide-card .slide-content ul {
    display: flex;
    padding-left: 0;
    gap: 0 5px;
    margin-bottom: 0;
}

.testimonial .slide-card .slide-content ul li i {
    color: #fbad00;
    font-size: 14px;
}

.testimonial .slides .slick-prev:before {
    content: "\F284";
    font-family: "bootstrap-icons";
    color: #000000;
}

.testimonial .slides .slick-next:before {
    content: "\F285";
    font-family: "bootstrap-icons";
    color: #000000;
}

.testimonial .slides .slick-prev,
.testimonial .slides .slick-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 999;
    border: 1px solid transparent;
}

.testimonial .slides .slick-prev:hover,
.testimonial .slides .slick-next:hover {
    background: #012e6a;
    border: 1px solid #ffffff;
}

.testimonial .slides .slick-prev {
    left: 0;
}

.testimonial .slides .slick-next {
    right: -50px;
}

.testimonial .slides .slick-prev {
    left: -50px;
}

.testimonial .slides .slick-dots {
    bottom: -60px;
}

.testimonial .slides .slick-dots li.slick-active button {
    background: #ffffff;
}

.testimonial .slides .slick-dots li button {
    width: 12px;
    height: 12px;
    background: #cecece96;
    border-radius: 50%;
}

.testimonial .slides .slick-dots li button:before {
    display: none;
}

.testimonial .slides .slick-prev:hover:before,
.testimonial .slides .slick-next:hover:before {
    color: #ffffff;
}

/* testimonail end */


/* contact detail start */

.contact-details {
    position: relative;
}

.contact-details::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: url(../images/contact-form.webp) no-repeat;
    background-position: center bottom;
    z-index: -2;
    background-size: cover;
}

.contact-details::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: #0000006b;
    z-index: -1;
}


.contact-details .form-control {
    height: 50px;
    border-radius: 5px !important;
}

.contact-details .form-control:focus,
.contact-details .form-control .ts-control:focus {
    border: unset;
    box-shadow: unset;
}

.contact-details textarea.form-control {
    height: 150px;
}

.contact-details .submit-icon {
    display: none;
}

.contact-details .submit-icon.rotating-show {
    display: inline-block;
    vertical-align: middle;
}

@-webkit-keyframes rotating

/* Safari and Chrome */
    {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.contact-details .rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

.contact-details .contact-form-sec {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: rgba(0, 96, 113, 0.961) !important;
    border-radius: 0;
    padding: 30px;
}



.contact-details .contact-us-main {
    display: grid;
    grid-template-columns: 60px auto;
    gap: 20px;
    margin-top: 20px;
}

.contact-details .main-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #AA8A2E;
    border-radius: 50%;
    font-size: 20px;
    color: #ffffff;
}

.contact-details .main-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-details .main-content p,
.contact-details .main-content a {
    font-size: 17px;
    color: #000000;
    transition: 0.5s;
}

.contact-details .main-content a:hover {
    color: #AA8A2E;
}

.contact-details .country-select {
    width: 100%;
}

/* Input styled like select */
.contact-details .country-select input {
    cursor: pointer;
    background-color: #fff;
    padding-right: 40px;
    /* space for arrow */
}

/* Dropdown arrow (select look) */
.contact-details .country-select::after {
    content: "\f078";
    /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* required for solid icons */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #333;
    pointer-events: none;
}

/* Hide blinking cursor */
.contact-details .country-select input {
    caret-color: transparent;
}

/* Dropdown list full width */
.contact-details .country-select .country-list {
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    z-index: 9999;
}

/* Hover like native select */
.contact-details .country-select .country-list li:hover {
    background-color: #f2f2f2;
}

.contact-details .ts-control {
    padding: 14px;
}

.contact-details .contact-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #000000;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-details .contact-close-btn:hover {
    background: #AA8A2E;
    transform: rotate(90deg);
}

.contact-details .contact-title {
    font-weight: 700;
    color: #fff;
}

.contact-details .contact-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


.contact-details .focus .ts-control {
    box-shadow: none;
    border: none;
}

/* contact detail end */


/* blog start */

.our-certificates {
    background: url(../images/bg2.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}

.blog-card {
    border-radius: 10px;
    background: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-card .blog-card-img {
    width: 100%;
    height: 250px;
}

.blog-card .blog-card-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

.blog-card .blog-card-content {
    padding: 20px 30px;
}

.blog-card .blog-card-content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;

}

.blog-card .blog-card-content p {
    margin: 15px 0;
    font-size: 16px;
}

.blog-card .blog-card-content a {
    margin-left: auto;
}

/* blog end */

/* footer start */

.footer {
    background: rgba(255, 226, 141, 0.149);
}

.footer-content h2 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-content ul li a {
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    padding-top: 8px;
    display: inline-block;
    transition: 0.5s;
}

.footer-content ul li a:hover {
    color: #AA8A2E;
}

.footer-logo .footer-logo-img img {
    width: 230px;
}

.footer-logo .social-list {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

.footer-logo .social-list li a {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    background: #AA8A2E;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.5s;
}

.footer-logo .social-list li a:hover {
    background: #006071;
}

.bottom-footer p,
.bottom-footer a {
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}

/* footer end */

.cp {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ch {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 50px;
}


/* back to top start */

/* BACK TO TOP BUTTON */
#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    background: #AA8A2E;
    /* initial color */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #ffffff;
}

/* SHOW BUTTON */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER EFFECT */
#backToTop:hover {
    background: #777777;
}

/* ICON ANIMATION */
#backToTop i {
    transition: transform 0.3s ease;
}

#backToTop:hover i {
    transform: translateY(-3px);
}


/* back to top end */


/* inner banner start */

.inner-banner {
    padding: 100px 0;
    position: relative;
}

.inner-banner .bg-overlay {
    background: rgba(0, 0, 0, 0.74);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.inner-banner .main-content {
    position: relative;
    z-index: 1;
}

.inner-banner h1 {
    font-size: 60px;
    line-height: 70px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 6px;
}

.inner-banner .main-content p {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
}

.inner-banner .main-content p a {
    color: #AA8A2E;
}

.contact-m {
    background: url(../images/bg2.jpg);
    background-size: cover;
    background-position: top left;
}

.contact-m::before,
.contact-m::after {
    display: none;
}

/* inner banner  end*/

.map .map-c iframe {
    border-radius: 10px;
}

.category-section.products-sec .category-card {
    background: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.category-section.products-sec .category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* gallery start */

.gallery-sec .gallery-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-sec .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
}

.gallery-sec .gallery-image:hover img {
    transform: scale(1.1);
}

/* Overlay */
.gallery-sec .gallery-image .overlay {
    position: absolute;
    left: 0;
    top: 0;
    background: #0000006c;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 1;
}

.gallery-sec .gallery-image:hover .overlay {
    opacity: 1;
    visibility: visible;
}

/* Text bottom-left */
.gallery-sec .gallery-image .overlay h2 {
    font-size: 22px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
}

/* Full card clickable */
.gallery-link {
    display: block;
    text-decoration: none;
}

/* gallery end */

/* our certificates start */

.our-certificates .swiper-slide img {
    width: 100px
}

/* our certificates end */

.popup-head {
    font-size: 30px;
    line-height: 40px;
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 24px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-whatsapp .my-float-whatsapp {
    margin-top: 16px;
}

/* product category start */

.processing .custom-accordion {
    margin: auto;
}

.processing .custom-accordion .accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px;
    background: #f8f8f8;
    overflow: hidden;
}

.processing .custom-accordion .accordion-button {
    background: #f8f8f8;
    color: #333;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.processing .custom-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Active state */
.processing .custom-accordion .accordion-button:not(.collapsed) {
    background: #AA8A2E;
    border-radius: 12px 12px 0 0;
    color: #ffffff;
}

.processing .custom-accordion .accordion-button:not(.collapsed) svg {
    color: #ffffff;
}

/* Remove default arrow */
.processing .custom-accordion .accordion-button::after {
    display: none;
}

/* Left icon */
.processing .custom-accordion .left-icon {
    font-size: 14px;
    color: #666;
}

/* Right arrow */
.processing .custom-accordion .arrow-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #555;
}

.processing .custom-accordion .accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
}

/* Body */
.processing .custom-accordion .accordion-body {
    background: #fffbee;
    padding: 18px 20px;
    color: #555;
    border-top: 1px solid #dbe6f2;
}

.processing .process-img {
    width: 100%;
    height: 350px;
}

.processing .process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.processing .accordion-header .accordion-button {
    font-size: 17px;
    letter-spacing: 1px;
}


.products-sec .category-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.products-sec .category-tab {
    width: 180px;
    border-radius: 10px;
    background: linear-gradient(358deg, hsl(45deg 55% 43% / 46%), #AA8A2E);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 20px 30px;
    gap: 10px;
    transition: 0.4s;
}



.products-sec .category-tab img {
    color: #ffffff;
    transition: 0.5s;
}

.products-sec .category-tab:hover img {
    transform: scale(1.1);
}

.products-sec .category-tab img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.products-sec .category-tab.active {
    background: #AA8A2E;
    color: #fff;
    transform: scale(1.07);
}

/* ================= FILTER PILLS ================= */
.products-sec .filter-bar {
    display: none;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 30px 0;
}

.products-sec .filter-pill {
    border: 1px solid #AA8A2E;
    padding: 4px 25px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    color: #AA8A2E;
    transition: .3s;
}

.products-sec .filter-pill.active {
    background: #AA8A2E;
    color: #fff;
}

/* ================= PRODUCT CARD ================= */
.products-sec .product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.products-sec .product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 20px;
}

.products-sec .product-info {
    background: #c7372f;
    color: #fff;
    padding: 20px;
}

.products-sec .product-info h5 {
    margin-bottom: 4px;
}

.products-sec .badge-pill {
    border: 1px solid #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin: 4px 4px 0 0;
}

/* product category end */

/* our mission vision start */


.our-mission .our-mission-card .head h2 {
    font-size: 30px;
    line-height: 36px;
    color: #000000;
    background: #AA8A2E;
    margin: 0 80px 0 80px;
    border-radius: 50px 50px 0 0;
    color: #ffffff;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.our-mission .our-mission-card .head.head2 h2 {
    background: #006071;
}

.our-mission .our-mission-card .head h2::before {
    content: "\f0d7";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 0; */
    bottom: -22px;
    font-size: 60px;
    color: #aa8a2e;
}

.our-mission .our-mission-card .head.head2 h2::before {
    color: #006071;
}

.our-mission .our-mission-card .content .content-icon {
    width: 80px;
    height: 80px;
}

.our-mission .our-mission-card .content {
    padding: 35px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 80px auto;
    gap: 30px;
    align-items: center;
    min-height: 180px;
}

.our-mission .our-mission-card .content p {
    font-size: 16px;
}

.our-mission .our-mission-card .content .content-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* our mission vision end */

/* our value start */

.core-values .value-card {
    text-align: center;
    background: linear-gradient(135deg, #f3e2b8 0%, #d8b46a 35%, #b08d2b 65%, #8c6f1f 100%);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px 30px;
    border-radius: 20px;
    transition: 0.2s;
}

.core-values .value-card:hover {
    background: #AA8A2E;
}

.core-values .value-card .value-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.core-values .value-card .value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.core-values .value-card .value-content h3 {
    font-size: 17px;
    line-height: 27px;
    padding: 16px 0 8px 0;
    color: #ffffff;
    font-weight: 600;
}

.core-values .value-card .value-content p {
    font-size: 12px;
    line-height: 22px;
    color: #ffffff;
}

/* our value end */

.why-us-modern {
    background: #f8f9fa;
}

/* ================= LEFT STICKY IMAGE ================= */
.why-us-image {
    position: sticky;
    top: 0;
    height: 100vh;
    background: url("../images/about-why.jpg") center center / cover no-repeat;
}

/* ================= RIGHT CONTENT ================= */
.why-us-content {
    max-width: 720px;
    padding: 80px 60px;
}

/* ================= CARD ================= */
.why-us-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-us-card h3 {
    font-size: 20px;
    color: #AA8A2E;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-us-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

.our-certificates .swiper-slide {
    padding: 30px 0;
}

.our-certificates .swiper-slide,
.our-certificates .swiper-slide img {
    transition: 0.5s;
}

.our-certificates .swiper-slide:hover img {
    transform: scale(1.2);
}

.category-section .category-swiper .swiper-slide {
    height: 300px;
    background: #ffffff;
}

.category-section .category-swiper .swiper-button-prev,
.category-section .category-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #AA8A2E;
    border-radius: 50%;
    border: 1px solid #AA8A2E;
    font-size: 16px;
    color: #ffffff;
}

.category-section .category-swiper .swiper-button-prev:hover,
.category-section .category-swiper .swiper-button-next:hover {
    background: #ffffff;
}

.category-section .category-swiper .swiper-button-prev:after,
.category-section .category-swiper .swiper-button-next:after {
    font-size: 16px;
}

.category-section .category-swiper .swiper-button-prev:hover:after,
.category-section .category-swiper .swiper-button-next:hover:after {
    color: #AA8A2E;
}


/* sustainbility start */

.sustainability-section {
    padding: 90px 0;
}

/* HERO AREA */
.sustainability-section .sustainability-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 430px;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000') center/cover no-repeat;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* HERO OVERLAY */
.sustainability-section .sustainability-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(0, 0, 0, 0.75),
            rgba(170, 138, 46, 0.38));
}

/* HERO CONTENT */
.sustainability-section .sustainability-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    color: #fff;
}

.sustainability-section .sustainability-badge {
    display: inline-block;
    background: #AA8A2E;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
}

.sustainability-section .sustainability-content h2 {
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.sustainability-section .sustainability-content h2 span {
    color: #ffd252;
}

.sustainability-section .sustainability-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
}

/* INFO CARDS */
.sustainability-section .sustainability-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.sustainability-section .sustainability-card:hover {
    transform: translateY(-10px);
}

/* ICON */
.sustainability-section .sustainability-icon {
    width: 56px;
    height: 56px;
    background: #AA8A2E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.sustainability-section .sustainability-card:hover .sustainability-icon {
    background: #8f7425;
}

.sustainability-section .sustainability-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 32px;

}

.sustainability-section .sustainability-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* sustainbility end */

/* VIDEO HERO SECTION */
.video-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 53%);
    z-index: 2;
}

/* CONTENT */
.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.video-content h1 {
    font-size: 80px;
    line-height: 90px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.video-content p {
    font-size: 16px;
    letter-spacing: 0.35em;
    line-height: 26px;
    text-transform: uppercase;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .video-hero {
        height: 50vh;
    }

    .video-content h1 {
        font-size: 60px;
        line-height: 80px
    }
}

@media (min-width: 2400px) {
    .why-us-image {
        height: 80vh;
    }
}

@media (min-width: 3000px) {
    .why-us-image {
        height: 61vh;
    }
}


#mobileMenu .product-toggle {
    background: none;
    border: none;
    padding: 13px 10px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #aa8a2e;
}

#mobileMenu .product-toggle i {
    transition: transform 0.3s ease;
}

#mobileMenu .product-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}


/* ================= MOBILE ================= */
@media (max-width: 991px) {
    .why-us-image {
        position: relative;
        height: 400px;
    }

    .why-us-content {
        padding: 60px 20px;
    }
}

@media (min-width: 220px) and (max-width: 991px) {
    /* .header .navbar-nav {
        background: #ffffff;
    }

    .header .dropdown-menu {
        display: none !important;
        visibility: unset !important;
        opacity: unset !important;
        transition: unset !important;
        transform: unset;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

    .header .dropdown-menu.show {
        visibility: unset !important;
        opacity: unset !important;
        transform: unset;
        display: block !important;
        background: transparent;
        border: none;
    }

    .header .dropdown-item {
        border-bottom: none;
        border-bottom: 1px solid #B9B9B9;
        padding: 16px 35px;
    }

    .header .offcanvas {
        width: 300px !important;
    }

    .header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 16px 20px;
        border-bottom: 1px solid #B9B9B9;
        text-align: left;
    }

    .header .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link {
        border-top: 1px solid #B9B9B9;
    }

    .header .navbar-toggler-icon {
        width: 24px;
        height: 24px;
        background-size: cover;
    }

    .fancy {
        padding: 15px 25px;
        font-size: 11px;
    }

    .header .dropdown-menu li:last-child .dropdown-item {
        border-bottom: 1px solid #B9B9B9;
    }

    .header .top-detail ul li a,
    .header .top-detail ul li {
        font-size: 16px;
    }

    .header .logo {
        width: 170px;
    }

    .header .top-head-contact {
        grid-template-columns: 50px auto;
        gap: 10px;
    }

    .header .top-icon {
        width: 50px;
        height: 50px;
    }

    .header .top-head-contact {
        padding-top: 10px;
    }

    .header .navbar-expand-lg .navbar-nav .nav-item:first-child .nav-link {
        padding: 16px 20px;
    } */


    .testimonial .col-xl-9 {
        padding: 30px 0 0;
    }

    .testimonial .slides .slick-prev {
        left: 0;
    }

    .testimonial .slides .slick-next {
        right: 0;
    }

    .testimonial .slide-card .slide-img {
        height: 200px;
    }

    .testimonial .slide-card .slide-content h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .testimonial .slide-card .slide-img i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: -20px;
    }

    .testimonial {
        padding: 30px 15px 60px;
    }

    .testimonial .slides .slick-slide {
        margin: 0 5px;
    }

    .testimonial .slides .slick-prev,
    .testimonial .slides .slick-next {
        bottom: -86px;
        top: unset;
    }

    .gallery-sec .gallery-image {
        width: 100%;
        height: 250px;
    }

    .site-header .logo-col {
        display: block;
    }

    .site-header .top-header {
        flex-direction: row;
        padding: 8px 0;
    }

    .site-header .top-header .tablet-logo {
        margin-right: auto;
    }

    .site-header .header-row {
        grid-template-columns: 200px 1fr;
    }

    .site-header .bottom-header {
        padding: 10px 0 !important;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .site-header .custom-navbar {
        justify-content: flex-end;
    }

    #mobileMenu .navbar-nav {
        gap: 0 !important;
    }

    #mobileMenu .navbar-nav li:first-child .nav-link {
        border-top: 1px solid #aa8a2e;
    }

    #mobileMenu .nav-link {
        font-size: 18px;
        border-bottom: 1px solid #aa8a2e;
        padding: 13px 20px;
    }

    #mobileMenu .offcanvas-header {
        padding: 0 30px 10px 20px;
    }

    #mobileMenu .offcanvas-body {
        padding: 20px 0 0;
    }

    #mobileMenu .navbar-nav li:last-child .quote-btn {
        margin: 0px 20px;
        display: inline-block;
        width: auto !important;
    }

    .contact-details::before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 40%;
        background: url(../images/contact-form.webp) no-repeat;
        background-position: center center;
        z-index: -2;
        background-size: cover;
    }

    .contact-details::after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 40%;
        background: #0000006b;
        z-index: -1;
    }

    .ch {
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 45px;
    }

    .sustainability-section .sustainability-card {
        padding: 25px;
    }

    .blog-card .blog-card-content {
        padding: 20px;
    }

    .our-certificates .swiper-slide {
        padding: 30px 0 0;
    }

    .inner-banner {
        padding: 80px 0;
    }

    .inner-banner h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .why-us-content {
        max-width: 100%;
        padding: 0 30px;
    }

    .why-us-modern {
        padding-bottom: 70px;
    }

    .about-modern .image-stack1 {
        height: 500px;
    }

    .about-modern .image-stack2 {
        height: 400px;
    }

    .products-sec .category-tab {
        min-width: 180px;
    }

    .products-sec .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .products-sec .category-tabs::-webkit-scrollbar {
        display: none;
    }

    #mobileMenu ul li a {
        color: #000000;
    }

    #mobileMenu ul.inner-ul li a {
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #aa8a2e;
        padding: 13px 20px 13px 35px;
    }

    #mobileMenu .nav-link.active,
    #mobileMenu ul.inner-ul li a.active {
        color: #aa8a2e;
    }

    #mobileMenu ul.inner-ul li a img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
}

@media (min-width: 768px) and (max-width: 991px) {}

@media (min-width: 220px) and (max-width: 767px) {
    .d-hide {
        display: none;
    }

    .header .logo {
        width: 170px;
        margin: 0 auto;
    }

    /* .header .bottom-head .text-start {
        text-align: right !important;
    } */

    .header .navbar-toggler {
        padding: 0;
    }

    .header .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .testimonial .slide-card {
        padding: 10px;
    }

    .gallery-sec .gallery-image {
        width: 100%;
        height: 200px;
    }

    .site-header .logo-col img {
        max-width: 120px;
    }

    .site-header .header-row {
        grid-template-columns: 130px 1fr;
    }

    .site-header .logo-col::before {
        position: absolute;
        width: 1400%;
        height: 100%;
        background: #ffffff;
        content: '';
        left: -1307%;
        top: 0;
        z-index: 0;
    }

    .site-header::before {
        height: 52px;
    }

    .site-header .top-item {
        display: block;
    }

    .site-header .top-item a span {
        display: none;
    }

    .site-header .menu-toggle {
        width: 24px;
        height: 19px;
    }

    #mobileMenu {
        right: -1px !important;
        width: 300px;
    }

    #mobileMenu .nav-link {
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .video-content h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .video-content p {
        letter-spacing: 1px;
        font-size: 14px;
    }

    .ch {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .cp {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sustainability-section .sustainability-content h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 10px 0 !important;
    }

    .sustainability-section .sustainability-badge {
        margin-bottom: 0;
    }

    /* .category-section .category-labels {
        justify-content: space-between;
    } */

    .usp-section .usp-card {
        padding: 20px 10px;
    }

    .usp-section .usp-card h5 {
        font-size: 14px;
        line-height: 24px;
    }

    .footer .f1-order {
        order: 1;
    }

    .footer .f2-order {
        order: 0;
    }

    .footer .f3-order {
        order: 2;
    }

    .bottom-footer p {
        font-size: 14px;
    }

    .footer-content h2 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .footer-content ul li a,
    .blog-card .blog-card-content p {
        font-size: 15px;
    }

    .blog-card .blog-card-content p {
        font-size: 15px;
        margin: 8px 0 15px;
    }

    .contact-details .main-icon {
        width: 45px;
        height: 45px;
    }

    .contact-details .contact-us-main {
        grid-template-columns: 45px auto;
        gap: 15px;
    }

    .contact-details .main-content h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contact-details .main-content p,
    .contact-details .main-content a {
        font-size: 16px;
    }

    .category-section .category-labels {
        width: 86%;
    }

    /* .category-section .category-card {
        height: 250px;
    } */

    .about-modern .image-stack1 {
        height: 400px;
    }

    .about-modern .image-stack2 {
        height: 350px;
    }

    .about-modern .image-stack2 img {
        border-width: 5px;
    }

    .sustainability-section .sustainability-content p {
        font-size: 15px;
    }

    .inner-banner {
        padding: 70px 0;
    }

    .inner-banner h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .inner-banner .main-content p {
        margin-bottom: 0;
        margin-top: 5px;
    }

    .our-mission .our-mission-card .head h2 {
        margin: 0 20px 0 20px;
        font-size: 22px;
        line-height: 32px;
    }

    .our-mission .our-mission-card .content {
        grid-template-columns: auto;
        gap: 15px;
        justify-content: center;
        padding: 30px 20px;
        min-height: unset;
    }

    .our-mission .our-mission-card .content .content-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }

    .our-mission .our-mission-card .content p {
        text-align: center;
        font-size: 14px;
    }

    .our-mission .our-mission-card .head h2::before {
        bottom: -18px;
        font-size: 36px;
    }

    .core-values .value-card .value-icon {
        width: 70px;
        height: 70px;
    }

    .core-values .value-card .value-icon img {
        padding: 13px;
    }

    .core-values .value-card {
        padding: 20px;
    }

    .why-us-image {
        height: 300px;
    }

    .why-us-content {
        padding: 0 15px;
    }

    .why-us-modern {
        padding-bottom: 40px;
    }

    .products-sec .category-tab {
        min-width: 130px;
        padding: 16px;
    }

    .products-sec .category-tab img {
        width: 50px;
        height: 50px;
    }

    .products-sec .category-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
    }

    .content-bx {
        min-height: auto;
    }

    .category-section.main-c .category-card {
        height: 250px;
    }

    #mobileMenu .nav-link svg {
        font-size: 15px;
    }

    #mobileMenu .offcanvas-header .btn-close {
        font-size: 15px;
    }

    #mobileMenu .offcanvas-body {
        padding: 10px 0 0;
    }

    #mobileMenu .offcanvas-header {
        padding-right: 16px;
    }

    .processing .process-img {
        height: 300px;
    }

    .processing .process-content h2.h2 {
        margin: 30px 0 !important;
        font-size: 25px;
        line-height: 35px;
    }

    .processing .accordion-header .accordion-button {
        font-size: 16px;
    }

    .processing .custom-accordion .accordion-body {
        font-size: 15px;
    }

    .contact-details .contact-form-sec {
        padding: 30px 20px;
    }

    #mobileMenu ul.inner-ul li a{
        font-size:14px;
    }
}