:root {
    --red: #8B0000;
    --gold: #C9A129;
    --dark: #222;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    background: #fff;
    color: var(--dark);
}


/* header */

.bg-redgold {
    background: linear-gradient(90deg, var(--red), #9b1a1a);
}

.navbar .nav-link {
    color: #fff;
    opacity: .9;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--gold);
    opacity: 1;
}


/* accents */

.gold {
    color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: #111;
    border: none;
    padding: .6rem 1rem;
    border-radius: 8px;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}


/* hero slides */


/* thumb list */

.thumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .5rem;
}

.thumb-list img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
}


/* animated cup */

.animated-cup {
    width: 260px;
    max-width: 60vw;
    transition: transform .25s ease;
}

.animated-cup:hover {
    transform: scale(1.06);
}


/* product card overlay */

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-card img {
    display: block;
}

.product-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(139, 0, 0, 0), rgba(0, 0, 0, .64));
    display: flex;
    opacity: 0;
    transition: opacity .25s;
}

.product-card:hover .overlay {
    opacity: 1;
}


/* plain product card */

.product-card-plain img {
    height: 240px;
    object-fit: cover;
}


/* video wrapper */

.video-wrapper {
    position: relative;
    width: min(820px, 95%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.video-wrapper video {
    width: 100%;
    display: block;
    background: #000;
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    animation: pulse 1.6s infinite;
}

.play-btn::after {
    content: '';
    position: absolute;
    left: 34px;
    top: 28px;
    border-left: 18px solid #111;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 161, 41, .6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(201, 161, 41, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 161, 41, 0);
    }
}


/* testimonials */

.testimonial-scroller {
    display: flex;
    gap: 1rem;
    overflow: auto;
    padding: .75rem;
    border-radius: 12px;
}

.t-item {
    background: #fff;
    padding: .6rem 1rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    white-space: nowrap;
}


/* footer overlay */

.site-footer {
    position: relative;
    background-size: cover;
    background-position: center;
}

.site-footer .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}


/* moving leaves background (subtle) */

.moving-leaves {
    position: relative;
    overflow: hidden;
}

.moving-leaves::before {
    content: '';
    position: absolute;
    left: -20%;
    top: -10%;
    width: 140%;
    height: 140%;
    background-image: radial-gradient(circle at 10% 10%, rgba(201, 161, 41, .04), transparent 12%), radial-gradient(circle at 90% 90%, rgba(139, 0, 0, .02), transparent 12%);
    animation: moveLeaves 20s linear infinite;
    pointer-events: none;
}

@keyframes moveLeaves {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-160px)
    }
}


/* responsive tweaks */

@media(max-width:768px) {
    .thumb-list {
        grid-template-columns: repeat(5, 1fr);
        gap: .35rem;
    }
    .hero-slide {
        height: 44vh;
    }
}


/* header section */


/* Background with Red & Golden Theme */

.bg-redgold {
    background: linear-gradient(90deg, #b30000, #c00013);
}


/* Logo Styling */

.logo-img {
    margin: -50px 0;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}


/* Move logo slightly to the right */

.logo-container {
    margin-left: 15px;
    /* Adjust as needed */
}


/* Add spacing between navigation links */

.navbar-nav .nav-item {
    margin-left: 5px;
    /* Adjust space between items */
}


/* Optional: Ensure consistent padding inside links */

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}


/* Navigation Links */

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-left: 20px;
    transition: all 0.3s ease;
    position: relative;
}


/* Hover Effect: Golden Underline */

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ffd700;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}


/* Hover Color */

.navbar-nav .nav-link:hover {
    color: #ffd700;
}


/* Active Link Styling */

.navbar-nav .nav-link.active {
    color: #ffd700;
    font-weight: bold;
}


/* Mobile Menu Icon */

.navbar-toggler {
    border: none;
}


/* Top Nave Bar */


/* .bg-redgold {
    background: linear-gradient(90deg, #b30000, #d4af37);
  } */

.top-bar {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.tea-cup-animation svg {
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    margin-left: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #ffd700;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #ffd700;
}

.navbar-nav .nav-link.active {
    color: #ffd700;
    font-weight: bold;
}

.logo-img {
    margin: -50px 0;
    position: relative;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}


/* */

.tea-section {
    background: #faf8f5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}


/* Image Grid */

.thumb-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.thumb-list li {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.thumb-list img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}


/* Hover Effect */

.thumb-list li:hover img {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1);
}


/* Heading and text */

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #4a4a4a;
}

.desc {
    color: #6b6b6b;
    font-size: 1.1rem;
    margin-top: 10px;
}


/* SVG Icon styling */

.tea-svg {
    stroke: #b0893d;
    transition: transform 0.4s ease;
}

.tea-svg:hover {
    transform: rotate(10deg) scale(1.1);
}


/* About Section */

.trust-text {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 500;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.highlight-list i {
    color: #C9A129;
    margin-right: 10px;
    font-size: 1.2rem;
}


/* */

.heading-gradient {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


/* Product page */

.heading-gradient {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card-premium {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card-premium img {
    display: block;
    transition: transform 0.5s ease;
}

.product-card-premium:hover img {
    transform: scale(1.08);
}


/* Overlay */

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.product-overlay h5 {
    font-size: 1.3rem;
}


/* Button Style */

.btn-gold {
    background: #C9A129;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #b0893d;
    transform: scale(1.05);
}


/* Hero Section */

.product-hero {
    background: url('assets/img/tea-estate-bg.jpg') center/cover no-repeat;
    height: 60vh;
    position: relative;
}

.product-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.product-hero .content {
    position: relative;
    z-index: 2;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.product-hero p {
    font-size: 1.2rem;
    color: #f8f8f8;
}


/* Gradient Heading */

.heading-gradient {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Product Cards */

.product-card-premium {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card-premium img {
    display: block;
    transition: transform 0.5s ease;
}

.product-card-premium:hover img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-premium:hover .product-overlay {
    opacity: 1;
}

.product-overlay h5 {
    font-size: 1.3rem;
}


/* Button */

.btn-gold {
    background: #C9A129;
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #b0893d;
    transform: scale(1.05);
}


/* Testimonial Scroller */

.testimonial-scroller {
    max-height: 150px;
    overflow: hidden;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.t-item {
    padding: 8px 0;
    font-style: italic;
}


/* Premium Card */

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* Gold Button */

.btn-gold {
    background: #C9A129;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b0893d;
    transform: scale(1.03);
}

.heading-gradient {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    background: #C9A129;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b0893d;
    transform: scale(1.03);
}

.w-48 {
    width: 48%;
}

.process-step {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.process-step .emoji {
    display: inline-block;
}

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.heading-gradient {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fs-5 li {
    margin-bottom: 0.75rem;
}

img.rounded-4 {
    border-radius: 16px;
}

img.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

img.shadow-lg:hover {
    transform: scale(1.03);
}

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Premium Process Step Card */

.process-step-premium {
    background: linear-gradient(145deg, #fff8f0, #fff1e0);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 2rem 1.5rem;
}

.process-step-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.process-step-premium .emoji {
    font-size: 3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.process-step-premium:hover .emoji {
    transform: scale(1.2) rotate(10deg);
}

.process-step-premium h5 {
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.process-step-premium p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
}

.product-details {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    background: #fff8f0;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.product-details:hover {
    transform: translateY(-5px);
}


/* Why choose us */

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul.fs-5 li {
    margin-bottom: 1rem;
}

img.rounded-4 {
    border-radius: 16px;
}

img.shadow-lg {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

img.shadow-lg:hover {
    transform: scale(1.03);
}

.btn-gold {
    background: #C9A129;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b0893d;
    transform: scale(1.03);
}

.products-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    /* golden for contrast on dark bg */
}

.product-details {
    font-size: 1.05rem;
    color: #fff;
    /* white text on background */
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent overlay */
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-details:hover {
    transform: translateY(-5px);
}

.products-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity as needed */
    z-index: 1;
}

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 2;
    position: relative;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
}

.product-details {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.5);
    /* optional card overlay */
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-details:hover {
    transform: translateY(-5px);
}


/* footer */

.site-footer {
    color: #fff;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.site-footer .footer-heading {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.site-footer .footer-heading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #FFD700;
    margin-top: 4px;
    border-radius: 2px;
}

.site-footer .footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.site-footer .footer-link:hover {
    color: #FFD700;
}

.btn-gold {
    background: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 20px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #c9a129;
    color: #fff;
}

.site-footer p {
    margin: 0.5rem 0 0;
}


/*Testimonial Section */

.heading-gradient {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #d32f2f, #c9a129);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1rem;
    animation: scrollTestimonials 20s linear infinite;
}

.testimonial-item {
    min-width: 280px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: scale(1.05);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    /* Adjust if duplicating items for infinite scroll */
}

.navbar-nav .nav-link.active {
    color: gold !important;
    font-weight: 600;
    /* Optional: make it bold */
}


/* Navbar active link styling */

.navbar-nav .nav-link.active {
    color: gold !important;
    font-weight: 600;
}