* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
    height: 50px;
    background: #000;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-size: 13px;
}

.top-left span {
    margin-right: 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.top-left i {
    margin-right: 6px;
    color: #ffd6a5;
}

/* Right side image icons */
.top-right a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.top-right img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    transition: 0.3s;
}

.top-right img:hover {
    transform: scale(1.1);
}
/* ================= TOP RIGHT SOCIAL CIRCLES ================= */
.top-right {
    display: flex;
    align-items: center;
}

.social-circle {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.3s;
}

.social-circle img {
    width: 22px;
    height: 22px;
    object-fit: cover;
}

/* Hover effect */
.social-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


/* ================= MAIN HEADER ================= */
.main-header {
    height: 100px;
    background: #8b2c2c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
}

/* Floating Logo */
.logo-box img {
    width: 90px;
    animation: floatLogo 3.5s ease-in-out infinite;
}

  /* @keyframes floatLogo {  
    0% {
        transform: translate(0px, 0px);
    }
    50% {
        transform: translate(8px, -8px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}   */

/* Navigation */
.nav-menu a {
    color: #000;
    text-decoration: none;
    margin-left: 35px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;                 /* more box feel */
    position: relative;
    transition: 0.3s;
    z-index: 1;
}

/* BOX BEHIND EVERY ITEM */
.nav-menu a::after {
    content: "";
    position: absolute;
    inset: 0;                           /* full box */
    background:#f5e6dc;
    border-radius: 6px;
    z-index: -1;
    transition: 0.3s;
}

/* HOVER EFFECT */
.nav-menu a:hover {
    color: #6b1e1e;                     /* maroon text */
}

.nav-menu a:hover::after {
    background: #ffd6a5;               /* solid box on hover */
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.enquiry-btn {
    padding: 10px 18px;
    background: #ffd6a5;
    color: #6b1e1e;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.enquiry-btn:hover {
    background: #ffffff;
    color: #6b1e1e;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}


/* ================= MARQUEE ================= */
.marquee-container {
    width: 100%;
    background: #f5e6dc;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}

.marquee {
    display: flex;
    animation: marquee 12s linear infinite;
}

.marquee span {
    font-size: 17px;
    font-weight: 800;
    color: #6b1e1e;
    margin-right: 80px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ================= SLIDER ================= */
.slider {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
  background: #000;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slides img {
    width: 100vw;          
    height: 420px;
    object-fit: cover;     
    flex-shrink: 0;        
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #ffffff;
    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

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

    /* ---------- TOP HEADER ---------- */
    .top-header {
        height: auto;
        padding: 10px 15px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-left {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .top-left span {
        margin-right: 0;
        font-size: 12px;
    }

    .top-right {
        justify-content: center;
    }

    .social-circle {
        width: 26px;
        height: 26px;
        margin-left: 8px;
    }

    .social-circle img {
        width: 13px;
        height: 13px;
    }

    /* ---------- MAIN HEADER ---------- */
    .main-header {
        height: auto;
        padding: 15px 15px;
        flex-direction: column;
        gap: 12px;
    }

    .logo-box {
        order: 1;
    }

    .logo-box img {
        width: 70px;
    }

    .nav-menu {
        order: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 8px;
    }

    .nav-menu a {
        margin-left: 0;
        margin-right: 10px;
        font-size: 14px;
        padding: 6px 10px;
    }

    /* ---------- MARQUEE ---------- */
    .marquee-container {
        height: 38px;
    }

    .marquee span {
        font-size: 14px;
        margin-right: 50px;
        letter-spacing: 1px;
    }

    /* ---------- SLIDER ---------- */
    .slider {
        height: 260px;
    }

    .slides img {
        height: 260px;
    }

    .arrow {
        font-size: 28px;
        padding: 4px 10px;
    }

    .left {
        left: 10px;
    }

    .right {
        right: 10px;
    }
}

/* ================= PREMIUM OILS ================= */
.premium-oils {
    padding: 80px 60px;
    background: #f8efe8;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 50px;
}

/* Cards Layout */
.oil-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Card */
.oil-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    transition: 0.4s;
    position: relative;
}

/* Image */
.oil-img {
    height: 340px;
    overflow: hidden;
}


.oil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
/* Content */
.oil-content {
    padding: 22px 20px 28px;
    text-align: left;
}

.oil-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.oil-content p {
    font-size: 14px;
    line-height: 22px;
    color: #555555;
}

/* Hover Effects */
.oil-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.oil-card:hover img {
    transform: scale(1.1);
}

/* Glow */
.oil-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 rgba(255,214,165,0.6);
    transition: 0.4s;
}

.oil-card:hover::after {
    box-shadow: 0 0 25px rgba(255,214,165,0.8);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE VERSION ================= */
@media (max-width: 768px) {
    .premium-oils {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .oil-cards {
        flex-direction: column;
        align-items: center;
    }

    .oil-card {
        width: 100%;
        max-width: 360px;
    }

    .oil-img {
        height: 200px;
    }
}

/* ================= BEST DISHES ================= */
.best-dishes {
    padding: 90px 60px;
    background: #fffaf4;
}

.section-heading {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 70px;
    text-align: center;
}

/* Layout */
.dish-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

.dish-row.reverse {
    flex-direction: row-reverse;
}

/* Image Box */
.dish-image {
    width: 50%;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* Blue overlay animation (3 sec) */
.dish-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(30, 136, 229, 0.45);
    z-index: 2;
    animation: blueFade 3s ease forwards;
}

@keyframes blueFade {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Circular graphic glow */
.circle-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,214,165,0.5), transparent 70%);
    top: -40px;
    right: -40px;
    opacity: 0;
    transition: 0.6s;
}

/* Hover effects */
.dish-image:hover img {
    transform: scale(1.08);
}

.dish-image:hover .circle-glow {
    opacity: 1;
}

/* Content */
.dish-content {
    width: 50%;
}

.dish-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 16px;
}

.dish-content p {
    font-size: 15px;
    line-height: 26px;
    color: #444444;
    margin-bottom: 18px;
}

.oil-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #ffd6a5;
    color: #6b1e1e;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .best-dishes {
        padding: 60px 20px;
    }

    .section-heading {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .dish-row,
    .dish-row.reverse {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    .dish-image,
    .dish-content {
        width: 100%;
    }

    .dish-image {
        height: 220px;
    }

    .dish-content h3 {
        font-size: 22px;
    }

    .dish-content p {
        font-size: 14px;
    }
}


/* ================= GALLERY SECTION ================= */
.gallery-section {
    padding: 80px 60px;
    background: #fff1dc;
    text-align: center;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #6b1e1e;
    margin-bottom: 50px;
}

/* Slider */
.gallery-slider {
    width: 820px;
    height: 360px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    position: relative;
}

.gallery-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.gallery-slides img {
    width: 820px;
    height: 360px;
    object-fit: cover;
    flex-shrink: 0;
    transition: 0.4s;
}

/* Hover Glow */
.gallery-slider:hover {
    box-shadow: 0 0 30px rgba(255,214,165,0.8);
}

/* Dots */
.gallery-dots {
    margin-top: 28px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #c9b6a5;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #6b1e1e;
    transform: scale(1.2);
}

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

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-title {
        font-size: 26px;
    }

    .gallery-slider {
        width: 100%;
        height: 220px;
        border-radius: 16px;
    }

    .gallery-slides img {
        width: 100%;
        height: 220px;
    }
}

/* ================= QUALITY STRIP ================= */
.quality-strip {
    width: 100%;
    height: 90px;
    background: #8b2c2c;      /* same as header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quality-strip h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;           /* white text */
    letter-spacing: 2px;
}

.quality-strip span {
    margin: 0 14px;
    color: #ffffff;
    font-weight: 700;
}

/* ================= MOBILE VERSION ================= */
@media (max-width: 768px) {
    .quality-strip {
        height: 70px;
        padding: 0 10px;
    }

    .quality-strip h2 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .quality-strip span {
        margin: 0 10px;
    }
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
    padding: 90px 60px;
    background: #fff7ee;
    text-align: center;
}

.why-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.why-subtitle {
    font-size: 15px;
    color: #6b1e1e;
    margin-bottom: 60px;
}

/* Cards Layout */
.why-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Card with BG Image */
.why-card-bg {
    width: 260px;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
    transition: 0.5s;
}

/* Dark Overlay */
.why-card-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(107, 30, 30, 0.55);
    transition: 0.5s;
}

/* Text Center */
.why-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1px;
    padding: 0 12px;
}

/* Hover Effects */
.why-card-bg:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 55px rgba(0,0,0,0.45);
}

.why-card-bg:hover::before {
    background: rgba(107, 30, 30, 0.35);
}

/* Glow Ring */
.why-card-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 rgba(255,214,165,0.7);
    transition: 0.4s;
}

.why-card-bg:hover::after {
    box-shadow: 0 0 30px rgba(255,214,165,0.9);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .why-title {
        font-size: 26px;
    }

    .why-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .why-card-bg {
        width: 100%;
        max-width: 340px;
        height: 220px;
    }

    .why-overlay h3 {
        font-size: 18px;
    }
}


/* ================= HEALTH BENEFITS ================= */
.health-benefits {
    padding: 90px 60px;
    background: #fff1dc;
    text-align: center;
}

.health-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.health-subtitle {
    font-size: 15px;
    color: #6b1e1e;
    margin-bottom: 60px;
}

/* Layout */
.health-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Card */
.health-card {
    width: 260px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 24px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Icon */
.health-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.health-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* Text */
.health-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 12px;
}

.health-card p {
    font-size: 14px;
    line-height: 22px;
    color: #555555;
}

/* Hover Effects */
.health-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.35);
}

.health-card:hover .health-icon {
    background: #8b2c2c;
}

.health-card:hover .health-icon img {
    filter: brightness(0) invert(1);
}

/* Soft Glow */
.health-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 rgba(255,214,165,0.8);
    transition: 0.4s;
}

.health-card:hover::after {
    box-shadow: 0 0 30px rgba(255,214,165,0.9);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .health-benefits {
        padding: 60px 20px;
    }

    .health-title {
        font-size: 26px;
    }

    .health-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .health-cards {
        flex-direction: column;
        align-items: center;
    }

    .health-card {
        width: 100%;
        max-width: 340px;
    }
}

/* ================= COMMITMENT SECTION ================= */
.commitment-section {
    padding: 90px 60px;
    background: #ffffff;
    text-align: center;
}

.commitment-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 25px;
}

/* Subheading strip */
.commitment-subtitle {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 22px 30px;
    font-size: 15px;
    line-height: 26px;
    color: #6b1e1e;
    background: #fff1dc;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: 0.4s;
}

/* Hover effect on subtitle */
.commitment-subtitle:hover {
    background: #8b2c2c;
    color: #ffffff;
    border-color: #ffd6a5;
    box-shadow: 0 0 25px rgba(255,214,165,0.8);
}

/* Cards layout */
.commitment-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

/* Bullet cards */
.commitment-card {
    width: 300px;
    padding: 22px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #6b1e1e;
    background: #fff7ee;
    border-radius: 12px;
    border-left: 5px solid #8b2c2c;
    text-align: left;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hover effects */
.commitment-card:hover {
    background: #8b2c2c;
    color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .commitment-section {
        padding: 60px 20px;
    }

    .commitment-title {
        font-size: 26px;
    }

    .commitment-subtitle {
        font-size: 14px;
        padding: 18px 20px;
        margin-bottom: 40px;
    }

    .commitment-card {
        width: 100%;
        max-width: 340px;
        font-size: 14px;
    }
}


/* ================= TESTIMONIAL SLIDER ================= */
.testimonial-section {
    padding: 90px 60px;
    background: #fff1dc;
}

.testimonial-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 8px;
}

.testimonial-subtitle {
    text-align: center;
    font-size: 15px;
    color: #6b1e1e;
    margin-bottom: 60px;
}

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease-in-out;
}

/* CARD */
.testimonial-card {
    min-width: 240px;
    max-width: 240px;
    background: #ffffff;
    padding: 28px 20px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.testimonial-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 12px;
    color: #888888;
    display: block;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 22px;
    color: #444444;
    margin-bottom: 16px;
}

.stars {
    font-size: 14px;
    color: #f4b400;
}

/* ARROWS */
.testimonial-arrows {
    position: absolute;
    top: -70px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-arrows button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #8b2c2c;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-arrows button:hover {
    background: #6b1e1e;
    box-shadow: 0 0 18px rgba(255,214,165,0.9);
}

/* ================= MOBILE VERSION ================= */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-track {
        gap: 15px;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }

    .testimonial-arrows {
        top: auto;
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
    }
}


/* ================= LEADERSHIP TEAM ================= */
.leadership-section {
    padding: 90px 60px;
    background: #fff7ee;
    text-align: center;
}

.leadership-title {
    font-size: 34px;
    font-weight: 700;
    color: #6b1e1e;
    margin-bottom: 10px;
}

.leadership-subtitle {
    font-size: 15px;
    color: #6b1e1e;
    margin-bottom: 60px;
}

/* Layout */
.leadership-cards {
    display: flex;
    justify-content: center;
    gap: 35px;
}

/* Card */
.leader-card {
    width: 320px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
    transition: 0.4s;
    position: relative;
}

/* Image */
.leader-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; 
    transition: 0.5s;
}

/* Info section */
.leader-info {
    background: #8b2c2c; /* brand maroon */
    padding: 22px 18px 26px;
    text-align: left;
}

.leader-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.leader-info span {
    display: block;
    font-size: 13px;
    color: #ffd6a5;
    margin-bottom: 12px;
}

.leader-info p {
    font-size: 14px;
    line-height: 22px;
    color: #f5e6dc;
}

/* Hover Effects */
.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.45);
}

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

/* Glow Border */
.leader-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 rgba(255,214,165,0.8);
    transition: 0.4s;
}

.leader-card:hover::after {
    box-shadow: 0 0 30px rgba(255,214,165,0.95);
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

    .leadership-section {
        padding: 60px 20px;
    }

    .leadership-title {
        font-size: 26px;
    }

    .leadership-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .leadership-cards {
        flex-direction: column;
        align-items: center;
    }

    .leader-card {
        width: 100%;
        max-width: 360px;
    }

    .leader-img {
        height: 260px;
    }
}


/* ================= FOOTER ================= */
.site-footer {
    background: #8b2c2c; /* same maroon */
    color: #ffffff;
}

/* MAIN */
.footer-main {
    padding: 70px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* LOGO */
.footer-logo {
    width: 140px;
    margin-bottom: 18px;
}

/* BRAND TEXT */
.footer-brand p {
    font-size: 14px;
    line-height: 24px;
    color: #f5e6dc;
    margin-bottom: 20px;
}

/* TRUST BADGES TEXT */
.footer-trust span {
    display: block;
    font-size: 13px;
    color: #ffd6a5;
    margin-bottom: 6px;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffd6a5;
    margin-bottom: 18px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffd6a5;
    padding-left: 6px;
}

/* CONTACT */
.footer-col p {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
    padding: 22px 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 6px 0;
    font-size: 13px;
    color: #f5e6dc;
}

.footer-bottom span {
    background: #ffd6a5;
    color: #8b2c2c;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

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

    .footer-main {
        padding: 50px 20px;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-trust span {
        display: inline-block;
        margin: 0 6px 6px;
    }
}
/* ================= FOOTER SOCIAL ICONS ================= */
.footer-socials {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Hover effect */
.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 14px rgba(255,214,165,0.9);
}

/* Mobile center alignment */
@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }
}

