/* =========================================================
   VOXIPURE CUSTOM STYLES
   ========================================================= */

body {
  font-family: 'Poppins', sans-serif;
  background-color:#f3f4f6;
}

/*======================= header section ==================*/
/* =========================================================
   HEADER BASE
   ========================================================= */

#vpHeader{
background:#ffffff;
box-shadow:0 2px 12px rgba(0,0,0,0.08);
color:#111;
transition:all .3s ease;
}

/* =========================================================
   LOGO
   ========================================================= */

#vpHeader .text-white{
color:#111 !important;
}

.logotext{
font-size:18px;
font-weight:700;
letter-spacing:0.5px;
}

/* =========================================================
   NAV LINKS
   ========================================================= */

.vp-nav-link{
position:relative;
display:inline-block;
color:#111;
font-weight:500;
transition:color .3s ease;
}

/* Hover underline */

.vp-nav-link::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#2563eb;
transition:width .3s ease;
}

.vp-nav-link:hover::after{
width:100%;
}

/* Active menu */

.vp-nav-link.active{
color:#2563eb;
}

.vp-nav-link.active::after{
width:100%;
}

/* =========================================================
   BUTTON
   ========================================================= */

#vpHeader a.bg-green-500{
background:#22c55e;
color:#fff;
transition:.3s;
}

#vpHeader a.bg-green-500:hover{
background:#16a34a;
}

/* =========================================================
   HAMBURGER
   ========================================================= */

#vpToggle{
position:relative;
width:24px;
height:24px;
}

.vp-bar{
position:absolute;
width:100%;
height:3px;
background:#111;
transition:all .3s ease;
}

/* Bar positioning */

.vp-bar:nth-child(1){
top:4px;
}

.vp-bar:nth-child(2){
top:10px;
}

.vp-bar:nth-child(3){
top:16px;
}

/* Active animation */

#vpToggle.vp-active .vp-bar:nth-child(1){
transform:rotate(45deg);
top:10px;
}

#vpToggle.vp-active .vp-bar:nth-child(2){
opacity:0;
}

#vpToggle.vp-active .vp-bar:nth-child(3){
transform:rotate(-45deg);
top:10px;
}

/* =========================================================
   MOBILE OVERLAY
   ========================================================= */

#vpOverlay{
background:rgba(0,0,0,0.4);
backdrop-filter:blur(8px);
}

/* =========================================================
   MOBILE PANEL
   ========================================================= */

#vpMobile{
background:#000;
color:#fff;
}

/* Mobile links */

.vp-mobile-link{
color:#fff;
transition:.3s;
}

.vp-mobile-link:hover{
color:#60a5fa;
}

/* =========================================================
   MOBILE STATES
   ========================================================= */

.vp-mobile-open{
right:0 !important;
}

.vp-overlay-active{
opacity:1 !important;
pointer-events:auto !important;
}

.vp-no-scroll{
overflow:hidden;
}

/* =========================================================
   MOBILE FIXES
   ========================================================= */

@media (max-width:768px){

#vpHeader{
padding-top:5px;
padding-bottom:5px;
}

.logotext{
font-size:16px;
}

}

/*======================= hero section ==================*/
/* =========================================================
   HERO SECTION
   ========================================================= */

.hero{
width:100%;
height:850px;
background:url("../assets/images/hero-bg2.jpg") no-repeat center right;
background-size:cover;

display:flex;
align-items:center;

padding-left:8%;
padding-right:8%;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content{
max-width:520px;
color:#fff;
}

.hero-content h1{
font-size:64px;
font-weight:700;
line-height:1.1;
margin-bottom:20px;
}

.hero-content p{
font-size:18px;
opacity:.9;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
background:#ef4444;
color:#fff;
padding:14px 32px;
border-radius:40px;
font-weight:600;
text-decoration:none;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1024px){

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
}

}

/* =========================================================
   MOBILE FIX
   ========================================================= */

@media (max-width:768px){

.hero{
margin-top:80px;
background-size:contain;
height:auto;
}

.hero-content{
max-width:250px;
padding-top:25px;
}

.hero-content h1{
font-size:22px;
line-height:1.2;
}

.hero-content p{
font-size:12px;
max-width:200px;
}
}

/*======================= hero section End ==================*/


/*======================= About section ==================*/
@media (max-width:768px){

.vp-about{
	padding-top:0px;
	margin:0px;
}
}
/*======================= About section End ==================*/


/* Hover scale */
.vp-card:hover .vp-range-img {
    transform: scale(1.1);
}

/* Mobile menu open state */
.vp-mobile-open {
    right: 0 !important;
}

/* Overlay active */
.vp-overlay-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Prevent body scroll */
.vp-no-scroll {
    overflow: hidden;
}

a.bg-green-500:hover {
  background: #16a34a;
  transform: translateY(-2px);
  transition: 0.3s ease;
}




/* ================= SLIDER BASE ================= */

.vp-slider-mask {
    overflow: hidden;
}

.vp-slider-track {
    display: flex;
    gap: 70px;
    align-items: center;
    will-change: transform;
}

/* CARD */
.vp-card {
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vp-range-img {
    width: 120px;
    transition: transform 0.3s ease;
	margin-bottom:10px;
	padding-top:15px;
}

/* ZOOM WITHOUT CROP */
.vp-card:hover {
    z-index: 20;
}

.vp-card:hover .vp-range-img {
    transform: scale(1.02);
}

/* ================= MOBILE MODE ================= */

@media (max-width: 768px) {

    .vp-slider-mask {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .vp-slider-track {
        gap: 0;
    }

    .vp-card {
        min-width: 100%;
        scroll-snap-align: center;
    }

    .vp-range-img {
        width: 180px;
    }

}



/* ============================================= */
/* HEALTH SECTION STYLING */
/* ============================================= */

.vp-health-section {
  position: relative;
  padding:140px 0px;
}

.vp-check {
  color: #e53935;
  font-weight: bold;
}

/* Mineral Card Base */
.vp-mineral-card {
  padding: 28px;
  border-radius: 20px;
  height: 260px; /* fixed clean height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}




/* Hover effect */
.vp-mineral-card:hover {
  transform: translateY(-6px);
}

/* Mineral Titles */
.vp-mineral-title {
  font-size: 40px;
  font-weight: 700;
}

/* Mineral Description */
.vp-mineral-text {
  font-size: 14px;
  line-height: 1.6;
}


.vp-mineral-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}



@media (max-width: 768px) {
  .vp-health-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  
    .vp-health-section h2 {
    font-size: 28px;
  }

  .vp-health-section .grid-cols-2 {
    gap-column: 20px;
  }
  
  .vp-mineral-card {
  height: 240px; /* fixed clean height */
}

}

/* ========================= */
/* PARALLAX SECTION */
/* ========================= */

.vp-parallax-section {
  position: relative;
  height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/nature-bg.jpg') center center / cover no-repeat;
  transform: translateY(0);
  will-change: transform;
  z-index: 1;
}

.vp-parallax-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

.vp-parallax-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.vp-parallax-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}

.vp-parallax-btn {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.vp-parallax-btn:hover {
  background: #dc2626;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .vp-parallax-section {
    height: 420px;
  }

  .vp-parallax-title {
    font-size: 28px;
  }
}



/* ================= PROCESS SECTION ================= */

.vp-process-section {
  background: #f4f6f7;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.vp-process-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.vp-process-title {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto 120px;
}

.vp-process-title span {
  color: #e53935;
}

/* Wrapper */
.vp-process-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Horizontal dotted center line */
.vp-process-line {
  position: absolute;
  top: 120px; /* exact center of circles */
  left: 0%;
  width: 90%;
  border-top: 2px dotted #cfd8dc;
  z-index: 0;
}

/* Each step */
.vp-process-item {
  width: 23%;
  position: relative;
  z-index: 2;
}

/* Number Badge */
.vp-step-badge {
  position: absolute;
  top: 100px; /* aligns to center line */
  left: -5%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: #e53935;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Visual Wrapper */
.vp-process-visual {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 60px;
}

/* Grey Circle */
.vp-process-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #dfe4e6;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

/* Bottle Image */
.vp-process-visual img {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  transition: transform 0.4s ease;
  z-index: 2;
  
}

/* Hover Effect */
.vp-process-item:hover .vp-process-circle {
  transform: scale(0.75);
}

.vp-process-item:hover img {
  transform: translateX(-50%) scale(1.25);
}

/* Description */
.vp-process-item p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .vp-process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 160px;
	margin-top:180px;
  }

  /* Vertical line */
  .vp-process-line {
    top: -120px;
    left: 50%;
    width: 2px;
    height: 100%;
    border-top: none;
    border-left: 2px dotted #cfd8dc;
  }

  .vp-process-item {
    width: 100%;
  }

  .vp-step-badge {
    left: 50%;
    top: -120px;
  }

  .vp-process-visual {
    width: 200px;
    height: 200px;
  }

}


/* ================= FOOTER ================= */
.vp-footer {
  background: #e9efef;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
}

.vp-footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 0 40px;
}

/* Column 1 layout (two rows) */
.vp-footer-col-1 {
  display: flex;
  flex-direction: column;
  
}

/* Center columns */
.vp-footer-center {
  display: flex;
  
  justify-content: center;
}

.vp-footer-center > div {
  text-align: left;
}

/* Logo */
.vp-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vp-footer-logo img {
  height: 45px;
}

.vp-footer h3 {
  font-size: 20px;
  font-weight: 600;
}

.vp-footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.vp-footer-powered h4{
	margin-bottom: 10px;
}

.vp-footer p,
.vp-footer li {
  font-size: 14px;
  line-height: 1.6;
  color: #2c2c2c;
}

.ft-list li {
  font-size: 14px;
  line-height: 2.6;
  color: #2c2c2c;
}

.vp-footer ul {
  list-style: none;
  padding: 0;
}

.vp-footer ul li {
  margin-bottom: 10px;
  cursor: pointer;
}

/* Powered Logos */
.vp-powered-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.vp-powered-logos img {
  height: 60px;
}

/* Bottom Bar */
.vp-footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 14px;
}

.vp-footer-bottom a {
  color: #0077cc;
  text-decoration: none;
}


@media (max-width: 992px) {

  .vp-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vp-footer-center {
    justify-content: flex-start;
  }

}
