* {
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --color-primary: #A59789;
    --color-primary-light: #00917A;
    --color-dark: #716457;
    --color-light: #DBD5D0;
    --font-v1: 'Jost', sans-serif;
    --font-v2: 'Roboto Serif', serif;
}
.material-icons,
.material-icons-outlined {
  font-family: 'Material Icons Outlined' !important;
}

.material-icons-outlined,
.material-symbols-outlined {
  font-family: 'Material Icons Outlined' !important; 
}

/* Base container */


/* Small devices (≥576px) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Extra extra large devices (≥1700px) */
@media (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}
/* Section Background */
 

/* White Card Design */
.counter-card {
    background-color: #ffffff; 
    padding: 2.5rem 1rem;
    text-align: center; 
    transition: transform 0.3s ease;
    border: 1px solid ;
}

/* Hover Effect */
.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid var(--color-primary);
}

/* The Number Wrapper */
.counter-wrap {
    font-family: var(--font-v1);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-primary); /* Your Brand Color */
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Label Text */
.counter-label {
    font-family: var(--font-v1);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0;
    text-transform: capitalize;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .counter-wrap {
        font-size: 2.2rem;
    }
    .counter-label {
        font-size: 0.9rem;
    }
}
.c1 {
    color: var(--color-primary);
}

.c2 {
    color: var(--color-primary-light);
}

.b1 {
    background-color: var(--color-primary);
}

.b2 {
    background-color: var(--color-primary-light);
}

.b3 {
    background-color: var(--color-light);
}

.f1 {
    font-family: var(--font-v1);
}

.f2 {
    font-family: var(--font-v2);
}

.fw-normal {
    font-weight: 300 !important;
}

a {
    text-decoration: none;
}

.btn-tx {
	background: #fff;
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-v1);
    font-weight: 500;
    font-size: 18px;
    border: 1px solid var(--color-primary-light);
    color: var(--color-primary-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tx:hover {
    background-color: var(--color-primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.btn-tx-white {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-v1);
    font-weight: 500;
    font-size: 18px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tx-white:hover {
    background-color: var(--color-primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

header {
    border-bottom: 1px solid #e8ebef;
}
.navbar-nav .nav-link {
    font-family: var(--font-v1);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.navbar-nav .nav-item {
    padding: 0 15px;

}

.navbar-nav .nav-link:hover {
    color: var(--color-primary-light);
}

/* Mega menu container */
.mega-menu {
    left: -260% !important;
    top: 160% !important;
    width: 1100px;
    padding: 30px 20px;
    border-radius: 0;
    background: #fffefc;
    border-top: 2px solid #00917A !important;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.12); */
    border: none;
}

/* Column cards */
.mega-menu .mega-menu-list {
    background: #ffffff;
    border-radius: 0;
    padding: 25px 22px;
    /* box-shadow: 0 8px 25px rgba(0,0,0,0.06); */
}

/* Headings */
.mega-menu h5{
    font-size: 18px;
    font-weight: 600;
    color: #716457 !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00917A;
}
.mega-menu h5 a{
    color: #716457 !important;
}

/* Remove default list style */
.mega-menu ul {
    padding-left: 0;
    margin-bottom: 0;
}

.mega-menu li {
    list-style: none;
    border-bottom: 1px solid #e8ebef;
}

/* Links */
.mega-menu a.dropdown-items {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    color: #716457;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover effect */
.mega-menu a.dropdown-items:hover {
    color: #00917A;
    padding-left: 14px;
    background: rgba(0, 145, 122, 0.06);
    border-radius: 6px;
}

/* Divider removal for last item */
.mega-menu li:last-child {
    border-bottom: none;
}

/* Invisible hover buffer */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
}

.hero-bottom .border-right {
    border-right: 1px solid var(--color-primary-light);
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.section-title span {
    width: 90px;
    height: 1px;
    background-color: var(--color-primary-light);
    left: 0;
}

.product-card {
    position: relative;
    transition: all 0.8s ease;
	a{
		position: absolute;
	}
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(314deg, rgb(255 255 255 / 0%) 50%, rgb(0 0 0) 115%);
    z-index: 1;
}

.product-card h3 {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    transition: all 0.8s ease;
}

.product-card span {
    width: 0px;
    background-color: #fff;
    transition: all 0.8s ease;
}

.product-card:hover h3 {
    gap: 10px;
}

.product-card:hover span {
    width: 40px;
    height: 1px;
}

.export-section {
    overflow: hidden;
}

.export-marquee {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.export-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.country {
    font-family: var(--font-v1);
    color: var(--color-primary);
    font-size: 42px;
    padding: 0 50px;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
    box-shadow: none;
}

.custom-toggler {
    width: 37px;
    height: 26px;
    position: relative;
    display: inline-block;
}

.custom-toggler::before,
.custom-toggler::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    /* change color if needed */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-toggler::before {
    top: 4px;
}

.custom-toggler::after {
    bottom: 4px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .export-track {
        animation-duration: 18s;
    }

    .mega-menu {
        width: 300px;
        padding: 10px 10px;
    }
.inner-hero-img {
    height: 20vh;
    overflow: hidden;
}
	.hero-bottom .border-right {
    border-right: 0px solid var(--color-primary-light); 
}
    .nav-link {
		text-align: left;
        font-size: 16px !important;
        padding: 15px 0;
        border-bottom: 1px solid #e8ebef;
    }
}

footer {
    font-family: var(--font-v1);
    color: #fffbf0;
    font-size: 15px;

    /*  */
    h5 {
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .footer-link {
        padding-left: 0 !important;

        li {
            list-style: none;
        }

        a {
            text-decoration: none;
            color: #fff;
        }

    }

    .sm-icons i {
        font-size: 28px;
        color: #f6f5f4;
    }

    /*  */
}

.inner-hero {
    max-height: 350px;
    overflow: hidden;
}

.inner-hero img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.my-swiper-button {
    /* position: absolute; */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #716457;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-swiper-button:hover {
    background: #00917A;
}

/* Position */
.my-swiper-prev {
    left: 10px;
}

.my-swiper-next {
    left: 80px;
}

/* Typography */
.h-jost {
    font-family: 'Jost', sans-serif;
}

.p-serif {
    font-family: 'Roboto Serif', serif;
}

/* Image Cards */
.img-main {
    /* aspect-ratio:4/5; */
    /* background-size:cover; */
    /* background-position:center; */
    border-radius: 16px;
    transition: .6s ease;
}

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

.img-thumb {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 8px solid #f7f7f7;
    position: absolute;
    bottom: -40px;
    right: -40px;
}

/* Info Cards */
.info-card {
    background: rgba(165, 151, 137, .15);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* CTA */
.btn-quote {
    background: var(--accent);
    color: #fff;
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-quote:hover {
    background: #007a67;
    transform: scale(1.03);
}

/* Specs */
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--light);
}

/* Feature Icons */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgb(251 247 243);
    display: flex;
    align-items: center;
    color: #a59789 !important;
    justify-content: center;
}

/* Modal Card */
.modal-content {
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

/* Modal Title */
.modal-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    color: #151413;
}

/* Labels */
.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: #716457;
    margin-bottom: 6px;
}

/* Inputs */
.form-control {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .95rem;
    border: 1px solid #DBD5D0;
    background: #fafafa;
    transition: .3s ease;
}

.form-control::placeholder {
    color: #a8a29e;
}

.form-control:focus {
    border-color: #00917A;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 145, 122, .12);
}

/* Textarea */
textarea.form-control {
    resize: none;
}

/* Submit Button */
.btn-submit {
    background: #00917A;
    color: #fff;
    padding: 14px 36px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-submit:hover {
    background: #007a67;
    transform: translateY(-1px);
}

/* Close Button Soft */
.modal-header .btn-close {
    background-color: #f3f3f3;
    border-radius: 50%;
    padding: .6rem;
}

/* Small Note */
.form-note {
    font-size: .75rem;
    color: #9ca3af;
}

/* Specs Wrapper */
.spec-box {
    background: #fff;
    border-radius: 20px;
    /* padding:32px 32px; */
    /* box-shadow:0 15px 40px rgba(0,0,0,.06); */
}

/* Each Spec Row */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed #DBD5D0;
    transition: .25s ease;
}

/* Remove last border */
/* .spec-row:last-child {
    border-bottom: none;
} */

/* Label */
.spec-row span {
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #9a8f86;
    font-weight: 600;
}

/* Value */
.spec-row strong {
    font-size: .95rem;
    font-weight: 600;
    color: #151413;
}

/* Hover Effect */
.spec-row:hover {
    padding-left: 6px;
    background: linear-gradient(to right,
            rgba(165, 151, 137, .08),
            transparent);
}

/* Utilities */
.section{
  padding:6rem 0;
      background: #f7f4f1;
	overflow: hidden;
}
.bg-soft{
  background:rgba(165,151,137,.08);
}
.card-soft{
  background: #f7f4f1;
  border-radius:1.75rem;
  padding:3rem;
  height:100%;
}
.icon-box{
  width:56px;
  height:56px;
  border-radius:14px;
  background:rgba(0,145,122,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--color-primary-light);
}
.btn-brand{
  background:var(--color-primary-light);
  color:#fff;
  border-radius:.6rem;
  padding:.7rem 1.6rem;
  font-family:var(--font-v1);
  font-weight:500;
}
.btn-brand:hover{
  background:#007e68;
  color:#fff;
}
.hero-shape{
  position:absolute;
  top:0;
  right:0;
  width:35%;
  height:100%;
  background:rgba(165,151,137,.08);
  transform:skewX(-12deg) translateX(50%);
  z-index:0;
}
/* Mobile Adjustment */
@media(max-width:768px) {
    .spec-box {
        padding: 24px 20px;
    }
	.section-title span{
		width: 35px;
	}
	section {
    overflow: hidden;
}
}

/* Mobile */
@media (max-width: 576px) {
    .my-swiper-button {
        width: 36px;
        height: 36px;
    }

    .modal-body {
        padding: 1.5rem;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    color: #fff;
}
.hero-video {
    height: 100vh;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(0,0,0,0.5); /* Dark overlay */
    z-index: 2;
}


/* Section Layout */
.testimonial-section {
    padding: 80px 0;
    /* Using the light brand color for background */
    background-color: #fafafa; /* Very light fallback */ 
}

/* Typography */
.section-subtitle {
    font-family: var(--font-v1);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary); 
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-v2);
    font-size: 3rem;
    color: var(--color-dark);
    font-weight: 400;
}

/* Card Styling */
.testimonial-card {
    background: #fff;
    padding: 45px 40px;
    border: none;
    min-height: 300px;
    /* Soft shadow to lift off the background */
    box-shadow: 0 10px 30px rgba(113, 100, 87, 0.08); 
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.quote-icon {
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-family: var(--font-v1);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Author Info */
.author-info {
    margin-top: auto;
    border-top: 1px solid var(--color-light);
    padding-top: 20px;
}

.author-name {
    font-family: var(--font-v2);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-light); /* Using the teal accent for the name */
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Pagination */
.swiper {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--color-primary);
    opacity: 0.4;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .testimonial-card {
        padding: 30px;
    }
}