:root {
    --deep: #012923;
    --olive: #849b6f;
    --gold: #fef7d9;
    --tan: #b28656;
    --ink: #0c0c0c;
    --green: #28a745;
    /* new green color */
}

:root {
    --c-bg: #ffffff;
    --c-text: #0c0c0c;
    --c-muted: #6b7280;
    --c-gold: #facc15;
    --c-green: #16a34a;
    --c-green-600: #128a3e;
    --c-surface: #f7f7f7;
    --c-card: #ffffff;
    --c-ring: #d1fae5;
    --c-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    --c-radius: 16px;
    --c-radius-sm: 12px;
    --c-gap: 28px;
    --c-container: 1200px;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}


.navbar {
    background: linear-gradient(135deg, #0c0c0c, #28a745);
    transition: .3s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    padding: .75rem .5rem;
    transition: color .25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    height: 2px;
    width: 0;
    background-color: var(--gold);
    transition: width .3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        padding: .65rem 0;
        margin: 0;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        transform: none;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }
}



/* 2 */

.carousel-item {
    /* min-height: 400px; */
    color: white;
    position: relative;
}

.slide1 {
    background: linear-gradient(135deg, #0c0c0c, #28a745);
}

.slide2 {
    background: linear-gradient(135deg, #0c0c0c, #28a745);
}

.slide3 {
    background: linear-gradient(135deg, #0c0c0c, #28a745);
}

.slider-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.slider-content {
    flex: 1 1 50%;
    padding: 1rem 2rem;
}

.slider-content h2 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1rem;
}

.slider-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.slider-content .btn-set {
    background: var(--green);
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

.slider-content .btn-set:hover {
    background: var(--gold);
    color: var(--ink);
}

.slider-image {
    flex: 1 1 50%;
    text-align: center;
    padding: 1rem 2rem;
}

.slider-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--green);
    width: 14px;
    height: 14px;
}

/* Fade in animation for content */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-content {
    animation: fadeIn 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .slider-row {
        flex-direction: column;
        text-align: center;
    }

    .slider-content h2 {
        font-size: 2rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .slider-row {
        flex-direction: column;
        text-align: center;
    }

    .slider-content {
        order: 2;
        /* Text below */
    }

    .slider-image {
        order: 1;
        /* Image above */
    }

    .slider-content h2 {
        font-size: 2rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-image img {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* --- Custom Color Definitions for Clean Theme --- */
.vann-bg-light {
    background-color: #f8f9fa; /* Very light gray section background */
}
.vann-bg-white {
    background-color: #ffffff; /* Pure white card background */
}
.vann-text-dark {
    color: #343a40; /* Dark text for readability */
}
.vann-text-primary {
    color: #28a745; /* Deep primary color (e.g., a dark blue or green) */
}
.vann-border-primary {
    border-color: #28a745 !important; /* Primary border color */
}
.vann-badge-primary {
    background-color: #28a745; /* Primary badge background */
    color: #ffffff; /* White text on badge */
}

/* -------------------------------------- */
/* --- VANN SHAKTI TIMELINE CSS --- */
/* -------------------------------------- */

.vann-timeline {
    position: relative;
    padding: 0 0 0 40px; 
}

/* Vertical Line Connector (Desktop only) */
@media (min-width: 768px) {
    .vann-timeline {
        padding: 0;
    }
    .vann-timeline::after {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #dee2e6; /* Light grey line */
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        z-index: 0;
    }
}

/* Timeline Item Styling */
.timeline-item {
    padding: 20px 0; /* Increased padding for better spacing */
    position: relative;
    min-height: 100px; 
}

.timeline-content {
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Subtle hover effect */
}

.timeline-content:hover {
    transform: translateY(-5px); /* Lift card slightly on hover */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Step Badge (The circle marker) */
.step-badge-circle {
    position: absolute;
    top: 50%;
    left: -45px; 
    transform: translateY(-50%);
    width: 35px; /* Slightly larger badge */
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    z-index: 20;
    box-shadow: 0 0 0 4px #f8f9fa; /* Creates a ring effect with the background color */
}

/* Desktop Layout (Staggered Left/Right) */
@media (min-width: 768px) {
    .timeline-item {
        width: 50%;
    }
    .timeline-item.left {
        left: 0;
        padding-right: 60px; /* More space from center line */
    }
    .timeline-item.right {
        left: 50%;
        padding-left: 60px; /* More space from center line */
    }

    /* Reposition badge for desktop */
    .timeline-item.left .step-badge-circle {
        left: auto;
        right: -17.5px; /* Positioned on the center line */
    }
    .timeline-item.right .step-badge-circle {
        left: -17.5px; /* Positioned on the center line */
    }
}


/* About Section  3*/
.about-section {
    background-color: #fef7d9;
    padding: 70px 0;
}

.about-section h6 {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 10px;
}

.about-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}




:root {
  --vann-green: #0f5132;
  --vann-gold: #bfa85a;
  --vann-light: #f9f9f6;
  --vann-text: #444;
}

/* Wrapper Section */
.vann-mv-wrapper {
  background: linear-gradient(135deg, #f8fdf7, #ffffff);
  position: relative;
  overflow: hidden;
}

.vann-mv-title {
  color: var(--vann-green);
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.vann-mv-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--vann-gold);
  border-radius: 10px;
}

.vann-mv-subtitle {
  color: var(--vann-text);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* Cards */
.vann-mv-card {
  background: var(--vann-light);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
}

.vann-mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vann-mv-alt {
  background: linear-gradient(135deg, #fffef7, #f2f9f0);
}

.vann-mv-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.vann-mv-icon {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vann-gold), var(--vann-green));
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.3rem;
}

.vann-mv-card h3 {
  color: var(--vann-green);
  font-weight: 600;
  margin: 0;
}

.vann-mv-card p {
  color: var(--vann-text);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .vann-mv-title {
    font-size: 1.7rem;
  }
  .vann-mv-card {
    padding: 1.5rem;
  }
  .vann-mv-header {
    flex-direction: row;
    justify-content: center;
  }
  .vann-mv-icon {
    margin-right: 8px;
  }
  .vann-mv-card h3 {
    text-align: center;
  }
}
/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-box {
    text-align: center;
    width: 160px;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: rotateY(15deg) rotateX(5deg) scale(1.05);
}

.feature-icon {
    background: var(--green);
    color: #fff;
    font-size: 32px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: 0 auto 15px;
    border: 4px solid var(--gold);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.feature-box:hover .feature-icon {
    transform: rotateY(360deg) rotateX(15deg) scale(1.2);
    border-color: var(--tan);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.35);
    background: var(--olive);
}

.feature-box p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--deep);
    font-weight: 500;
}

/* Button */
.btn-main {
    background: var(--green);
    color: #fff;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-main:hover {
    background: var(--olive);
    transform: translateY(-3px);
}

/* Image Stack */
.image-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.image-back {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.image-front {
    position: absolute;
    width: 60%;
    top: 85%;
    left: 75%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.image-stack:hover .image-back {
    transform: scale(1.05);
}

.image-stack:hover .image-front {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        text-align: center;
        padding: 50px 20px;
    }

    .image-front {
        width: 55%;
        top: 70%;
        left: 65%;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .features {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .image-front {
        width: 80%;
        top: 70%;
        left: 60%;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .features {
        gap: 20px;
    }
}












/* Social Section */
.social-section {
    background: linear-gradient(135deg, #0c0c0c, #28a745);

    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.social-section::before,
.social-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.social-section::before {
    width: 150px;
    height: 150px;
    background: var(--green);
    top: -40px;
    right: -40px;
}

.social-section::after {
    width: 200px;
    height: 200px;
    background: var(--gold);
    bottom: -60px;
    left: -60px;
}

/* Header */
.insta-logo {
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.4));
}

.follow-btn {
    background: var(--green);
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.5);
    transition: 0.3s;
    text-decoration: none;
    letter-spacing: 1px;
}

.follow-btn:hover {
    background: #fff;
    color: var(--green);
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.7);
}
/* Media Boxes */
.media-box img,
.media-box video {
  transition: transform 0.4s ease;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 300px;
}

/* Specific height controls */
.media-box img {
  max-height: 200px;
}

.media-box video {
  max-height: 500px;
}

/* Hover effect */
.media-box img:hover,
.media-box video:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .media-box img,
  .media-box video {
    height: auto;
    max-height: none;
  }
}

/* Article Box */
.article-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-left: 6px solid var(--green);
    border-radius: 18px;
    color: var(--ink);
    line-height: 1.7;
    transition: 0.3s;
}

.article-box:hover {
    transform: translateY(-5px);
}

.article-box h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--green), var(--olive), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-box p {
    font-size: 1rem;
    margin-bottom: 12px;
}

.article-box ul {
    padding-left: 18px;
}

.article-box ul li {
    margin-bottom: 6px;
}

/* Responsive */
@media(max-width: 991px) {
    .social-section {
        padding: 60px 15px;
    }

    .media-box img {
        max-height: 200px;
    }

    .media-box video {
        max-height: 400px;
    }
}

@media(max-width: 576px) {
    .article-box h3 {
        font-size: 1.5rem;
    }

    .media-box video {
        max-height: 300px;
    }
}









.ingredients-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0c0c, #28a745);
    /* border-radius: 20px; */
}

.ingredients-section h1 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ingredients-section p {
    color: #fef7d9;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.buy-btn {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
    text-decoration: none;
    margin-top: 10px;
}

.buy-btn:hover {
    background: #fff;
    color: var(--green);
    border: 2px solid var(--green);
}


















/* Ultra-compact section */
.impact-section.minimal {
    padding: 12px 0;
    /* very small vertical padding */
    background: linear-gradient(135deg, #0c0c0c, #28a745);
}

/* Image card: tiny radius + soft shadow */
.media-card {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(1, 41, 35, 0.04);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.media-card img {
    width: 100%;
    height: auto;
    /* height auto as requested */
    display: block;
}

/* Right side: minimal gaps */
.right-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    /* reduced */
    padding-inline: 6px;
    /* very low padding */
}

/* Compact headings with clamp */
.impact-section h2 {
    margin: 0 0 4px 0;
    font-weight: 700;
    color: #fef7d9;
    line-height: 1.25;
    font-size: clamp(1.1rem, 0.9vw + 0.9rem, 1.6rem);
}

/* Impact box with hairline divider */
.impact-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0;
}

.impact-box::before {
    content: "";
    width: 40px;
    height: 2px;
    background: rgba(40, 167, 69, 0.7);
    border-radius: 2px;
    margin-bottom: 6px;
}

.impact-box p {
    margin: 0;
    color: #fef7d9;
    font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1rem);
    line-height: 1.45;
}

/* Optional buttons (if any) */
.btn-set {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-set:hover {
    background: var(--tan);
    color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(178, 134, 86, 0.26);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .impact-section.minimal {
        padding: 10px 0;
    }

    .right-side {
        gap: 8px;
        padding-inline: 4px;
    }

    .row {
        flex-direction: column;
    }

    .impact-section h2,
    .impact-box {
        text-align: center;
    }

    .impact-box::before {
        margin: 0 auto 6px;
    }
}

@media (max-width: 575px) {
    .impact-section.minimal {
        padding: 8px 0;
    }

    .right-side {
        gap: 6px;
    }
}


  :root {
      --primary-color: #054e3d;
      /* Deep Forest Green for Brand */
      --accent-color: #feb2b2;
      /* Light Peach/Red for Accent */
      --success-color: #10b981;
      --bg-light: #f5f5f5;
      /* Light Gray Background */
      --card-bg: #ffffff;
    }

 

  

    .ayur-btn-primary {
      background: linear-gradient(90deg, var(--c-green), var(--c-green-600));
      color: #fff !important;
      border: none;
      box-shadow: var(--c-shadow);
      border-radius: 10px;
      padding: 0.55rem 0.9rem;
    }
    .ayur-btn-primary:active { transform: translateY(1px) }
    .btn-outline-secondary { border-radius: 10px; }

    .ayur-cart-badge {
      display: inline-block;
      background: var(--c-gold);
      color: #000;
      padding: 0.18rem 0.5rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.85rem;
      margin-left: 8px;
    }

    .ayur-product-card {
      background: var(--c-card);
      border-radius: 12px;
      box-shadow: var(--c-shadow);
      display: flex;
      flex-direction: column;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .ayur-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
    .ayur-product-img { width: 100%; height: 220px; object-fit: contain; padding: 16px; }

    .ayur-text-price { color: var(--c-green-600); font-weight: 700; }
    .ayur-modal-header { background: var(--c-green-600); color: #fff; }

    .list-group-item { border: none; border-radius: 10px; margin-bottom: 10px; background: linear-gradient(180deg, #fff, #fafafa); }
    .btn-group .btn-sm:disabled { opacity: 1; color: var(--c-text); background-color: #f8f9fa; }

    .muted { color: var(--c-muted); }



/* footer  */
.vann-footer {
    background: var(--deep);
    color: var(--gold);
    font-family: "Poppins", sans-serif;
}

.vann-footer h6 {
    color: var(--tan);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.vann-footer h6::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: var(--green);
    margin-top: 4px;
    border-radius: 5px;
}

.vann-footer .newsletter h4 {
    color: var(--gold);
}

.vann-footer .newsletter p {
    color: var(--olive);
}

.vann-footer .form-control {
    border: 2px solid var(--olive);
    background: transparent;
    color: var(--gold);
}

.vann-footer .form-control::placeholder {
    color: var(--olive);
}

.vann-footer .btn-subscribe {
    background: var(--green);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.vann-footer .btn-subscribe:hover {
    background: var(--tan);
    color: var(--ink);
}

.footer-links a {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--olive);
    transition: 0.3s;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
}

.vann-footer hr {
    border-color: var(--olive);
    opacity: 0.4;
}

.vann-footer .copyright {
    color: var(--olive);
}

/* Glassmorphism cards for accordion */
.glass {
    background: rgba(255, 255, 255, .6);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .5);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 12px;
}

.accordion-button {
    padding: 14px 16px;
    font-weight: 700;
    color: var(--deep);
    background: linear-gradient(90deg, rgba(40, 167, 69, .08), rgba(132, 155, 111, .05));
}

.accordion-button:not(.collapsed) {
    color: var(--deep);
    background: linear-gradient(90deg, rgba(40, 167, 69, .15), rgba(132, 155, 111, .08));
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .05);
}

.accordion-body {
    color: var(--ink)
}

.icon-pill {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--olive));
}

/* How it works */
.howworks {
  position: relative;
  overflow: hidden;
}

.howworks .bg-fixed {
  background: url('https://images.unsplash.com/photo-1587402092301-725e63b4f5c4?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat fixed;
  filter: brightness(0.8);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.howworks .container {
  position: relative;
  z-index: 2;
}

.section-title {
  color: var(--deep);
  font-size: 2rem;
  position: relative;
}

.section-subtitle {
  color: var(--ink);
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

.step-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.step-badge {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, var(--accent), var(--deep));
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-card h5 {
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-card p, .step-card li {
  color: var(--ink);
  font-size: 0.95rem;
}

.step-card ul {
  list-style: none;
  padding: 0;
}

.step-card ul li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 8px;
}

@media (max-width: 767px) {
  .step-card {
    padding: 1.5rem;
  }
  .step-badge {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    line-height: 45px;
  }
}
:root {
  --deep: #0f5132;
  --ink: #4a4a4a;
  --accent: #bfa85a;
  --light-bg: rgba(255, 255, 255, 0.75);
}
/* herbs  */

/* Hero Section */
.ingredients-hero {
    position: relative;
    width: 100%;
    /* height: 5\; Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0px !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/cannabis-oil-bottle-composition.jpg') no-repeat center center/cover;
    filter: brightness(0.55) contrast(1.1);
    z-index: 1;
    transition: transform 1.2s ease;
    margin-top: 20px !important;
}

.ingredients-hero:hover .hero-bg {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
}

/* Overlay Effect */
.ingredients-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.45), rgba(254, 247, 217, 0.35));
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }
}

.ing-card {
    position: relative;
    min-height: 330px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg) center/cover no-repeat;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
    transform: translateZ(0);
}

.ing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25));
    transition: opacity .35s ease;
}

.ing-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 16px 16px;
    color: #fff;
}

.ing-title {
    margin: 0 0 4px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .2px
}

.ing-sub {
    margin: 0 0 6px;
    font-size: .88rem;
    opacity: .95
}

.ing-desc {
    margin: 0 0 10px;
    font-size: .9rem;
    opacity: .95
}

.ing-cta {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .65);
    padding: 6px 12px;
    border-radius: 999px;
    background-color: #28a745;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
    backdrop-filter: blur(2px);
}

.ing-card:hover .ing-overlay {
    opacity: .35
}

.ing-card:hover .ing-cta {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
    border-color: #fff
}

/* subtle zoom on hover */
.ing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg) center/cover no-repeat;
    transform: scale(1);
    transition: transform .6s ease, filter .6s ease;
    z-index: -1;
    /* keep for GPU layer hint */
}

.ing-card:hover::before {
    transform: scale(1.06);
    filter: brightness(1.02);
    background-color: #849b6f;

}

/* Responsive tweaks */
@media (max-width: 575.98px) {
    .ingredients-hero .hero-bg {
        height: 200px
    }

    .ing-card {
        min-height: 220px
    }

    .ing-title {
        font-size: 1rem
    }
}

:root {
    --deep: #012923;
    --olive: #849b6f;
    --gold: #fef7d9;
    --tan: #b28656;
    --ink: #0c0c0c;
    --green: #28a745;
}

.btn-custom {
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Button 1 */
.btn-1 {
    background: var(--deep);
    color: var(--gold);
}

.btn-1:hover {
    background: var(--tan);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Button 2 */
.btn-2 {
    background: var(--green);
    color: #fff;
}

.btn-2:hover {
    background: var(--olive);
    color: var(--ink);
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.btn-container {
    text-align: center;
    margin-top: 60px;
}

.btn-container a {
    margin: 0 15px;
}

/* oil    */
/* Hero Section */
.ingredients-hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 60px 0px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/cannabis-oil-bottle-composition.jpg') no-repeat center center/cover;
    filter: brightness(0.55) contrast(1.1);
    z-index: 1;
    transition: transform 1.2s ease;
}

.ingredients-hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.9;
}

/* Overlay Effect */
.ingredients-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.45), rgba(254, 247, 217, 0.35));
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }
}

/* Cards */
.ing-card {
    position: relative;
    min-height: 330px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg) center/cover no-repeat;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
    transform: translateZ(0);
}

.ing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25));
    transition: opacity .35s ease;
}

.ing-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px 16px 16px;
    color: #fff;
}

.ing-title {
    margin: 0 0 4px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: .2px
}

.ing-sub {
    margin: 0 0 6px;
    font-size: .88rem;
    opacity: .95
}

.ing-desc {
    margin: 0 0 10px;
    font-size: .9rem;
    opacity: .95
}

.ing-cta {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid rgba(255, 255, 255, .65);
    padding: 6px 12px;
    border-radius: 999px;
    background-color: #28a745;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
    backdrop-filter: blur(2px);
    text-decoration: none;
}

.ing-card:hover .ing-overlay {
    opacity: .35
}

.ing-card:hover .ing-cta {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
    border-color: #fff
}

/* subtle zoom on hover */
.ing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg) center/cover no-repeat;
    transform: scale(1);
    transition: transform .6s ease, filter .6s ease;
    z-index: -1;
}

.ing-card:hover::before {
    transform: scale(1.06);
    filter: brightness(1.02);
}

:root {
    --deep: #012923;
    --olive: #849b6f;
    --gold: #fef7d9;
    --tan: #b28656;
    --ink: #0c0c0c;
    --green: #28a745;
}

.btn-custom {
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Button 1 */
.btn-1 {
    background: var(--deep);
    color: var(--gold);
}

.btn-1:hover {
    background: var(--tan);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Button 2 */
.btn-2 {
    background: var(--green);
    color: #fff;
}

.btn-2:hover {
    background: var(--olive);
    color: var(--ink);
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.btn-container {
    text-align: center;
    margin-top: 60px;
}

.btn-container a {
    margin: 0 15px;
}


/* oil shampoo  */

body {
    font-family: 'Poppins', sans-serif;
    color: var(--vs-ink);
    background: #fff
}

.vs-wrap {
    padding: 56px 0
}

.vs-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7f7;
    border: 3px solid var(--vs-gold);
    /* min-height: 420px */
}

.vs-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.carousel-item.active img {
    transform: scale(1.02)
}

.vs-indicators {
    position: static;
    margin: 14px 0 !important;
    gap: 10px
}

.vs-indicators [data-bs-target] {
    width: 190px;
    height: 86px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease
}

.vs-indicators [data-bs-target]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15)
}

.vs-indicators .active {
    border-color: var(--vs-green)
}

.vs-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px
}

.vs-toggle {
    border: 1px solid var(--vs-green);
    color: var(--vs-green);
    background: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 700;
    transition: .2s
}

.vs-toggle[aria-pressed="true"] {
    background: var(--vs-green);
    color: #fff
}

.vs-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06)
}

.vs-title {
    color: var(--vs-deep);
    font-weight: 800
}

.vs-sub {
    color: var(--vs-tan)
}

.vs-pricebox {
    font-size: 1.05rem;
    margin: 10px 0 6px
}

.vs-new {
    color: var(--vs-green);
    font-weight: 700;
    font-size: 1.4rem
}

.vs-old {
    color: var(--vs-olive);
    text-decoration: line-through;
    margin-left: 8px
}

.vs-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.vs-chip {
    border: 1.5px solid var(--vs-green);
    color: var(--vs-green);
    background: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: .2s
}

.vs-chip.active,
.vs-chip:hover {
    background: var(--vs-green);
    color: #fff
}

.vs-add {
    background: var(--vs-green);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    width: 100%;
    transition: .25s
}

.vs-add:hover {
    background: var(--vs-deep);
    transform: translateY(-2px)
}

.vs-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.vs-pill {
    background: linear-gradient(90deg, var(--vs-gold), #ffeaa7);
    color: #111;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700
}



.vs-herbs-section {
  background: #f9fdf9;
  position: relative;
}

.vs-section {
  font-weight: 700;
  color: #146c43;
  font-size: 1.8rem;
}

.vs-ingred {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.vs-ingred img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform .4s ease;
}
.vs-ingred:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.vs-ingred:hover img {
  transform: scale(1.05);
}
.vs-ingred h6 {
  color: #1a4d2e;
  font-size: 1.05rem;
}
.vs-ingred p {
  font-size: 0.9rem;
  color: #555;
}

/* 📱 Responsive Tweaks */
@media (max-width: 992px) {
  .vs-ingred img {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .vs-ingred img {
    height: 160px;
  }
  .vs-section {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .vs-ingred {
    padding: 1rem;
  }
  .vs-ingred img {
    height: 140px;
  }
  .vs-section {
    font-size: 1.3rem;
  }
}
/* aboutt us   */



body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    color: var(--a-ink);
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

/* HERO */
.ab-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 16px 84px;
    color: #fff;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 216, 91, .08), transparent 8%),
        linear-gradient(135deg, rgba(1, 41, 35, .96), rgba(132, 155, 111, .92));
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1400&auto=format&fit=crop&ixlib=rb-4.0.3&s=');
    background-size: cover;
    background-position: center;
    opacity: .26;
    transform: scale(1.08);
    filter: contrast(1.04) saturate(1.05);
    will-change: transform;
}

.ab-leaf {
    position: absolute;
    z-index: 1;
    opacity: .18;
    filter: blur(.2px);
    transform-origin: center
}

.ab-leaf1 {
    right: -6%;
    top: 6%;
    width: 420px
}

.ab-leaf2 {
    left: -10%;
    bottom: -6%;
    width: 420px;
    opacity: .12
}

.ab-hero .container {
    position: relative;
    z-index: 2
}

.ab-hero h1 {
    font-size: clamp(1.6rem, 4.6vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.02;
    text-shadow: 0 8px 30px rgba(2, 8, 23, .35)
}

.ab-hero p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, .95);
    font-size: 1.02rem
}

.ab-hero .btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(2, 8, 23, .18)
}

.ab-accent {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 160px;
    z-index: 1;
    background: linear-gradient(90deg, var(--a-violet), var(--a-sky), var(--a-green));
    filter: blur(28px);
    opacity: .55;
    border-radius: 50%
}

/* Sections */
.ab-section {
    padding: 70px 0
}

.ab-section h2 {
    font-weight: 800;
    color: var(--a-deep);
    margin-bottom: 14px
}

.ab-section p {
    color: var(--a-tan);
    line-height: 1.75
}

/* Image wrappers */
.ab-about-img,
.ab-story-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    position: relative
}

.ab-about-img img,
.ab-story-img img {
    width: 100%;
    height: auto;
    transition: transform .5s ease;
    display: block
}

.ab-about-img:hover img,
.ab-story-img:hover img {
    transform: scale(1.06)
}

/* Feature card hover */
.ab-feature:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
    transition: .3s
}

/* Titles */
.ab-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #012923
}

.ab-subtitle {
    font-size: 1.2rem;
    color: #012923
}

/* Chips */
.ab-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px
}

.ab-chip {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .9rem;
    color: #123;
    background: linear-gradient(90deg, rgba(33, 212, 253, .16), rgba(183, 33, 255, .16));
    border: 1px solid rgba(1, 41, 35, .08)
}

/* CTA */
.ab-cta {
    background: linear-gradient(90deg, var(--a-green), var(--a-olive));
    color: #fff;
    text-align: center;
    padding: 56px 20px;
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .18)
}

.ab-cta h3 {
    font-weight: 800;
    margin: 0 0 8px
}

.ab-cta p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .95)
}

.ab-cta .btn {
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 700;
    transition: .25s ease;
    background: #fff;
    color: var(--a-green)
}

.ab-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16)
}

/* Responsive */
@media (max-width:991px) {
    .ab-hero h1 {
        font-size: 2.1rem
    }
}

@media (max-width:575px) {
    .ab-hero {
        padding: 60px 16px
    }

    .ab-hero h1 {
        font-size: 1.7rem
    }

    .ab-section {
        padding: 56px 0
    }
}


/* contact us   */


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6
}

/* Utility */
.c-wrap {
    width: 100%;
    max-width: var(--c-container);
    margin: auto;
    padding: 0 20px
}

.c-section {
    position: relative;
    padding: 90px 0
}

h1,
h2,
h3 {
    margin: 0 0 12px
}

.c-lead {
    color: #f3f4f6
}

.c-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(250, 204, 21, .15);
    color: #fde68a;
    margin-bottom: 12px
}

/* Hero */
.c-hero {
    min-height: 70vh;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .65)), url('../img/contactusbgimg.webp') center/cover no-repeat fixed;
}

.c-hero .c-inner {
    text-align: center;
    max-width: 820px;
    padding: 20px
}

.c-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    color: var(--c-gold);
    margin-bottom: 12px
}

.c-hero p {
    font-size: clamp(15px, 1.6vw, 18px);
    opacity: .95
}

/* Cards grid */

.contact-section {
  background-color: #f9f9f9;
}

.contact-card, .info-card, .social-card {
  border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-card:hover, .info-card:hover, .social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-card .btn i, .contact-card .btn-outline-success i {
  margin-right: 6px;
}

.social-card img {
  transition: transform .25s ease;
}

.social-card img:hover {
  transform: scale(1.1);
}


/* Split section */
.c-surface {
    background: var(--c-surface)
}

.c-form-col {
    grid-column: span 7
}

.c-info-col {
    grid-column: span 5
}

@media(max-width:900px) {

    .c-form-col,
    .c-info-col {
        grid-column: 1/-1
    }
}

/* --- General Layout --- */
.vs-contact-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.vs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.vs-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.vs-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* --- Contact Boxes --- */
.vs-box {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vs-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vs-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #00b09b, #96c93d);
  opacity: 0;
  transition: opacity 0.4s;
}

.vs-box:hover::before {
  opacity: 1;
}

.vs-icon {
  font-size: 2.3rem;
  color: #00b09b;
  margin-bottom: 15px;
  transition: transform 0.4s;
}

.vs-box:hover .vs-icon {
  transform: scale(1.2);
}

.vs-box h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 10px;
}

.vs-box p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.vs-box a {
  color: #00b09b;
  text-decoration: none;
  font-weight: 500;
}

.vs-box a:hover {
  text-decoration: underline;
}

.vs-box span {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #888;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .vs-title {
    font-size: 2rem;
  }
  .vs-box {
    padding: 30px 15px;
    
  }
}

/* Form */
.c-form {
    padding: 28px
}

.c-form h2 {
    color: var(--c-green);
    margin-bottom: 6px
}

.c-form p {
    margin: 0 0 20px;
    color: var(--c-muted)
}

.c-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--c-gap)
}

@media(max-width:640px) {
    .c-row {
        grid-template-columns: 1fr
    }
}

.c-field {
    position: relative;
    margin-bottom: 16px
}

.c-field label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #111827
}

.c-input,
.c-textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    background: #fff;
    transition: border-color .2s, box-shadow .2s, transform .05s
}

.c-input:focus,
.c-textarea:focus {
    border-color: var(--c-green);
    box-shadow: 0 0 0 4px var(--c-ring)
}

.c-textarea {
    min-height: 130px;
    resize: vertical
}

.c-help {
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 6px
}

.c-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-green);
    color: #fff;
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 10px 20px rgba(22, 163, 74, .25)
}

.c-btn:hover {
    background: var(--c-green-600);
    transform: translateY(-2px)
}

.c-btn:active {
    transform: translateY(0)
}

.c-btn--ghost {
    background: transparent;
    color: var(--c-text);
    border: 1.5px solid #e5e7eb;
    box-shadow: none
}

.c-status {
    display: none;
    margin-top: 12px;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px
}

.c-status--ok {
    display: block;
    background: #ecfdf5;
    color: #065f46
}

.c-status--err {
    display: block;
    background: #fef2f2;
    color: #991b1b
}

/* Partnerships strip */
.c-strip {
    position: relative;
    background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
    color: #fff;
    border-radius: var(--c-radius);
    padding: 34px 26px;
    overflow: hidden
}

.c-strip h3 {
    color: var(--c-gold);
    margin-bottom: 6px
}

.c-strip ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none
}

.c-strip li {
    margin: 8px 0
}

/* Social */
.c-social {
    text-align: center;
    padding: 30px 0 0
}

.c-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin: 0 8px;
    color: var(--c-green);
    background: linear-gradient(135deg, rgba(22, 163, 74, .12), rgba(250, 204, 21, .12));
    transition: transform .2s, box-shadow .2s, color .2s
}

.c-social a:hover {
    transform: translateY(-4px);
    color: #065f46;
    box-shadow: 0 10px 18px rgba(22, 163, 74, .2)
}

/* CTA */
.c-cta {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
    color: #fff
}

.c-cta h2 {
    color: var(--c-gold);
    margin-bottom: 12px
}

.c-cta p {
    opacity: .95;
    margin: 0 0 20px
}

/* Section variations */
.c-alt {
    background: var(--c-surface)
}

.c-section-title {
    text-align: center;
    margin-bottom: 10px;
    color: var(--c-gold)
}

.c-section-sub {
    text-align: center;
    color: var(--c-muted);
    max-width: 680px;
    margin: 0 auto 24px
}

/* Parallax mobile fallback */
@media(max-width:900px) {
    .c-hero {
        background-attachment: scroll
    }
}

/* Accessibility helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}





/* our impuct   */


:root {
    --i-deep: #012923;
    --i-olive: #849b6f;
    --i-gold: #fef7d9;
    --i-tan: #b28656;
    --i-ink: #0c0c0c;
    --i-green: #28a745;
    --i-glass: rgba(255, 255, 255, .14);
}



/* Hero */
.imp-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 16px;
    text-align: center;
    background: linear-gradient(135deg, var(--i-deep), var(--i-olive))
}

.imp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .25;
    background: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
    filter: saturate(1.1) contrast(1.05)
}

.imp-hero .imp-wrap {
    position: relative;
    z-index: 1;
    color: var(--i-gold)
}

.imp-hero h1 {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 2.2rem
}

.imp-hero p {
    max-width: 820px;
    margin: 10px auto 0;
    color: rgba(254, 247, 217, .96)
}

/* Section headers */
.imp-title {
    text-align: center;
    font-weight: 800;
    color: var(--i-deep);
    margin: 28px 0 10px
}

.imp-text {
    text-align: center;
    color: #444;
    margin-bottom: 24px
}

/* Glass cards grid */
.imp-grid {
    --br: 16px;
    background: linear-gradient(145deg, rgba(40, 167, 69, .08), rgba(132, 155, 111, .06));
    border-radius: var(--br);
    padding: 22px
}

.imp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease
}

.imp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, .16);
    border-color: rgba(255, 255, 255, .32)
}

.imp-shine {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(60deg, transparent 0, rgba(255, 255, 255, .28) 35%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .7s ease
}

.imp-card:hover .imp-shine {
    transform: translateX(120%)
}

.imp-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transition: transform .6s ease, filter .6s ease
}

.imp-card:hover .imp-cover {
    transform: scale(1.06);
    filter: brightness(1.05)
}

.imp-body {
    padding: 16px
}

.imp-card h3 {
    font-weight: 700;
    color: var(--i-deep);
    margin: 6px 0 8px;
    font-size: 1.1rem
}

.imp-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.imp-list li {
    position: relative;
    padding-left: 24px;
    color: #444;
    margin: 6px 0
}

.imp-list li::before {
    content: '✔';
    color: var(--i-green);
    position: absolute;
    left: 0;
    top: 0
}

/* Metrics */
.imp-metrics .imp-metric {
    background: linear-gradient(135deg, var(--i-gold), var(--i-green));
    color: #fff;
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    transition: transform .25s ease, box-shadow .25s ease
}

.imp-metrics .imp-metric:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 26px 52px rgba(0, 0, 0, .16)
}

.imp-metric h3 {
    font-size: 1.8rem;
    margin: 0 0 4px
}

.imp-metric p {
    margin: 0
}

/* CTA */
.imp-cta {
    background: linear-gradient(135deg, var(--i-gold), var(--i-green));
    color: #fff;
    border-radius: 24px;
    text-align: center;
    padding: 44px 18px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, .14)
}

.imp-cta h2 {
    margin: 0 0 10px;
    font-weight: 800
}

.imp-btn {
    display: inline-block;
    background: var(--i-deep);
    color: var(--i-gold);
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease, color .25s ease;
    text-decoration: none
}

.imp-btn:hover {
    transform: translateY(-2px);
    background: #1e7e34;
    color: #fff
}

/* Scroll-in animation */
[data-imp-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: all .6s ease-out
}

[data-imp-animate].imp-animated {
    opacity: 1;
    transform: none
}

/* Responsive */
@media (max-width:767.98px) {
    .imp-cover {
        height: 180px
    }
}


/* Section */
.bg-gv-set {
    background: var(--gold);
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--deep);
}

.gv-section {
    padding: 3rem 0;
}

.gv-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: .5rem;
    text-align: center;
}

.gv-sub {
    color: var(--olive);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Summary */
.gv-summary {
    text-align: center;
    padding: 36px 20px;
    background: linear-gradient(135deg, var(--green) 0%, #2fc65a 100%);
    border-radius: 14px;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.gv-summary::after {
    content: "";
    position: absolute;
    inset: auto -20% -20% auto;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .12);
    filter: blur(30px);
    border-radius: 50%;
    z-index: -1;
}

.gv-summary__logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--gold);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
    background: #fff;
}

.gv-summary__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gv-summary__g {
    color: #4285F4;
    font-size: 1.25rem;
    margin-right: 6px;
    vertical-align: middle;
}

.gv-summary__stars {
    color: var(--tan);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.gv-summary__text {
    font-size: .98rem;
    color: var(--gold);
    margin-top: 8px;
    opacity: .95;
}

/* Swiper container + pagination */
.swiper.gv-slider {
    padding: 8px 0 40px 0;
}

.gv-pagination .swiper-pagination-bullet {
    background: var(--deep);
    opacity: .35;
    transition: opacity .2s, transform .2s;
}

.gv-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.05);
    background: var(--tan);
}

/* Review card */
.gv-card {
    background: #fffdf2;
    color: var(--deep);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: transform .2s, box-shadow .2s;
    width: 100%;
    min-height: 320px;
}

.gv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.gv-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gv-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.gv-card__g {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.gv-stars {
    color: var(--tan);
    display: flex;
    gap: 2px;
    font-size: 1rem;
}

.gv-meta {
    font-size: .9rem;
    color: var(--olive);
}

.gv-text {
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Equal height fix */
.gv-slide.swiper-slide {
    display: flex;
    height: auto;
}

@media (max-width:991px) {
    .gv-summary {
        margin-bottom: 20px;
    }
}

@media (max-width:576px) {
    .gv-card {
        padding: 18px;
    }
}

/* Returns Policy */
.policy-section {
     font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--ink);
  line-height: 1.7;
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff, #fafafa);
}

.policy-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.08);
  padding: 50px 40px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.policy-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 45px rgba(0,0,0,0.1);
}


.policy-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--deep);
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.policy-title::after {
  content: "";
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--tan), var(--olive));
  position: absolute;
  bottom: 0;
  left: 0;
}

.policy-intro {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
}

.policy-section h5 {
  font-weight: 600;
  color: var(--deep);
  font-size: 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.policy-section h5::before {
  content: "📘";
  margin-right: 10px;
  font-size: 22px;
}

.policy-section ul {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.policy-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.policy-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--tan);
  font-weight: bold;
}

.policy-contact {
  background: linear-gradient(135deg, var(--gold), #ffffff);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.policy-contact h6 {
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 15px;
}

.contact-item {
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-item i {
  color: var(--tan);
  margin-right: 10px;
  font-size: 18px;
}

.btn-contact {
  display: inline-block;
  background: linear-gradient(90deg, var(--tan), var(--olive));
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-contact:hover {
  background: linear-gradient(90deg, var(--olive), var(--tan));
  color: #fff;
  transform: translateY(-2px);
}

.policy-footer {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  border-radius: 50%;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 40px;
  height: 40px;
}

/* Popup Box */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
  display: none;
  animation: slideUp 0.4s ease;
  z-index: 1001;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.popup-header {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 14px;
  position: relative;
}
.popup-logo {
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
}
.close-popup {
  position: absolute;
  right: 14px;
  top: 6px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  transition: 0.3s;
}
.close-popup:hover {
  color: #000;
  transform: rotate(90deg);
}

/* Body */
.popup-body {
  padding: 16px;
  background-color: #f8faf8;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
}
.start-chat-btn {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.start-chat-btn:hover {
  background: #1ebe57;
  transform: scale(1.05);
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .whatsapp-popup {
    width: 90%;
    left: 5%;
    bottom: 80px;
  }
}
