/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    scrollbar-color: rgb(237, 200, 144) rgb(255, 255, 255);
    scrollbar-width: thin;
    scroll-behavior: smooth;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F6F5ED;
    color: #4e3725;
    font-size: 18px;
    overflow-x: hidden;
}

.navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
    height: 60px;
    background: #F6F5ED;
}

.logo {
    height: 70px;
    width: auto;
}

.navbar-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar a {
    position: relative;
    font-size: 1em;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
    transition: background 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: background 0.3s ease, transform 0.3s ease;
    transition: background 0.3s ease, transform 0.3s ease;
    transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    color: #4e3725;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    left: 0;
    background: rgb(75, 53, 22);
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: rgb(75, 53, 22);
    margin: 4px 0;
    margin-right: 20px;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.hamburger.active .bar1 {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar2 {
    opacity: 0;
}

.hamburger.active .bar3 {
    -webkit-transform: rotate(-45deg) translate(11px, -11px);
    -ms-transform: rotate(-45deg) translate(11px, -11px);
    transform: rotate(-45deg) translate(11px, -11px);
}

.mobile-menu {
    position: fixed;
    top: 50;
    right: 0;
    height: 100%;
    width: 300px;
    background-color: #F6F5ED;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu a {
    color: #4e3725;
    text-decoration: none;
    font-size: 1.125em;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 25px;
    left: 0;
    background: rgb(75, 53, 22);
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.mobile-menu a:hover::after {
    width: 100%;
}

@media screen and (max-width: 944px) {
    .navbar-links {
        display: none;
    }

    .hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 460px) {
    .hamburger div {
        margin: 4px 0;
        margin-right: 0px;
    }
}

/* landing-page */
.carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.carousel-slides {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.carousel-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.232);
}

.carousel-slide:nth-child(1) {
    background-image: url('./images/1684494826145.jpg');
}

.carousel-slide:nth-child(2) {
    background-image: url('./images/Vanish-768x512.jpg.webp');
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

h1#animated-text {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: bold;
    color: #1f2937 !important;
    margin-bottom: 10px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

h1#animated-text span {
    display: inline-block;
    opacity: 0;
    -webkit-animation: bounceIn 1s ease-out forwards;
    animation: bounceIn 1s ease-out forwards;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5) translateY(50px);
        transform: scale(0.5) translateY(50px);
    }

    70% {
        -webkit-transform: scale(1.2) translateY(-10px);
        transform: scale(1.2) translateY(-10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5) translateY(50px);
        transform: scale(0.5) translateY(50px);
    }

    70% {
        -webkit-transform: scale(1.2) translateY(-10px);
        transform: scale(1.2) translateY(-10px);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
    }
}

.carousel-content p.tagline {
    font-size: 2rem;
    color: #e74c3c;
    font-style: italic;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    border: none;
    color: white;
    font-size: 5rem;
    padding: 10px;
    cursor: pointer;
}

.carousel-button.left {
    left: 20px;
}

.carousel-button.right {
    right: 20px;
}

@media (max-width: 768px) {
    h1#animated-text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .carousel-content p.tagline {
        font-size: 1.5rem;
    }

    .carousel-button {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .carousel-content p.tagline {
        font-size: 1.2rem;
    }

    .carousel-button {
        font-size: 1.5rem;
    }
}

.main-head {
    font-size: 2.5rem;
    color: #372a1e;
}

/* landing content */
.landing-container {
    width: 90%;
    margin: auto;
    padding: 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.landing-container p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
    text-align: justify;
}

.text-content {
    width: 45%;
    text-align: left;
}

.text-content h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #b28a53;
    letter-spacing: 1px;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin: 20px 0;
}

.paragraph-content {
    width: 50%;
}

.paragraph-content img {
    width: 100%;
    height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .paragraph-content {
        width: 100%;
    }

    .paragraph-content {
        margin-top: 20px;
    }

}

@media screen and (max-width: 768px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .paragraph-content p {
        font-size: 1rem;
    }

    .paragraph-content img {
        height: 60vh;
    }

}

@media screen and (max-width: 480px) {
    .paragraph-content {
        width: 100%;
        text-align: center;
    }

    .paragraph-content img {
        height: 40vh;
    }
}

/* core value */
.core-value-container {
    width: 100%;
    text-align: center;
}

.header {
    background: #c3975a;
    color: white;
    padding: 50px 20px;
}


.stats {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}


.stat {
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

.stat svg {
    width: 70px;
    height: 70px;
    fill: #ffffff;
}

.stat h3 {
    font-size: 2.5rem;
    margin: 0;
    color: #372a1e;
}

.stat:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #c3975a4a;
    border-radius: 15px;
}

.stat:hover svg {
    fill: #372a1e;
    -webkit-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
}

.stat:hover h3 {
    color: #fff;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.stat:hover p {
    color: #372a1e;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.core-values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.core-text {
    max-width: 50%;
    text-align: left;
}

.core-text h2 {
    color: #4e3725;
    margin-bottom: 20px;
    font-size: 4rem;
}

.core-text p {
    margin-bottom: 20px;
    color: #333;
    font-size: 1rem;
}

.core-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.core-icon {
    width: 50px;
    height: 50px;
    background-color: #4e3725;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.core-icon i {
    color: white;
    font-size: 1.5rem;
}

.core-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(114, 71, 12, 0.4);
    z-index: -1;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.core-icon:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.core-icon:hover::after {
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
    opacity: 1;
}

.core-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.core-title {
    color: #4e3725;
    font-size: 1.6rem;
    margin: 0;
    margin-top: 10px;
}

.core-description {
    line-height: 1.5;
    font-size: 1.2rem !important;
    color: #333;
}

.image-container {
    position: relative;
    max-width: 500px;
}

.image-box {
    position: absolute;
    top: -40px;
    left: 300px;
    width: 50%;
    height: 120%;
    background: #d8d8d8;
    z-index: 0;
}

.image-section img {
    width: 100%;
    height: 60vh;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .core-text {
        max-width: 100%;
        text-align: center;
    }

    .core-values {
        padding: 30px 10px;
    }

    .core-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .core-content {
        max-width: 100%;
    }

    .image-box {
        top: -20px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 80%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .header h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .stat h3 {
        font-size: 24px;
    }

    .core-text h2 {
        font-size: 3rem;
    }

    .core-title {
        font-size: 20px;
    }

    .core-description {
        font-size: 14px;
    }

    .image-box {
        top: -10px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 90%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 10px;
    }

    .header h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .core-text {
        text-align: center;
    }

    .core-text h2 {
        font-size: 2rem;
    }

    .core-text p {
        font-size: 14px;
    }

    .core-title {
        font-size: 18px;
    }

    .core-description {
        font-size: 12px;
    }

    .image-box {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
    }

    .image-section img {
        height: 40vh;
    }
}

/* timeline */
.timeline {
    position: relative;
    white-space: nowrap;
    max-width: 1400px;
    padding: 0 10px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 320px 20px auto;
    grid-template-columns: 320px auto;
    grid-gap: 20px;
}

.timeline::before,
.timeline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 30px;
    width: 100px;
    z-index: 2;
}

.timeline .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 40px;
    color: #583a31;
    background-color: #f3eace;
    white-space: normal;
    border-radius: 10px;
}

.timeline .info img {
    margin-bottom: 20px;
}

.timeline .info p {
    margin-top: 10px;
    color: #7e564a;
}

.timeline .info a {
    text-decoration: none;
}

.timeline ol::-webkit-scrollbar {
    height: 12px;
}

.timeline ol::-webkit-scrollbar-thumb,
.timeline ol::-webkit-scrollbar-track {
    border-radius: 92px;
}

.timeline ol::-webkit-scrollbar-thumb {
    background: #583a31;
}

.timeline ol::-webkit-scrollbar-track {
    background: #583a31;
}

.timeline ol {
    font-size: 0;
    padding: 250px 0;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    overflow-x: scroll;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scrollbar-color: #f3eace #583a31;
}

.timeline ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 160px;
    height: 5px;
    background: #f3eace;
    scroll-snap-align: start;
    -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
    transition: background 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: background 0.3s ease, transform 0.3s ease;
    transition: background 0.3s ease, transform 0.3s ease;
    transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.timeline ol li:hover {
    background: #7e564a;
}

.timeline ol li:last-child {
    width: 340px;
}

.timeline ol li:not(:first-child) {
    margin-left: 14px;
}

.timeline ol li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    bottom: 0;
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    background: #583a31;
    z-index: 1;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.timeline ol li:hover:not(:last-child)::after {
    background: #7e564a;
}

.timeline ol li div {
    position: absolute;
    left: calc(100% + 7px);
    width: 280px;
    height: 10px;
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
    color: #323135;
    background: #f3eace;
    border-radius: 0 10px 10px 10px;
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.timeline ol li:hover div {
    height: 150px !important;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline ol li div::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline ol li div .time-p {
    font-size: 1.2rem;
    color: #583a31;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.timeline ol li:hover div .time-p {
    visibility: visible;
}

.timeline ol li:nth-child(odd) div {
    top: -16px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    border-radius: 10px 10px 10px 0;
}

.timeline ol li:nth-child(odd) div::before {
    top: 100%;
    border-width: 8px 8px 0 0;
    border-color: #f3eace transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
    top: calc(100% + 16px);
}

.timeline ol li:nth-child(even) div::before {
    top: -8px;
    border-width: 8px 0 0 8px;
    border-color: transparent transparent transparent #f3eace;
}

.timeline time {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #583a31;
}

@media screen and (max-width: 800px) {
    .timeline {
        display: block;
    }

    .timeline::before,
    .timeline::after {
        width: 50px;
    }

    .timeline::before {
        left: 0;
    }
}

/* why choose us */
.why-choose {
    position: relative;
    padding: 50px;
    text-align: center;
    margin: 50px auto;
    overflow: visible;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
    transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
    -o-transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.why-choose.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.why-choose h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 80px;
}

.why-choose .container-why-choose {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 150px;
    margin-top: 60px;
}

.why-choose .box {
    padding: 60px 30px;
    text-align: center;
    width: 230px;
    position: relative;
    background-color: #f6f5ed2e;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.why-choose .box:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.why-choose .box h3 {
    font-size: 1.3rem;
    color: black;
    font-weight: bold;
    margin-top: 15px;
}

.why-choose .box p {
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
    line-height: 1.6;
}

.why-choose .number {
    position: absolute;
    top: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: bold;
    color: #463429;
}

.why-choose .wrap {
    margin-top: 40px;
    background-color: #f6f5ed2e;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.why-choose .icon {
    font-size: 3rem;
    padding-top: 10px;
    margin-bottom: 10px;
    color: #003366;
}

.background-img {
    position: absolute;
    top: -200px;
    left: 80px;
    width: 1300px;
    height: 800px;
    background: url('./images/png/abt-svg1.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    -webkit-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    transform: translateX(-150px);
    -webkit-transition: opacity 1s ease-out 0.5s, -webkit-transform 1s ease-out 0.5s;
    transition: opacity 1s ease-out 0.5s, -webkit-transform 1s ease-out 0.5s;
    -o-transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s, -webkit-transform 1s ease-out 0.5s;
}

.background-img.visible {
    opacity: 0.6;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (max-width: 1024px) {
    .why-choose {
        padding: 30px;
    }

    .background-img {
        top: -100px;
        left: -50px;
        width: 800px;
        height: 500px;
    }

    .why-choose h2 {
        font-size: 2.5rem;
    }

}

@media screen and (max-width: 768px) {
    .background-img {
        top: -50px;
        left: -50px;
        width: 600px;
        height: 400px;
    }

    .why-choose h2 {
        font-size: 2rem;
    }

    .why-choose .container-why-choose {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        margin: 0;
    }

    .why-choose .box {
        width: 80%;
        padding: 50px 20px 30px;
    }

}

@media screen and (max-width: 480px) {
    .background-img {
        top: -50px;
        left: -50px;
        width: 400px;
        height: 300px;
    }

    .why-choose h2 {
        font-size: 1.8rem;
    }

}

/* Our Expertise Section */
.our-expertise {
    padding: 60px 20px;
    padding-top: 0 !important;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.our-expertise h2 {
    font-size: 3rem;
    color: #372a1e;
    margin-bottom: 80px;
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(30px);
    -ms-transform: scale(0.9) translateY(30px);
    transform: scale(0.9) translateY(30px);
    -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
    -o-transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.our-expertise h2.animate {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.expertise-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    background: #f3eace;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 320px;
    -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.3s ease, -webkit-transform 0.8s ease-out;
    transition: opacity 0.8s ease-out, -webkit-transform 0.3s ease, -webkit-transform 0.8s ease-out;
    -o-transition: transform 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: transform 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
    transition: transform 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.3s ease, -webkit-transform 0.8s ease-out;
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(30px);
    -ms-transform: scale(0.9) translateY(30px);
    transform: scale(0.9) translateY(30px);
}

.expertise-item.animate {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.expertise-item:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.expertise-item img {
    width: 100%;
    height: 180px;
    max-width: 280px;
    border-radius: 5px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #b28a53;
    margin-bottom: 10px;
}

.expertise-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.know-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: #b28a53;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
    transition: background 0.3s ease, -webkit-transform 0.2s ease;
    -o-transition: background 0.3s ease, transform 0.2s ease;
    transition: background 0.3s ease, transform 0.2s ease;
    transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.know-more-btn:hover {
    background-color: #8c6b3e;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .expertise-grid {
        gap: 20px;
    }

    .expertise-item {
        width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .our-expertise h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .expertise-grid {
        gap: 15px;
    }

    .expertise-item {
        width: 90%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .expertise-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .expertise-item {
        width: 90%;
        max-width: 280px;
    }

    .expertise-item img {
        max-width: 250px;
        height: 150px;
    }

    .expertise-item h3 {
        font-size: 1.3rem;
    }

    .expertise-item p {
        font-size: 0.9rem;
    }

    .know-more-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* What We Do Section */
.what-we-do-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px 0 40px 0;
    background: -o-linear-gradient(330deg, #f6f5ed 40%, #f3eace 100%);
    background: linear-gradient(120deg, #f6f5ed 40%, #f3eace 100%);
}

.what-we-do-title {
    text-align: center;
    margin-bottom: 36px;
    font-size: 2.4rem;
    font-weight: 700;
    color: #372a1e;
    letter-spacing: 1px;
}

.what-we-do-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.advanced-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background: #fff;
    border-radius: 2rem;
    -webkit-box-shadow: 0 8px 32px rgba(178, 138, 83, 0.13), 0 2px 8px rgba(178, 138, 83, 0.08);
    box-shadow: 0 8px 32px rgba(178, 138, 83, 0.13), 0 2px 8px rgba(178, 138, 83, 0.08);
    padding: 0;
    min-width: 1000px;
    max-width: 1300px;
    width: 100%;
    margin: 10px;
    overflow: hidden;
    border: none;
    position: relative;
    -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
    transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
    -o-transition: box-shadow 0.3s, transform 0.3s;
    transition: box-shadow 0.3s, transform 0.3s;
    transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
}

.advanced-card:hover {
    -webkit-box-shadow: 0 16px 48px rgba(178, 138, 83, 0.18), 0 4px 16px rgba(178, 138, 83, 0.13);
    box-shadow: 0 16px 48px rgba(178, 138, 83, 0.18), 0 4px 16px rgba(178, 138, 83, 0.13);
    -webkit-transform: translateY(-6px) scale(1.01);
    -ms-transform: translateY(-6px) scale(1.01);
    transform: translateY(-6px) scale(1.01);
}

.what-we-do-card-header {
    background: -o-linear-gradient(315deg, #f3eace 60%, #e4c4a8 100%);
    background: linear-gradient(135deg, #f3eace 60%, #e4c4a8 100%);
    min-width: 320px;
    max-width: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    ;
    padding: 48px 32px;
    border-right: 2px solid #f6f5ed;
    text-align: center;
}

.what-we-do-icon {
    font-size: 3rem;
    background: url('./images/png/abt-flower1.png') no-repeat center center;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(178, 138, 83, 0.10);
    box-shadow: 0 2px 10px 0 rgba(178, 138, 83, 0.10);
    z-index: 99;
}

.what-we-do-card-header h3 {
    color: #a77a3a;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 0;
}

.what-we-do-card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: transparent;
}

.what-we-do-desc {
    color: #4e3725;
    font-size: 1.18rem;
    margin-bottom: 12px;
    text-align: left;
    font-weight: 500;
}

.what-we-do-list {
    text-align: left;
    margin: 0 0 18px 0;
    padding-left: 22px;
    color: #4e3725;
    font-size: 1.13rem;
    line-height: 1.7;
    list-style: disc;
}

.what-we-do-divider {
    width: 60px;
    height: 3px;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, #b28a53), to(#e4c4a8));
    background: -o-linear-gradient(left, #b28a53 30%, #e4c4a8 100%);
    background: linear-gradient(90deg, #b28a53 30%, #e4c4a8 100%);
    border-radius: 2px;
    opacity: 0.5;
}

.what-we-do-features {
    text-align: left;
    margin: 0;
    padding-left: 0;
    color: #4e3725;
    font-size: 1.13rem;
    line-height: 1.7;
    list-style: decimal;
}

.what-we-do-features li {
    margin-bottom: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    background: #f6f5ed;
    border-radius: 1rem;
    padding: 12px 16px;
    -webkit-box-shadow: 0 1px 6px 0 rgba(178, 138, 83, 0.06);
    box-shadow: 0 1px 6px 0 rgba(178, 138, 83, 0.06);
    font-size: 1.08rem;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}

.feature-icon {
    font-size: 1.3rem;
    color: #b28a53;
    margin-top: 2px;
    min-width: 24px;
    text-align: center;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 1100px) {
    .advanced-card {
        min-width: 0;
        max-width: 98vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .what-we-do-card-header {
        min-width: 0;
        max-width: 100vw;
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #f6f5ed;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 32px 16px;
        gap: 24px;
        text-align: left;
    }

    .what-we-do-card-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .what-we-do-icon {
        margin-bottom: 0;
        margin-right: 18px;
    }

    .what-we-do-card-body {
        padding: 32px 16px;
    }
}

@media (max-width: 700px) {
    .advanced-card {
        padding: 0;
        border-radius: 1rem;
    }

    .what-we-do-card-header {
        padding: 18px 8px;
        gap: 0px;
    }

    .what-we-do-card-body {
        padding: 18px 8px;
        margin: 10px;
    }

    .what-we-do-card-header h3 {
        font-size: 1.1rem;
    }

    .what-we-do-list,
    .what-we-do-features li,
    .what-we-do-desc {
        font-size: 0.97rem;
    }

    .what-we-do-divider {
        margin: 10px 0;
    }
}

/* Yarn Quality Table Styles */
.yarn-table-container {
    margin: 48px auto 0 auto;
    max-width: 1200px;
    width: 100%;
    border-radius: 1.5rem;
    padding: 32px 24px 24px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-animation: fadeInUp 1s ease;
    animation: fadeInUp 1s ease;
}

.yarn-table-title {
    font-size: 2rem;
    color: #372a1e;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.yarn-table-scroll {
    overflow-x: auto;
}

.yarn-quality-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #f6f5ed;
    border-radius: 1rem;
    overflow: hidden;
    font-size: 1.08rem;
    -webkit-box-shadow: 0 2px 8px rgba(178, 138, 83, 0.07);
    box-shadow: 0 2px 8px rgba(178, 138, 83, 0.07);
    min-width: 900px;
}

.yarn-quality-table th,
.yarn-quality-table td {
    padding: 14px 18px;
    text-align: center;
    -webkit-transition: background 0.3s, color 0.3s;
    -o-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
}

.yarn-quality-table th {
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, #f3eace), to(#e4c4a8));
    background: -o-linear-gradient(left, #f3eace 60%, #e4c4a8 100%);
    background: linear-gradient(90deg, #f3eace 60%, #e4c4a8 100%);
    color: #4e3725;
    font-weight: 700;
    font-size: 1.08rem;
    border-bottom: 2px solid #e4c4a8;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}

.yarn-quality-table tbody tr {
    background: #fff;
    -webkit-transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
    transition: -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
    -o-transition: box-shadow 0.3s, transform 0.3s;
    transition: box-shadow 0.3s, transform 0.3s;
    transition: box-shadow 0.3s, transform 0.3s, -webkit-box-shadow 0.3s, -webkit-transform 0.3s;
    cursor: pointer;
}

.yarn-quality-table tbody tr:hover {
    background: #f3eace;
    -webkit-box-shadow: 0 4px 16px rgba(178, 138, 83, 0.13);
    box-shadow: 0 4px 16px rgba(178, 138, 83, 0.13);
    -webkit-transform: scale(1.015);
    -ms-transform: scale(1.015);
    transform: scale(1.015);
}

.yarn-quality-table td {
    color: #4e3725;
    border-bottom: 1px solid #f3eace;
    font-size: 1.05rem;
}

.yarn-quality-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1000px) {
    .yarn-table-container {
        padding: 18px 4vw 18px 4vw;
        max-width: 90vw;
    }

    .yarn-quality-table {
        min-width: 600px;
        font-size: 0.98rem;
    }
}

@media (max-width: 700px) {
    .yarn-table-container {
        padding: 10px 2vw 10px 2vw;
        border-radius: 0.7rem;
    }

    .yarn-table-title {
        font-size: 1.1rem;
    }

    .yarn-quality-table th,
    .yarn-quality-table td {
        padding: 8px 6px;
        font-size: 0.93rem;
    }

    .yarn-quality-table {
        min-width: 500px;
    }
}

/* Yarn Merchant Exports Section */
.yarn-merchant-exports-section {
    max-width: 900px;
    margin: 48px auto 0 auto;
    padding: 36px 24px 28px 24px;
    border-radius: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-animation: fadeInUp 1.1s cubic-bezier(.23, 1.01, .32, 1) both;
    animation: fadeInUp 1.1s cubic-bezier(.23, 1.01, .32, 1) both;
}

.yme-title {
    font-size: 3.5rem;
    color: #372a1e;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
}

.yme-desc {
    font-size: 1.13rem;
    color: #4e3725;
    margin-bottom: 28px;
    line-height: 1.7;
    opacity: 0;
}

.yme-products-anim {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
}

.yme-products-title {
    font-size: 2rem;
    color: #b28a53;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.yme-products-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 420px;
}

.yme-products-list li {
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, #f3eace), to(#e4c4a8));
    background: -o-linear-gradient(left, #f3eace 60%, #e4c4a8 100%);
    background: linear-gradient(90deg, #f3eace 60%, #e4c4a8 100%);
    color: #4e3725;
    margin: 10px 0;
    padding: 12px 18px;
    border-radius: 1.2rem;
    font-size: 1.07rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    -webkit-box-shadow: 0 2px 8px rgba(178, 138, 83, 0.07);
    box-shadow: 0 2px 8px rgba(178, 138, 83, 0.07);
    -webkit-transition: background 0.3s, color 0.3s, -webkit-transform 0.35s cubic-bezier(.23, 1.01, .32, 1);
    transition: background 0.3s, color 0.3s, -webkit-transform 0.35s cubic-bezier(.23, 1.01, .32, 1);
    -o-transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(.23, 1.01, .32, 1);
    transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(.23, 1.01, .32, 1);
    transition: background 0.3s, color 0.3s, transform 0.35s cubic-bezier(.23, 1.01, .32, 1), -webkit-transform 0.35s cubic-bezier(.23, 1.01, .32, 1);
    cursor: pointer;
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
}

.yme-products-list li:hover {
    background: #ffe6b8;
    color: #a77a3a;
    -webkit-transform: scale(1.045) translateX(8px);
    -ms-transform: scale(1.045) translateX(8px);
    transform: scale(1.045) translateX(8px);
}

.yme-title.animate {
    -webkit-animation: ymeFadeIn 0.8s forwards;
    animation: ymeFadeIn 0.8s forwards;
}

.yme-desc.animate {
    -webkit-animation: ymeFadeIn 0.8s forwards;
    animation: ymeFadeIn 0.8s forwards;
}

.yme-products-anim.animate {
    -webkit-animation: ymeSlideUp 1s forwards;
    animation: ymeSlideUp 1s forwards;
}

.yme-products-list li.animate {
    -webkit-animation: ymeListFadeIn 0.7s forwards;
    animation: ymeListFadeIn 0.7s forwards;
}

.yme-products-list li:nth-child(1) {
    -webkit-animation-delay: 1.0s;
    animation-delay: 1.0s;
}

.yme-products-list li:nth-child(2) {
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

.yme-products-list li:nth-child(3) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.yme-products-list li:nth-child(4) {
    -webkit-animation-delay: 1.45s;
    animation-delay: 1.45s;
}

.yme-products-list li:nth-child(5) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.yme-products-list li:nth-child(6) {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s;
}

.yme-products-list li:hover {
    background: #ffe6b8;
    color: #a77a3a;
    -webkit-transform: scale(1.045) translateX(8px);
    -ms-transform: scale(1.045) translateX(8px);
    transform: scale(1.045) translateX(8px);
}

@-webkit-keyframes ymeFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes ymeFadeIn {
    to {
        opacity: 1;
    }
}

@-webkit-keyframes ymeSlideUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ymeSlideUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes ymeListFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes ymeListFadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 700px) {
    .yarn-merchant-exports-section {
        padding: 18px 2vw 16px 2vw;
        border-radius: 0.7rem;
    }

    .yme-title {
        font-size: 1.2rem;
    }

    .yme-desc {
        font-size: 0.98rem;
    }

    .yme-products-title {
        font-size: 1rem;
    }

    .yme-products-list li {
        font-size: 0.95rem;
        padding: 8px 10px;
    }
}

/* Testimonials Section */
section.testimonials-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33% 8.33%;
    grid-template-columns: repeat(12, 1fr);
    width: calc(min(90rem, 85%));
    margin: 0 auto;
    height: 80vh;
    color: #372a1e;
}

@media screen and (min-width: 61.25rem) {
    section.testimonials-section {
        -webkit-column-gap: 5rem;
        -moz-column-gap: 5rem;
        column-gap: 5rem;
    }
}

h1.testimonials-title {
    -ms-grid-column-span: 12;
    grid-column: span 12;
    text-transform: capitalize;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #372a1e;
    padding-bottom: 50px;
}

@media screen and (min-width: 61.25rem) {
    h1.testimonials-title {
        font-size: 4rem;
        margin-bottom: -50px;
    }
}

.testimonials-cards {
    /* background-color: #f8f4d4; */
    -ms-grid-column-span: 12;
    grid-column: span 12;
    display: -ms-grid;
    display: grid;
    gap: 2rem;
    border-radius: 1rem;
}

@media screen and (min-width: 61.25rem) {
    .testimonials-cards {
        -ms-grid-column-span: 5;
        grid-column: span 5;
    }
}

.testimonials-card {
    cursor: pointer;
    padding: 10px;
    border-radius: 1rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 2.188rem 1fr;
    grid-template-columns: auto 1fr;
    -webkit-column-gap: 2.188rem;
    -moz-column-gap: 2.188rem;
    column-gap: 2.188rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border: 0.094rem solid transparent;
}

.testimonials-card img {
    display: block;
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.testimonials-card>div h3 {
    text-transform: capitalize;
    font-size: 1.025rem;
}

.testimonials-card>div p {
    text-transform: capitalize;
    color: #767676;
    font-size: 0.9rem;
}

.testimonials-card.active {
    background: #f3eace;
}

.testimonials-card.active .gradient {
    background-image: -webkit-gradient(linear, left top, right top, from(#4755690a), color-stop(#9d0cb28a), color-stop(#4343c899), to(#4755690a));
    background-image: -o-linear-gradient(left, #4755690a, #9d0cb28a, #4343c899, #4755690a);
    background-image: linear-gradient(to right, #4755690a, #9d0cb28a, #4343c899, #4755690a);
    width: 50%;
    height: 0.094rem;
    position: absolute;
    content: "";
    bottom: -0.063rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-shadow: 0px 0.125rem 0.75rem #4343c84d;
    box-shadow: 0px 0.125rem 0.75rem #4343c84d;
}

.testimonials-card.active img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.testimonials-content {
    background: url('./images/png/business-svg2.png') no-repeat top;
    -ms-grid-column-span: 12;
    grid-column: span 12;
    position: relative;
    width: 100%;
    overflow: inherit;
    margin-top: 2rem;
}

@media screen and (min-width: 61.25rem) {
    .testimonials-content {
        -ms-grid-column-span: 7;
        grid-column: span 7;
        margin-top: 0;
        height: auto;
    }
}

.testimonials-contentBox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

@media screen and (min-width: 61.25rem) {
    .testimonials-contentBox {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.testimonials-contentBox .text {
    padding-bottom: 2rem;
}

@media screen and (min-width: 61.25rem) {
    .testimonials-contentBox .text {
        padding-bottom: 0;
    }
}

.testimonials-contentBox h2 {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
}

.testimonials-contentBox p {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    margin-top: 1.25rem;
}

.testimonials-contentBox span {
    display: inline-block;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    margin-top: 0.625rem;
}

.testimonials-contentBox span svg {
    width: 1.25rem;
    color: #eca633;
}

.testimonials-contentBox.active h2 {
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.testimonials-contentBox.active span {
    opacity: 1;
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.testimonials-contentBox.active p {
    opacity: 1;
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

body::-webkit-scrollbar {
    width: 0.8em;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #3f3f3f;
}

.testiminial-bottom {
    height: 20vh;
}

@media (max-width: 1068px) {
    .testiminial-bottom {
        height: 35vh;
    }
}

@media screen and (max-width: 320px) {
    .testiminial-bottom {
        height: 55vh;
    }
}

/* cta section */
.contactSection a,
.contactSection p {
    color: #333;
    text-decoration: none;
}

.contactSection h2 {
    color: #423226;
}

.contactSection h2 span.sub {
    display: inline-block;
    font-size: .5em;
    color: #FFF;
    background: #423226;
    padding: .3em 1em;
    border-radius: 5px;
    margin-bottom: 10px;
}

.contactSection__content {
    position: relative;
    background-image: url('./images/post-image3-840x560.jpg');
    background-size: cover;
    background-position: center;
    padding: min(5%, 80px) 0;
}

.contactSection__content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #c49f64;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .9;
}

.contactSection__inner {
    position: relative;
    background: #FFF;
    width: min(90%, 1100px);
    margin: 0 auto;
    border-radius: 20px;
    z-index: 1;
}

.contactSection__innerItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px;
}

.contactSection__textArea,
.contactSection__btnArea {
    position: relative;
    width: 50%;
    padding: 0 50px;
}

.contactSection__textArea::after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - 100px);
    background: #DDD;
    right: 0;
    top: 50px;
}

ul.contactSection__btnList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

ul.contactSection__btnList li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

ul.contactSection__btnList li+li {
    margin-top: 30px;
}

ul.contactSection__btnList li p.call {
    color: #423226;
    margin: 0 0 10px;
    line-height: 1;
}

ul.contactSection__btnList li p.call span {
    padding: 0 1em;
    position: relative;
    display: inline-block;
}

ul.contactSection__btnList li p.call span::before,
ul.contactSection__btnList li p.call span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1em;
    background: #423226;
    bottom: 0;
}

ul.contactSection__btnList li p.call span::before {
    left: 0;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
}

ul.contactSection__btnList li p.call span::after {
    right: 0;
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
}

@media print,
screen and (max-width: 769px) {
    .contactSection__innerItem {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .contactSection__textArea,
    .contactSection__btnArea {
        width: 100%;
        text-align: center;
    }
}

a.ctaBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 1rem 0;
}

a.ctaBtn:hover {
    opacity: .6;
}

a.ctaBtn.tel-btn span.num {
    font-size: 1.38em;
}

a.ctaBtn.mail-btn {
    color: #423226;
    background: #F3FAFB;
    width: min(100%, 200px);
    border: 2px solid;
    border-radius: 30px;
    -webkit-box-shadow: 5px 5px 0 #E2EDEF;
    box-shadow: 5px 5px 0 #E2EDEF;
}

a.ctaBtn.mail-btn span {
    position: relative;
    padding-right: 1.5em;
}

a.ctaBtn.mail-btn span::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    -ms-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
}

/* General Contact Section */
.contact-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f900;
    border-radius: 10px;
    -webkit-box-shadow: 0px 14px 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 14px 10px 10px rgba(0, 0, 0, 0.1);
}

.contact-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Buttons */
.contact-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

/* Button Styles */
.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.btn:hover {
    background: #eee;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Phone Button */
.tel-btn {
    background: #f3eace;
    border-color: #e6d4b8;
}

.tel-btn .icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.tel-btn small {
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* Mail Button */
.mail-btn {
    background: #f3fafb;
    border-color: #cde4e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
}

.mail-btn .arrow {
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-buttons {
        max-width: 100%;
    }
}

input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
}

button {
    outline: 0;
    background: teal;
    border: 0;
    padding: 15px;
    color: #ffffff;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    -o-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

/* Commitment to Excellence Section */
.commitment-excellence {
    padding: 60px 20px;
    background-color: #f6f5ed;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s ease-out forwards;
    animation: fadeInUp 1s ease-out forwards;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.commitment-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.commitment-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.commitment-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s ease-out 0.75s forwards;
    animation: fadeInUp 1s ease-out 0.75s forwards;
}

.commitment-image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s ease-out 1s forwards;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.commitment-image img {
    max-width: 100%;
    height: 50vh;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .commitment-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .commitment-text,
    .commitment-image {
        padding: 10px;
    }

    .commitment-image img {
        height: auto;
    }

    .commitment-text h2 {
        font-size: 2rem;
    }

    .commitment-text p {
        font-size: 1rem;
    }
}

/* Get in Touch Section */
.get-in-touch {
    padding: 50px 20px;
    text-align: center;
}

.contact-heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeInUp 1s ease-out 0.5s forwards;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.contact-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* .contact-container:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url("./images/service-image10.jpg") no-repeat center;
    background-size: cover;
    filter: blur(50px);
    z-index: -1;
} */

.contact-box {
    max-width: 850px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
    border-radius: 10px;
}

.contact-left {
    background: url("./images/contact_us_image.jpg") no-repeat center;
    background-size: cover;
    height: 100%;
    border-radius: 10px 0 0 10px;
}

.contact-right {
    padding: 35px 40px;
}

h2 {
    position: relative;
    padding: 0 0 10px;
    margin-bottom: 10px;
}

/* h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #3e3023;
} */

.field {
    font-style: oblique;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0);
    outline: none;
    background-color: rgba(230, 230, 230, 0.6);
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    margin-bottom: 22px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 10px;
}

.field:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

textarea {
    min-height: 100px;
}

.contact-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: #3e3023;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contact-btn:hover {
    background-color: #27ae60;
}

.field:focus {
    border: 2px solid rgba(30, 85, 250, 0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px) {
    .contact-box {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 200px;
    }
}

@media screen and (max-width: 600px) {
    .contact-container {
        padding: 0;
    }
}

/* Footer Styling */
footer {
    background: #5a3e2b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section h3 {
    color: #e4c4a8;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-section img {
    max-width: 150px;
    margin-top: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #deb896;
}

.map-container {
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
}

.social a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: #e4c4a8;
    color: #5a3e2b;
    font-size: 1.2rem;
    border-radius: 50%;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    margin: 10px;
}

.social a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    background: #fff;
    color: #5a3e2b;
}

.footer-bottom {
    background: #4a3223;
    padding: 15px;
    border-radius: 50px;
    font-size: 1rem;
}

.footer-bottom a {
    color: #e4c4a8;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a:hover {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul li {
        margin-bottom: 10px;
        margin-left: -30px;
    }

    .social {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 1px;
        margin-bottom: 20px;
    }

    .social a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .map-container {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .map-container iframe {
        height: 200px;
        width: 100%;
    }
}

/* Scroll to the top */
#scrollToTopBtn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 100;
    background-color: #292623;
    color: #ffd292;
    border: none;
    font-size: 1.7rem;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

#scrollToTopBtn:hover {
    background-color: #3e3023;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* WhatsApp Floating Button */
#whatsapp-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background-color: #25D366;
    color: white;
     border: none;
    font-size: 1.7rem;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.5px;
    line-height: 1;
}

#whatsapp-button:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

#whatsapp-button.hidden {
    opacity: 0;
    pointer-events: none;
}

a.whatsapp-link {
    text-decoration: none;
    color: white;
}