input::placeholder,
textarea::placeholder {
    color: #ffffff;   /* thoda dark white */
    opacity: 1;       /* opacity full rakho warna light ho jaata hai */
}

.blog-section {
    padding: 100px 60px;
    background: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #0e2207;
    margin-bottom: 15px;
}

.section-header p {
    color: #888888;
    font-size: 15px;
}

/* Grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* Image */

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Content */

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    color: #1f6306;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 16px;
    color: #888888;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Button */

.read-more {
    display: inline-block;
    padding: 8px 18px;
    background: #ffcd1e;
    color: #000000;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.read-more:hover {
    background: #1f6306;
    color: #ffffff;
}

/* Responsive */

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}



.main-footer {
    background: #0e2207;
    color: #ffffff;
    padding: 80px 60px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

/* LOGO + ABOUT */

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
}

/* HEADINGS */

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    color: whitesmoke;
}

.footer-col h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ffcd1e;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* LINKS */

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #cccccc;
    font-size: 18px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcd1e;
    padding-left: 6px;
}

/* CONTACT */

.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #cccccc;
    font-size: 16px;
}

.footer-contact i {
    color: #ffcd1e;
    margin-right: 8px;
    font-size: 18px;
}

.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #ffcd1e;
}


/* BOTTOM */

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #888888;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-footer {
        padding: 60px 25px 20px;
    }
}





/* HEADER */
/* ===== HEADER FIX (OVERRIDE SAFE) ===== */
.header-height {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 2147483647; /* max safe */
}

.ph-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body{
    padding-top: 100px;
}

.ph-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGOS */
.ph-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.ph-logos img {
  width: 120px;
}

/* NAV */
.ph-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ph-link,
.ph-drop-btn {
  background: none;
  border: none;
  text-decoration: none;
  color: #010c1b;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 6px 0;
}

/* underline */
.ph-link::after,
.ph-drop-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #021729;
  transition: 0.3s ease;
}

.ph-link:hover::after,
.ph-drop-btn:hover::after {
  width: 100%;
}

/* DROPDOWN */
.ph-dropdown {
  position: relative;
}

.ph-arrow {
  font-size: 12px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.ph-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 0;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);

  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.ph-drop-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 17px;
  color: #374151;
}

.ph-drop-menu a:hover {
  background: #f3f4f6;
}

/* OPEN STATE (JS ONLY) */
.ph-dropdown.active .ph-drop-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ph-dropdown.active .ph-arrow {
  transform: rotate(180deg);
}

/* HAMBURGER */
.ph-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ph-hamburger span {
  width: 26px;
  height: 3px;
  background: #1f2937;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .ph-hamburger {
    display: flex;
  }
  .ph-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  }

  .ph-nav.open {
    display: flex;
  }

  /* main nav links */
  .ph-link,
  .ph-drop-btn {
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    font-size: 15px;
  }

  .ph-dropdown {
    width: 100%;
  }

  /* dropdown button row */
  .ph-drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* dropdown menu (accordion style) */
  .ph-drop-menu {
    position: static;
    background: #f9fafb;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    display: none;
  }

  .ph-dropdown.active .ph-drop-menu {
    display: block;
  }

  /* dropdown items */
  .ph-drop-menu a {
    padding: 10px 36px;
    font-size: 16px;
    color: #374151;
  }
}

/* DESKTOP HOVER FIX */
@media (min-width: 901px) {
  .ph-dropdown:hover .ph-drop-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .ph-dropdown:hover .ph-arrow {
    transform: rotate(180deg);
  }
}
/* HEADER WRAPPER MUST BE NEUTRAL */
.header-wrapper {
  overflow: visible;
  transform: none;
}

/* STICKY HEADER */
.ph-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  background: #ffffff;
}

/* ===============================
   HEADER WHATSAPP ENQUIRE BUTTON
================================= */

.ph-enquire-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffcd1e;
  color: #0e2207;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(206, 167, 26, 0.35);
  position: relative;
  overflow: hidden;
}

.ph-enquire-btn.btn2{
  box-shadow: 0 8px 20px rgba(31, 99, 6, 0.35);
  background: #1f6306;
  color: white;
  margin-left: 5px;
}

/* Hover Effect */
.ph-enquire-btn:hover {
  background: #1f6306;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(255, 205, 30, 0.35);
  transform: translateY(-3px);
}

.ph-enquire-btn.btn2:hover{
  background: #ffcd1e;
  box-shadow: 0 12px 25px rgba(31, 99, 6, 0.4);
}

/* Click Effect */
.ph-enquire-btn:active {
  transform: scale(0.96);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1000px){
  .header-btns{
    display: none;
  }
}



/* ============================
   PH HERO SLIDER (SAFE VERSION)
============================ */

.ph-hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* SLIDES WRAPPER */
.ph-hero-slider .ph-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* INDIVIDUAL SLIDE */
.ph-hero-slider .ph-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ACTIVE */
.ph-hero-slider .ph-hero-slide.active {
  opacity: 1;
}


/* MOBILE */
@media (max-width: 768px) {
  .ph-hero-slider .ph-hero-content h1 {
    font-size: 2rem;
  }
  /* SLIDES WRAPPER */
.ph-hero-slider, .ph-hero-slides {
  position: relative;
  width: 100%;
  height: 180px !important;
}

}






.nv-about-section {
  padding: 100px 20px;
  text-align: center;

  /* Soft Ayurvedic Gradient */
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f7fbf4 40%,
    #fdf9e6 100%
  );
}

.nv-about-container {
  max-width: 1100px;
  margin: auto;
}

.nv-about-heading {
  font-size: 34px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 12px;
}

.nv-about-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #1b5e20, #d4af37);
  margin: 0 auto 25px;
  border-radius: 5px;
}

.nv-about-subtext {
  font-size: 19px;
  color: #4e6b4e;
  max-width: 750px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.nv-about-main {
  font-size: 16px;
  color: #555;
  max-width: 850px;
  margin: 0 auto 55px;
  line-height: 1.9;
}

.nv-about-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.nv-about-card {
  background: #ffffff;
  padding: 35px 25px;
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nv-about-card i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 15px;
}

.nv-about-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1b5e20;
}

.nv-about-card p {
  font-size: 15px;
  color: #666;
}

.nv-about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.nv-about-closing {
  font-size: 16px;
  font-weight: 500;
  color: #1b5e20;
  max-width: 750px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .nv-about-heading {
    font-size: 28px;
  }

  .nv-about-card {
    width: 100%;
  }
}