:root {
    --ppg-light-green: #E0F500;
    --ppg-deep-green: #01091a;
    --ppg-golden: #E0F500;
    --ppg-title-color: #01091a;
    --ppg-para-color: #494745;
    --ppg-bg: #f5f5f5;
    --star-green: #4CE279;
    --blue-grad-bg: linear-gradient(90deg, #0188FD 0%, #001FAA 100%);
    --dark-blue: #001FAA;
    --ppg-prple: #f6eeff;
    --ppg-blue-new: #003263;

}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ppg-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
}

p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.2rem !important;
}

.no-mar {
    margin: 0px !important;
}

.top-title {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    font-family: "Caveat", cursive !important;
    font-optical-sizing: auto !important;
    text-transform: capitalize !important;
    display: none !important;
}

.main-title {
    font-size: 2.3rem !important;
    font-weight: 600;
    text-transform: capitalize !important;
    font-family: "Bruno Ace", sans-serif !important;
}

.lime-btn {
    font-size: 1.05rem !important;

    margin-top: 50px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    max-width: fit-content;

    /* background: var(--dark-blue) !important; */
    background: var(--blue-grad-bg) !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    color: var(--ppg-bg) !important;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-left: 16px !important;

    position: relative;
    overflow: hidden;
}

/* ICON */
.lime-btn i {
    padding: 10px;
    background: #fff;
    color: var(--ppg-title-color);
    border-radius: 1000px;

    transform: rotate(-45deg);

    margin-left: 6px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER */
header .pp-navbar .lime-btn:hover {

    background-color: #f3e8ff !important;
    background-image: radial-gradient(at 10% 90%, hsla(252, 100%, 85%, 1) 0px, transparent 50%), radial-gradient(at 90% 20%, hsla(276, 85%, 90%, 1) 0px, transparent 50%), radial-gradient(at 50% 50%, hsla(315, 60%, 95%, 1) 0px, transparent 50%), radial-gradient(at 0% 0%, hsla(230, 50%, 92%, 1) 0px, transparent 50%) !important;
    color: var(--ppg-title-color) !important;

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lime-btn:hover {

    background: var(--ppg-blue-new) !important;
    color: var(--ppg-bg) !important;

    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ICON ANIMATION */
.lime-btn:hover i {
    transform: rotate(0deg);
}

/* OPTIONAL SOFT SHINE */
.lime-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.lime-btn:hover::before {
    left: 100%;
}


.intro-img {
    height: 50vh;
    border-radius: 30px;
}

.intro-img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.ppg-blank-pg {
    height: 50vh;
}

/* =========================
   TOP BAR
========================= */

.pp-menu li {
    padding: 15px 0px;
}

.header-logo-wrpr img {
    border-radius: 15px;
}

.ppg-topbar {
    background: var(--ppg-title-color);
    font-size: 14px;
    padding: 8px 0;
    color: var(--ppg-title-color);
}

.ppg-topbar i {
    color: var(--ppg-title-color);
    margin-right: 6px;
}

.ppg-topbar a {
    width: 60px;
    display: flex;
    color: var(--ppg-title-color);
    text-decoration: none;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

.ppg-topbar-right {
    gap: 25px;
}

/* =========================
   NAVBAR WRAPPER
========================= */
.ppg-navbar-wrapper {
    padding: 15px 0;
}

.ppg-navbar-box {
    padding-right: 15px !important;
    padding-left: 10px !important;
    background: #dfe6e3;
    border-radius: 999px;
    padding: 12px 25px;
}

/* Nav links */
.ppg-navbar .nav-link {
    color: var(--ppg-title-color);
    font-weight: 500;
    margin: 0 15px;
}

.ppg-navbar .nav-link:hover {
    color: var(--ppg-deep-green);
}

/* Center logo */
.ppg-logo img {
    width: 60px;
}

/* Buttons */
.ppg-btn-outline {
    border: 1px solid var(--ppg-deep-green);
    border-radius: 25px;
    padding: 8px 20px;
    background: transparent;
    color: var(--ppg-deep-green);
    font-weight: 500;
}

.ppg-btn-outline:hover {
    background: var(--dark-blue);
    color: #fff;
}

.ppg-btn-primary {
    background: var(--ppg-deep-green);
    border-radius: 25px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 500;
    border: none;
}

.ppg-btn-primary:hover {
    opacity: 0.9;
}

.ppg-hero-section {
    background: #E7E4DA;
    padding: 90px 0 60px;
}

.ppg-hero-title {
    font-size: 58px;
    line-height: 1.15;
    color: var(--ppg-title-color);
}

.ppg-hero-right h5 {
    color: var(--ppg-title-color);
    font-size: 22px;
}

.ppg-hero-right p {
    color: #4b3a2a;
    font-size: 15px;
    line-height: 1.7;
}

.ppg-register-btn {
    background: var(--ppg-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    color: var(--ppg-deep-green);
    margin-top: 15px;
}

.ppg-register-btn:hover {
    background: var(--ppg-deep-green);
    color: #fff;
}

/* Feature Pills */
.ppg-feature-pill {
    background: #E9E6E0;
    border-radius: 40px;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ppg-feature-dot {
    width: 45px;
    height: 45px;
    background: #4B2608;
    border-radius: 50%;
    flex-shrink: 0;
}

.ppg-feature-text {

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--ppg-title-color);
}

.navbar .navbar-nav .nav-link {
    color: var(--ppg-title-color) !important;
    margin: 0px;
}

#ppgNavMobile {
    display: none !important;
}

div#ppgNavLeft {
    display: flex !important;
    max-width: fit-content;
}



/* ===============================
   HERO SLIDER SECTION
================================ */
/* Section */
.ppg-hero-slider-section {
    padding: 40px 0;
    background: var(--ppg-bg);
}

/* Slider Wrapper */
.ppg-hero-slider {
    z-index: 0;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 550px;
}

/* Slide */
.ppg-slide-item {
    position: relative;
    height: 550px;
    color: var(--ppg-title-color);
}

.ppg-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

/* Smooth zoom on active slide */
.slick-current .ppg-slide-item img {
    transform: scale(1.08);
}

/* Dark overlay (Left fade like your design) */
.ppg-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.05) 70%);
}

/* Content */
.ppg-slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 520px;
    color: #fff;
}



.ppg-slide-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: "Bruno Ace", sans-serif !important;
}

.ppg-slide-desc {
    font-size: 16px !important;
    margin-bottom: 30px !important;
    opacity: 0.9;
    color: #fff !important;
}

/* Button */
.ppg-slide-btn {
    background: var(--blue-grad-bg);
    color: #fff !important;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ppg-deep-green);
    transition: 0.3s ease;
}

.ppg-slide-btn:hover {
    background: #fff;
    color: var(--dark-blue);
}

/* ===============================
   VERTICAL DOTS (Right Side)
================================ */

.ppg-hero-slider .slick-dots {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    height: 30px;
    z-index: 10;
    width: 30px;
}

.ppg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: fill !important;
    transition: transform 0.6s ease;
}

.ppg-category-section .ppg-cat-name {
    font-size: 1rem !important;
    padding: 5px 10px;
    /* border: 1px solid var(--ppg-title-color); */
    border: 1px solid transparent;
    /* background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff3e8f, #5b52ff) border-box; */
    line-height: 1;
    border-radius: 999px;
    color: var(--ppg-title-color);
    margin: 0px !important;
    margin-top: 20px !important;
}

.ppg-btn-wrap .ppg-btn-outline {
    height: 42px !important;
    width: 42px !important;
    font-weight: 600 !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    padding: 5px 20px !important;
    border-radius: 20px !important;
    transition: all 0.5s ease-in-out !important;
    font-size: .8rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Remove default bullet */
.ppg-hero-slider .slick-dots li button:before {
    display: none;
}

/* Custom vertical dots */
.ppg-hero-slider .slick-dots li {
    width: 4px;
    height: 26px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ppg-hero-slider .slick-dots li.slick-active {
    background: var(--ppg-golden);
    height: 40px;
}

/* Remove arrows */
.ppg-hero-slider .slick-prev,
.ppg-hero-slider .slick-next {
    display: none !important;
}

/* ===============================
   WHAT WE DO SECTION
================================ */
.ppg-what-section {
    /* background: #ECE9E1; */
    padding: 30px 0;
    position: relative;
}

/* Sub heading */
.ppg-what-subtitle {

    font-size: 14px;
    color: var(--ppg-deep-green);
    font-style: italic;
}

/* Main heading */
.ppg-what-title {

    font-size: 44px;
    color: var(--ppg-title-color);
    margin: 10px 0 15px;
}

/* Description */
.ppg-what-desc {

    font-size: 15px;
    color: var(--ppg-title-color);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Card */
.ppg-what-card {
    background: #F3F1EC;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    min-height: 290px;
}

.ppg-what-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.ppg-what-icon {
    font-size: 28px;
    color: var(--ppg-title-color);
    margin-bottom: 20px;
}

/* Card Title */
.ppg-what-card h4 {
    font-size: 22px;
    color: var(--ppg-title-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Card Text */
.ppg-what-card p {
    font-size: 1.2rem !important;
    color: var(--ppg-para-color);
    line-height: 1.6;
    margin-bottom: 0 !important;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row.g-4.what-we-do-grid {
    display: flex;
    justify-content: center;
}



/* ===============================
   ABOUT SECTION
================================ */
.ppg-about-section {
    padding: 30px 0;
    text-align: center;
}

/* Subtitle */
.ppg-about-subtitle {

    font-size: 14px;
    color: var(--dark-blue);
    font-style: italic;
    margin-bottom: 10px;
}

/* Title */
.ppg-about-title {

    font-size: 44px;
    color: var(--ppg-title-color);
    margin-bottom: 30px;
}

/* Description */
.ppg-about-text {
    text-align: justify;
    font-size: 15px;
    color: var(--ppg-title-color);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Button */
.ppg-about-btn {
    background: var(--ppg-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: var(--ppg-deep-green);
    transition: 0.3s ease;
}

.ppg-hero-slider-section .ppg-about-btn {
    margin-top: 0px !important
}

.ppg-about-btn:hover {
    background: var(--ppg-deep-green);
    color: #fff;
}

/* ===============================
   SECTION BACKGROUND
================================ */
.ppg-mv-section {
    display: none;
    padding: 30px 0;
    /* background: linear-gradient(90deg, #F3EBDD 0%, #EDE4D4 50%, #F3EBDD 100%); */
}

/* Custom UL Style */
.ppg-custom-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ppg-custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;

    font-size: 15px;
    color: var(--ppg-title-color);
}

/* Custom Dot */
.ppg-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--ppg-light-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(199, 240, 142, 0.25);
}

/* Card Base */
.ppg-mv-card {
    border-radius: 24px;
    padding: 40px 35px;
    height: 100%;
}

/* Titles */
.ppg-mv-card h3 {

    font-size: 30px;
    margin-bottom: 20px;
}

/* Paragraph / List */
.ppg-mv-card p,
.ppg-mv-card li {

    font-size: 1.2rem;
    line-height: 1.7;
}

/* Individual Card Colors */
.ppg-card-mission {
    background: #ECE9E4;
    color: var(--ppg-title-color);
}

.ppg-card-vision {
    background: #3F6A57;
    color: #ffffff;
}

.ppg-card-vision p {
    color: var(--ppg-bg) !important;
}

.ppg-card-vision li {
    color: var(--ppg-bg) !important;
}

.ppg-card-core li {
    color: var(--ppg-bg) !important;
}

.ppg-card-core {
    background: #5A3D00;
    color: #ffffff;
}

.ppg-card-road {
    background: #D8DBD7;
    color: var(--ppg-title-color);
}

.ppg-card-road .ppg-custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--ppg-title-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 198, 142, 0.25);
}

/* List styling */
.ppg-mv-card ul {
    padding-left: 18px;
    margin: 0;
}

.ppg-mv-card li {
    margin-bottom: 8px;
}


section.ppg-founder-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ppg-founder-subtitle {
    text-align: center;
    color: var(--ppg-deep-green);
}

.ppg-founder-title {
    text-align: center;
    color: var(--ppg-title-color);
}

.ppg-founder-desc {
    margin: auto;
    /* display: flex; */
    text-align: center;
    max-width: 60%;
    color: var(--ppg-title-color);
    justify-content: center;
    padding-bottom: 25px;
}

/* Card Wrapper */
.founder-card {
    background: #fff;
    border-radius: 25px;
    padding: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.founder-card:hover {
    background: #003263;
    color: #fff;
}

.founder-card:hover .founder-name {
    color: var(--ppg-golden);
}

.founder-card:hover .founder-role {
    color: #fff;
}

.founder-card:hover .social-icons a i {
    color: #fff;
}

/* Image Wrapper */
.founder-img-wrapper {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Image */
.founder-img-wrapper img {
    width: 100%;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.founder-card:hover .founder-img-wrapper img {
    transform: scale(1.08);
}

/* Arrow Button */
.arrow-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ppg-light-green);
    color: var(--ppg-title-color);
    width: 42px;
    height: 42px;
    border-radius: 28%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Show arrow on hover */
.founder-card:hover .arrow-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Name */
.founder-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--ppg-title-color);
}

/* Role */
.founder-role {
    font-size: 16px;
    color: var(--ppg-deep-green);
}

/* Social Icons */
.social-icons a {
    color: var(--ppg-title-color);
    font-size: 18px;
    margin-left: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--ppg-golden);
}

/* ===============================
   SECTION BACKGROUND
================================ */
.ppg-leadership-section {
    background: url(../images/brwn-wood-bg.png) no-repeat center center / cover;
    padding: 30px 0;
    color: #fff;
}

/* Title */
.ppg-leadership-sub {
    font-size: 14px;
    color: var(--ppg-light-green);
    text-align: center;
    margin-bottom: 8px;
}

.ppg-leadership-title {

    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

/* ===============================
   CARD ROW
================================ */
.ppg-leader-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    margin-bottom: 25px;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

/* Arrow circle */
.ppg-leader-arrow {
    width: 45px;
    height: 45px;
    background: var(--ppg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ppg-leader-arrow i {
    color: var(--ppg-deep-green);
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

/* ===============================
   HOVER EFFECT
================================ */
.ppg-leader-row:hover {
    background: #ffffff;
    color: var(--ppg-title-color);
}

.ppg-leader-row:hover .ppg-leader-name,
.ppg-leader-row:hover .ppg-leader-role {
    color: var(--ppg-title-color);
}

.ppg-leader-row:hover .ppg-leader-arrow {
    background: #ffffff;
    border: 1px solid var(--ppg-title-color);
}

.ppg-leader-row:hover .ppg-leader-arrow i {
    color: var(--ppg-title-color);
    transform: rotate(0deg);
}

.ppg-leader-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 25px;
}

.ppg-leader-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.ppg-leader-img img {
    border-radius: 10px;
}

.ppg-view-all {
    background: var(--ppg-light-green);
    border: none;
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 500;
    color: var(--ppg-deep-green);
    transition: 0.3s ease;
}

.ppg-view-all:hover {
    background: var(--ppg-deep-green);
    color: #fff;
}

/* ===============================
   SECTION
================================ */
.ppg-collab-section {
    background: var(--ppg-bg);
    padding: 30px 0;
    padding-left: 50px !important;
    padding-right: 50px !important;
}

/* Image block */
.ppg-collab-img {
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
}

.ppg-collab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card style */
.ppg-collab-card {
    height: fit-content;
    background: #EDE9DD;
    border-radius: 28px;
    padding: 45px 40px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ppg-collab-card h3 {

    font-size: 34px;
    color: var(--ppg-title-color);
    margin-bottom: 15px;
}

.ppg-collab-card p {
    font-size: 1rem;
    color: #3e3a33;
    line-height: 1.8;
}

.ppg-link {
    margin-top: 20px;
    font-weight: 500;
    text-decoration: none;
    color: var(--ppg-deep-green);
}

.ppg-link i {
    margin-left: 6px;
}

/* Top & Bottom Badge */
.ppg-badge-top {
    background: var(--dark-blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.ppg-badge-bottom {
    background: var(--ppg-title-color);
    color: #fff;
    padding: 12px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

/* Wrapper for middle alignment */
.ppg-collab-wrapper {
    position: relative;
}

.ppg-colab-crd {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

/* ===============================
   SECTION
================================ */
.ppg-affiliation-section {
    /* background: #E9E6DF; */
    padding: 90px 0;
    text-align: center;
}

/* Subtitle */
.ppg-affiliation-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-title-color);
    margin-bottom: 10px;
}

/* Title */
.ppg-affiliation-title {

    font-size: 42px;
    color: var(--ppg-title-color);
    margin-bottom: 60px;
}

/* Logos Row */
.ppg-affiliation-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

/* Logo */
.ppg-affiliation-logo img {
    max-height: 55px;
    opacity: 0.6;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

/* Hover */
.ppg-affiliation-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===============================
   COUNTER SECTION
================================ */
.ppg-counter-section {
    background-color: #f3e8ff !important;
    background-image: radial-gradient(at 10% 90%, hsla(252, 100%, 85%, 1) 0px, transparent 50%), radial-gradient(at 90% 20%, hsla(276, 85%, 90%, 1) 0px, transparent 50%), radial-gradient(at 50% 50%, hsla(315, 60%, 95%, 1) 0px, transparent 50%), radial-gradient(at 0% 0%, hsla(230, 50%, 92%, 1) 0px, transparent 50%) !important;
    padding: 30px 0;
}

/* Card */
.ppg-counter-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    color: #ffffff;
    height: 100%;
}

/* Big Number */
.ppg-counter-number {
    font-size: 64px;
    color: var(--ppg-title-color);
    margin-bottom: 20px;
}

/* Small top-right label */
.ppg-counter-label {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--ppg-title-color);
    font-weight: 500;
}

/* Description */
.ppg-counter-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--ppg-para-color);
}

/* Section wrapper */
.ppg-stack-wrapper {
    background: var(--ppg-bg);
    padding: 30px 0;
}

/* Each Stack Card */
.ppg-stack-card {
    text-align: center;
    position: sticky;
    top: 120px;
    /* controls stacking offset */
    margin-bottom: 80px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ppg-deep-green);
    color: #ffffff;
    min-height: 500px;
    display: flex;
}

.ppg-stack-card1 .ppg-stack-left {
    background: #004737;
}

.ppg-stack-card2 .ppg-stack-left {
    background: #003328;
}

.ppg-stack-card3 .ppg-stack-left {
    background: #001c16;
}

/* Left Content */
.ppg-stack-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ppg-stack-left h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
}

.ppg-stack-btn {
    margin: auto;
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
    padding: 10px 28px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.ppg-stack-subtitle {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
}

.ppg-stack-desc {
    text-align: center !important;
    font-size: 1.2rem;
    max-width: 420px;
    opacity: 0.9;
    line-height: 1.7;
    margin: auto;
}

.ppg-stack-stats {
    margin-top: 20px;
    font-weight: 500;
}

/* Right Image */
.ppg-stack-right {
    flex: 1;
}

.ppg-stack-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
  SUPPORT SECTION
================================ */
.ppg-support-section {
    /* background: url(../images/brwn-wood-bg.png); */
    /* background: var(--blue-grad); */
    background: #003263;
    padding: 30px 0;
    color: #ffffff;
    position: relative;
}

.ppg-support-section a.ppg-support-btn.lime-btn {
    background: var(--ppg-light-green) !important;
    color: var(--ppg-title-color) !important;
}

.ppg-support-section a.ppg-support-btn.lime-btn:hover {
    background: var(--ppg-prple) !important;
    color: var(--ppg-title-color) !important;
}

.ppg-support-section a.ppg-support-btn.lime-btn:hover i {
    background: var(--ppg-blue-new) !important;
    color: var(--ppg-bg) !important;
}

/* Top small label */
.ppg-support-subtitle {
    color: var(--ppg-golden);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Main title */
.ppg-support-title {
    color: var(--ppg-title-color) !important;
    font-size: 42px;
    margin-bottom: 20px;
}

/* Description */
.ppg-support-desc {
    color: var(--ppg-title-color) !important;
    max-width: 600px;
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Button */
/* .ppg-support-btn {
    position: absolute;
    top: 50px;
    right: 15%;
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
} */

/* Cards */
.ppg-support-card {
    border-radius: 18px;
    padding: 28px;
    background: #ECECEC;
    color: var(--ppg-title-color);
    height: 100%;
}

.ppg-support-card h5 {
    font-size: 1.6rem !important;
    margin-bottom: 15px;
}



.ppg-support-card p {
    margin-bottom: 0px;
    font-size: 1.1rem !important;
    line-height: 1.7;
}

/* Active first card */
.ppg-support-card.active {
    background-color: #f3e8ff !important;
    background-image: radial-gradient(at 10% 90%, hsla(252, 100%, 85%, 1) 0px, transparent 50%), radial-gradient(at 90% 20%, hsla(276, 85%, 90%, 1) 0px, transparent 50%), radial-gradient(at 50% 50%, hsla(315, 60%, 95%, 1) 0px, transparent 50%), radial-gradient(at 0% 0%, hsla(230, 50%, 92%, 1) 0px, transparent 50%) !important;
    color: var(--ppg-title-color) !important;
}

/* ===============================
   RESOURCE SECTION
================================ */
.ppg-knowledge-section {
    background: url(../images/light-wood-bg.png);
    padding: 30px 0;
}

/* Left Image */
.ppg-knowledge-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    height: 80vh;
}

.ppg-knowledge-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Stats */
.ppg-knowledge-stats {
    margin: auto;
    width: fit-content;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: linear-gradient(90deg, rgba(37, 61, 3, 0.95), rgba(20, 90, 50, 0.9));
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    gap: 30px;
}

.ppg-stat-number {

    font-size: 32px;
    color: var(--ppg-golden);
}

.ppg-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* Right Content */
.ppg-knowledge-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-title-color);
}

.ppg-knowledge-title {

    font-size: 40px;
    margin-bottom: 30px;
    color: var(--ppg-title-color);
}

/* Resource Card */
.ppg-resource-card {
    background: #EDEDED;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.ppg-resource-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ppg-pdf-icon {
    width: 35px;
    height: 35px;
    background: #F44336;
    border-radius: 6px;
    font-size: 11px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.ppg-resource-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ppg-title-color);
}

.ppg-resource-date {
    font-size: 1rem;
    color: #6d6d6d;

}

/* Arrow */
.ppg-resource-arrow {
    width: 38px;
    height: 38px;
    background: var(--ppg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppg-resource-arrow i {
    color: var(--ppg-deep-green);
}

/* Hover */
.ppg-resource-card:hover {
    transform: translateY(-3px);
}

/* ===============================
   EVENTS SECTION
================================ */
.ppg-events-section {
    background: var(--ppg-bg);
    padding: 30px 0;
    text-align: center;
}

/* Subtitle */
.ppg-events-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-title-color);
}

/* Title */
.ppg-events-title {

    font-size: 42px;
    margin: 10px 0 20px;
    color: var(--ppg-title-color);
}

.ppg-events-desc {
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 14px;
    color: #4a3d2c;
}

/* Event Card */
.ppg-event-card {
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    text-align: left;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
}

.ppg-event-card:hover {
    transform: translateY(-5px);
}

/* Overlay */
.ppg-event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}

.ppg-event-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.ppg-event-badge {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 1;
}

.ppg-event-date {
    font-size: 12px;
    opacity: 0.9;
    margin-left: 10px;
}

.ppg-event-title {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}

.ppg-event-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Button */
.ppg-event-btn {
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
}



/* View All */
.ppg-view-btn {
    margin-top: 50px;
    display: inline-block;
    background: var(--ppg-light-green);
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--ppg-deep-green);
}









/* ===============================
   EVENTS SECTION slide
================================ */
.ppg-news-section {
    background: var(--ppg-bg);
    padding: 30px 0;
    text-align: center;
}

/* Title */
.ppg-news-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-title-color);
    margin-bottom: 0px !important;
}

.ppg-news-title {

    font-size: 42px;
    margin: 10px 0 20px;
    color: var(--ppg-title-color);
}

.ppg-news-desc {
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 14px;
    color: #4a3d2c;
}

/* Card */
.ppg-news-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    text-align: left;
    transition: all 0.35s ease;
}

.no-gap-slider .ppg-news-card {
    border-radius: 0px !important;
}

.no-gap-slider .ppg-blog-slider {
    padding: 0px !important;
}

/* Image */
.ppg-news-img {
    position: relative;
    overflow: hidden;
}

.ppg-news-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Arrow */
.ppg-news-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: var(--ppg-golden);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppg-news-arrow i {
    color: var(--ppg-deep-green);
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.ppg-news-arrow:hover i {
    transform: rotate(0deg);
}

/* Content */
.ppg-news-content {
    padding: 20px;
}

.ppg-news-badge {
    line-height: 1;
    height: fit-content;
    background: var(--ppg-golden);
    font-size: 11px;
    padding: 8px 10px;
    border-radius: 15px;
    display: inline-block;
    color: var(--ppg-title-color);
}

.ppg-news-date {
    font-size: 12px;
    float: right;
    color: var(--ppg-title-color);
}

.ppg-news-heading {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ppg-title-color);
}

/* Hover Effect */
.ppg-news-card:hover {
    background: #003263;
    color: #ffffff;
}

.ppg-news-card:hover .ppg-news-heading,
.ppg-news-card:hover .ppg-news-date {
    color: #ffffff;
}

.ppg-news-card:hover .ppg-news-img img {
    transform: scale(1.05);
}

/* View All */
.ppg-news-view {
    margin-top: 50px;
    display: inline-block;
    background: var(--ppg-light-green);
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--ppg-deep-green);
}

/* Remove bootstrap row spacing conflict */
.ppg-news-slider .col-lg-4 {
    padding: 0 12px;
}

/* Arrow Base */
/* .ppg-prev,
.ppg-next {
    position: absolute;
    top: -70px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #C7F08E; 
    color: #253D03;
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.swiper .ppg-prev,
.swiper .ppg-next {
    position: absolute;
    top: 65px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #C7F08E;
    color: #253D03;
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
} */
.full-width-slider .swiper .ppg-prev,
.full-width-slider .swiper .ppg-next {
    position: absolute;
    top: 65px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--ppg-title-color);
    /* background: #d4d5ff; */
    background: transparent;
    /* your lime */

    color: var(--ppg-title-color);
    font-size: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.full-width-slider .swiper .ppg-prev :hover,
.full-width-slider .swiper .ppg-next :hover {
    background: var(--ppg-light-green);
    color: var(--ppg-title-color);
}


/* Position */
.ppg-prev {
    right: 60px;
}

.ppg-next {
    right: 0;
}

.full-width-slider .ppg-prev {
    right: 60px;
    left: 92%;
}

.full-width-slider .ppg-next {
    right: 0;
}

/* Hover */
.ppg-prev:hover,
.ppg-next:hover {
    background: var(--ppg-light-green) !important;
    color: var(--ppg-title-color) !important;
}

/* Remove default slick arrow */
.slick-prev:before,
.slick-next:before {
    display: none;
}

/* ===============================
   IMPACT SECTION
================================ */
.ppg-impact-section {
    /* background: #050315; */
    background: #003263;
    padding: 90px 0;
    border-radius: 30px;
    color: #ffffff;
    margin: 50px;
}

.ppg-impact-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.ppg-impact-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

.ppg-impact-btn {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

/* Counter */
.ppg-impact-counter {
    text-align: left;
    padding: 20px 0;
}

.ppg-impact-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--ppg-golden);
}

.ppg-impact-label {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

/* Divider */
.ppg-impact-divider {
    border-left: 1px solid rgb(255 255 255 / 82%);
    padding-left: 30px;
}

/* Bottom Description */
.ppg-impact-desc {
    margin-top: 40px;
    font-size: 1.1rem;
    opacity: 0.85;
}


/* ===============================
   Contact SECTION
================================ */
.ppg-contact-section {
    background: var(--ppg-bg);
    padding: 30px 0;
}

/* Left Image */
.ppg-contact-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    flex: 1;
    height: 80vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.ppg-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact overlay info */
.ppg-contact-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
    font-size: 1.2rem;
}

.ppg-contact-info div {
    margin-bottom: 10px;
}

/* Right Form Wrapper */
.ppg-contact-form-wrapper {
    margin: auto;
    width: 80%;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
}

/* Title */
.ppg-contact-sub {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-title-color);
}

.ppg-contact-title {
    text-align: center;
    font-size: 40px;
    color: var(--ppg-title-color);
    margin-bottom: 30px;
}

/* Form Fields */
.ppg-contact-form label {
    font-size: 13px;
    margin-bottom: 6px;
}

.ppg-contact-form .form-control,
.ppg-contact-form .form-select {
    border-radius: 12px;
    border: none;
    padding: 12px 15px;
    background: #E2E2E2;
    font-size: 14px;
}

.ppg-contact-form textarea {
    min-height: 130px;
}

/* Submit Button */
.ppg-contact-btn {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
    padding: 10px 51px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    margin-top: 15px;
    font-size: 1.1rem;
}



/* ===============================
   FOOTER
================================ */
.ppg-footer {
    background: linear-gradient(135deg, #0B5D45, #1F4D1E);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
}

/* Logo */
.ppg-footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.ppg-footer-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* QR */
.ppg-footer-qr-wrapper {
    display: flex;
    gap: 15px;
}

.ppg-footer-qr {
    gap: 8px;
    line-height: 1.5;
    max-width: 100px !important;
    display: flex;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    color: var(--ppg-title-color);
    font-size: 12px;
    flex-direction: column;
}

.ppg-footer-qr img {
    width: auto;
}

/* Headings */
.ppg-footer h5 {
    color: #fff;
    font-size: 1.2rem;
    /* font-size: 16px; */
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

/* Links */
.ppg-footer ul {
    list-style: none;
    padding: 0;
}

.ppg-footer ul li {
    margin-bottom: 8px;
}

.ppg-footer ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
}

.ppg-footer ul li a:hover {
    opacity: 1;
}

/* Working Hours */
.ppg-footer p {
    font-size: 14px;
    margin-bottom: 6px;
    opacity: 0.9;
}

/* Subscribe */
.ppg-footer-subscribe {
    margin: 50px auto 40px;
    max-width: 500px;
    display: flex;
    background: #EDE9E3;
    border-radius: 40px;
    padding: 8px;
    margin-top: 0px;
}

.ppg-footer-subscribe input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px 15px;
    outline: none;
}

.ppg-footer-subscribe button {
    background: var(--ppg-deep-green);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}

.ppg-footer-subscribe button:hover {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
}

/* Bottom */
.ppg-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ===============================
   MEMBER HERO SECTION
================================ */

.ppg-member-hero {
    padding: 60px 0;
    background: var(--ppg-bg);
}

.ppg-member-box {
    background: linear-gradient(rgba(37, 61, 3, 0.9),
            rgba(37, 61, 3, 0.9)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 60px 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    color: #fff;
}

/* Badge */
.ppg-member-badge {
    color: var(--ppg-light-green);
    font-size: 14px;
    font-style: italic;
    display: inline-block;
    margin-bottom: 12px;
}

/* Title */
.ppg-member-title {

    font-size: 46px;
    margin-bottom: 15px;
}

/* Description */
.ppg-member-desc {
    max-width: 600px;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Buttons */
.ppg-member-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.ppg-member-btn {
    background: #f1f1f1;
    color: var(--ppg-title-color);
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.ppg-member-btn:hover {
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
}

.ppg-member-btn.active {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
}

/* Right Icon */
.ppg-member-icon {
    position: absolute;
    right: 40px;
    top: 40px;
    background: var(--ppg-light-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /* display: flex; */
    display: none;
    align-items: center;
    justify-content: center;
}

.ppg-member-icon i {
    color: var(--ppg-deep-green);
    font-size: 18px;
}

.ppg-contact-section {
    background: var(--ppg-bg);
    padding: 30px 0;
}

.ppg-contact-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* .ppg-contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
} */

/* LEFT SIDE */
.ppg-contact-left {}

.ppg-mini-title {
    font-size: 14px;
    font-style: italic;
    color: var(--ppg-deep-green);
    display: block;
    margin-bottom: 10px;
}

.ppg-main-title {

    font-size: 48px;
    color: var(--ppg-title-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.ppg-description {
    color: var(--ppg-title-color);
    line-height: 1.7;
    font-size: 15px;
    max-width: 500px;
}

.ppg-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 25px;
    color: var(--ppg-title-color);
}

.ppg-feature-grid h4 {

    color: var(--ppg-title-color);
}

.ppg-sub-title {

    font-size: 32px;
    margin-top: 10px;
    color: var(--ppg-title-color);
}

.mt-60 {
    margin-top: 60px;
}

/* RIGHT SIDE STICKY */
.ppg-contact-right {
    position: relative;
}

.ppg-form-box {
    position: sticky;
    top: 50px;
    background: transparent;
}

.ppg-form-title {

    font-size: 36px;
    margin-bottom: 30px;
    color: var(--ppg-title-color);
}

.ppg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 0;
    padding-left: 20px;
    border-radius: 10px;
    border: none;
    background: #fff;
    font-size: 14px;
}

textarea {
    min-height: 140px;
    margin-bottom: 25px;
    resize: none;
}

.ppg-submit-btn {
    background: var(--ppg-light-green);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--ppg-deep-green);
    cursor: pointer;
    display: block;
    margin: auto;
    transition: 0.3s;
}

.ppg-submit-btn:hover {
    background: var(--ppg-deep-green);
    color: #fff;
}

.ppg-contact-link {
    color: var(--ppg-title-color);
}

.ppg-contact-link a {
    color: var(--ppg-title-color);
}

.ppg-contact-link a:hover {
    text-decoration: underline;

}

/* SECTION */
.ppg-md-section {
    background: var(--ppg-bg);
    padding: 30px 0;
}

.ppg-md-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.ppg-md-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* CARD */
.ppg-md-card {
    background: #ded9ce;
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.ppg-md-title {
    font-size: 32px;
    color: var(--ppg-title-color);
    margin-bottom: 20px;
}

/* QUOTE */
.ppg-md-quote {
    font-size: 60px;
    color: var(--ppg-title-color);
    line-height: 1;
    margin-bottom: 20px;
}

/* TEXT */
.ppg-md-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ppg-title-color);
}

/* SECTION */
/* .ppg-impact-section {
    background: var(--ppg-bg);
    padding: 60px 0;
} */

/* BOX */
.ppg-impact-box {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    padding: 50px 60px;
    border-radius: 20px;

    background:
        linear-gradient(rgba(61, 34, 5, 0.85), rgba(61, 34, 5, 0.85)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    color: #fff;
}

/* LEFT CONTENT */
.ppg-impact-label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.ppg-impact-title {
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
}

/* BUTTON */
.ppg-impact-btn {
    height: fit-content;
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.skip-btn-wrpr .ppg-about-btn {
    margin-top: 0px !important;
}

.skip-btn-wrpr {}

.ppg-impact-btn:hover {
    background: var(--ppg-golden);
}

/* SECTION */
.ppg-impact-wood-section {
    background: var(--ppg-bg);
    padding: 30px 0;
}

/* WRAPPER */
.ppg-impact-wood {
    position: relative;
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

/* WOOD IMAGE */
.ppg-wood-bg {
    width: 100%;
    display: block;
}

/* CONTENT OVER IMAGE */
.ppg-wood-content {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    color: #fff;
}

/* TITLE */
.ppg-wood-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.3;
    margin: 0;
}

/* BUTTON */
.ppg-wood-btn {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.ppg-wood-btn:hover {
    background: #e6a800;
}


/* --------------
ppg footer cta2
--------------- */
.ppg-hero-movement {
    position: relative;
    min-height: 50vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ftr-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    overflow: hidden;
}

/* DARK OVERLAY */
.ppg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.ppg-hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
}

/* HEADING */
.ppg-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 35px;
    font-weight: 500;
}

/* BUTTON WRAPPER */
.ppg-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* GREEN BUTTON */
.ppg-btn-green {
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.ppg-btn-green:hover {
    background: var(--ppg-deep-green);
    color: #fff;
}

/* WHITE BUTTON */
.ppg-btn-white {
    background: #fff;
    color: var(--ppg-deep-green);
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.ppg-btn-white:hover {
    background: var(--ppg-golden);
    color: var(--ppg-title-color);
}

/* Section */
.ppg-gallery-section {
    padding: 30px 0;
    background: url(../images/gal-bg.png) center/cover no-repeat;
    text-align: center;
}

/* Container */
.ppg-container {
    width: 90%;
    margin: auto;
}

/* Title */
.ppg-gallery-title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #3b2f2f;
    font-family: serif;
}

/* Grid */
.ppg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Item */
.ppg-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Wrapper */
.ppg-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Image */
.ppg-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* Overlay */
.ppg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    color: #fff;
    font-size: 18px;
    transition: opacity 0.4s ease;
}

/* Zoom Button */
.ppg-zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e2e2e;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Effects */
.ppg-gallery-item:hover img {
    transform: scale(1.08);
}

.ppg-gallery-item:hover .ppg-overlay {
    opacity: 0;
}

.ppg-gallery-item:hover .ppg-zoom-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   ppg CONTACT PAGE STYLES
=================================*/

.ppg-hero {
    background: linear-gradient(135deg, #0f3d2e, #0b2e22);
    color: #fff;
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.ppg-hero small {
    color: #d4af37;
    letter-spacing: 2px;
    font-weight: 600;
}

.ppg-hero h1 {
    font-weight: 600;
    font-size: 48px;
}

.ppg-info-section {
    background: #eef3ee;
    padding: 30px 0;
}

.ppg-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* HOVER EFFECT */
.prestoplast-hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ACTIVATE GLOW */
.prestoplast-hover-card:hover::before {
    opacity: 0.08;
}

/* ICON ANIMATION */
.prestoplast-hover-card .ppg-icon-box {
    transition: 0.35s ease;
}

.prestoplast-hover-card:hover .ppg-icon-box {
    transform: scale(1.1) rotate(3deg);
}

/* TITLE */
.prestoplast-hover-card h5 {
    transition: 0.3s;
}

.prestoplast-hover-card:hover h5 {
    color: #253D03;
    /* deep green */
}

/* TEXT */
.prestoplast-hover-card p {
    transition: 0.3s;
}

.prestoplast-hover-card:hover p {
    color: #333;
}

.ppg-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--ppg-deep-green);
    background: var(--ppg-golden) !important;

}

.ppg-info-card h5 {
    color: var(--ppg-title-color) !important;
    font-size: 2rem !important;
}

.ppg-info-card p {
    color: var(--ppg-title-color) !important;
    font-size: 1.2rem !important;
}

.ppg-icon-yellow {
    background: #d4af37;
}

.ppg-icon-green {
    background: #1d4b3a;
}

.ppg-map {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.ppg-map iframe {
    width: 100%;
    height: 400px;
}

.ppg-booking-section {
    background: #eef3ee;
    padding: 30px 0;
}

.ppg-booking-title small {
    color: #1d4b3a;
    letter-spacing: 2px;
    font-weight: 600;
}

.ppg-booking-title h2 {
    font-size: 42px;
    font-weight: 600;
}

.ppg-booking-img img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ppg-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ppg-btn {
    background: #d4af37;
    color: var(--ppg-title-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
}

.ppg-btn:hover {
    background: #c19d2f;
}


/* ==========================
   ppg ABOUT PAGE SECTION
========================== */

.ppg-about-pg-section {
    background: url(../images/brwn-wood-bg.png);
    padding: 100px 0;
    color: var(--ppg-light-green);
    position: relative;
    overflow: hidden;
}

/* Sub titles */
.ppg-about-pg-small-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--ppg-light-green);
    margin-bottom: 10px;
}

/* Main heading */
.ppg-about-pg-heading {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--ppg-golden);
}

/* Image styling */
.ppg-about-pg-img-wrapper {
    background: #e6e6e6;
    padding: 12px;
    border-radius: 24px;
    display: inline-block;
}

.ppg-about-pg-img img {
    border-radius: 20px;
    display: block;
}

/* Mission box */
.ppg-about-pg-mission-box h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #ffffff;
}

.ppg-about-pg-mission-box p {
    font-size: 14px;
    color: #fff;
    margin-top: 8px;
}

.ppg-about-pg-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--ppg-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ppg-light-green);
    font-size: 20px;
}

/* Button */
.ppg-about-pg-btn {
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.ppg-about-pg-btn:hover {
    background: var(--ppg-light-green);
    color: var(--ppg-deep-green);
}

.ppg-about-pg-sticky {
    position: sticky;
    top: 100px;
}



/* ===========
Counter Section
========== */
.ppg-cntr-section {
    background-color: var(--ppg-deep-green);
    padding: 60px 20px;
}

.ppg-cntr-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.ppg-cntr-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    width: 300px;
    color: #fff;
}

.ppg-cntr-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--ppg-light-green);
}

.ppg-cntr-label {
    font-size: 16px;
    margin-top: 5px;
    color: var(--ppg-golden);
}

.ppg-cntr-desc {
    font-size: 14px;
    margin-top: 10px;
    color: #e5e5e5;
}

/* =======FAQ========= */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.faq-question .icon {
    transition: transform 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-answer p {
    margin: 10px 0;
}

/* .faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 0;
} */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    padding: 10px 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(180deg);
    content: "–";
}

section.ppg-abt-img {
    height: 50vh;
}


/* Default State */
.ppg-navbar-wrapper {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Sticky State */
.ppg-navbar-wrapper.ppg-sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFDF4;
    /* your ppg bg */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Prevent content jump */
body.ppg-navbar-active {
    padding-top: 90px;
    /* Adjust according to navbar height */
}

/* Layout */
.blog-section {
    padding: 60px 40px;
    background: #f4f4f4;
}

.blog-grid {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
}

/* Card */
.blog-card {
    cursor: pointer;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.blog-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

/* Subtle zoom */
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

/* Hover Arrow */
.hover-arrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: var(--ppg-light-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.hover-arrow span {
    font-size: 28px;
    color: white;
    font-weight: 400;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* SHOW BOX ON HOVER */
.blog-card:hover .hover-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ROTATE ARROW -45deg ON HOVER */
.blog-card:hover .hover-arrow span {
    transform: rotate(-45deg);
}

/* Content */
.blog-meta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-tag {
    padding: 6px 14px;
    border: 1px solid #b8c8c2;
    border-radius: 30px;
    font-size: 14px;
    /* color: #4f6f60; */
    color: var(--ppg-deep-green);
}

.blog-date {
    font-size: 14px;
    /* color: #6b6b6b; */
    color: var(--ppg-title-color);
}

.blog-title {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--ppg-title-color);
}



.ppg-event-sing-section .ppg-event-page {
    background: var(--ppg-bg);
    padding: 80px 0;
}

/* Left Content */
.ppg-event-sing-section .ppg-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--ppg-title-color);
    margin-bottom: 20px;
}

.ppg-event-sing-section .ppg-sub-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--ppg-title-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.ppg-event-sing-section .ppg-text {
    color: var(--ppg-title-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ppg-event-image {
    height: 50vh;
}

.ppg-event-sing-section .ppg-event-image img {
    height: stretch;
    width: 100%;
    border-radius: 20px;
    margin: 30px 0;
    object-fit: cover;
}

/* Highlight box */
.ppg-event-sing-section .ppg-highlight-box {
    background: var(--ppg-light-green);
    border-left: 5px solid var(--ppg-dark);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    color: var(--ppg-title-color);
}

/* Sidebar */
.ppg-event-sing-section .ppg-event-sidebar {
    position: sticky;
    top: 100px;
    /* Adjust based on navbar height */
}

/* Card */
.ppg-event-sing-section .ppg-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 25px;
    border: 1px solid var(--ppg-light-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.ppg-event-sing-section .ppg-card-title {
    font-weight: 600;
    color: var(--ppg-title-color);
    margin-bottom: 20px;
}

/* Detail Items */
.ppg-event-sing-section .ppg-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--ppg-title-color);
}

.ppg-event-sing-section .ppg-detail-item i {
    color: var(--ppg-gold);
}

/* Input */
.ppg-event-sing-section .ppg-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.ppg-event-sing-section .ppg-input:focus {
    border-color: var(--ppg-dark);
    outline: none;
}

/* Button */
.ppg-event-sing-section .ppg-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: var(--ppg-dark);
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.ppg-event-sing-section .ppg-btn:hover {
    background: var(--ppg-title);
}

/* Social */
.ppg-event-sing-section .ppg-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--ppg-light);
    color: var(--ppg-title-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.ppg-event-sing-section .ppg-socials a:hover {
    background: var(--ppg-deep-green);
    color: white;
}

/* ===============================
   ppg EVENT HERO
=================================*/

.ppg-event-hero {
    position: relative;
    height: 600px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    background: url('../images/intro-img.png') center/cover no-repeat;
}

/* Dark Gradient Overlay */
.ppg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(37, 61, 3, 0.85) 0%,
            rgba(37, 61, 3, 0.75) 35%,
            rgba(37, 61, 3, 0.4) 70%,
            rgba(37, 61, 3, 0.15) 100%);
}

/* Content */
.ppg-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 0px;
    max-width: 800px;
}

/* Badge */
.ppg-hero-badge {
    display: inline-block;
    background: rgba(199, 240, 142, 0.2);
    color: var(--ppg-bg);
    padding: 2px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(199, 240, 142, 0.5);
}

/* Title */
.ppg-hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ppg-title-color);
}


.ppg-event-sidebar .ppg-card button.ppg-btn.lime-btn {
    margin: 0px !important;
}

/* top close section */
.top-close-sec {
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ppg-hero-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #253D03;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 1000;
}

.ppg-hide {
    opacity: 0;
    transform: translateY(-20px);
}

.top-close-sec {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.top-close-sec.hide-hero {
    opacity: 0;
    visibility: hidden;
}


/* New Footer */
.ppg-footer {
    background: linear-gradient(135deg, #0f2f1c, #174c2e);
    color: #FFFDF4;
    padding-top: 50px;
    padding-bottom: 0px !important;
}

.ppg-footer-logo {
    font-weight: 700;
    color: #C7F08E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppg-logo-dot {
    width: 14px;
    height: 14px;
    background: #FFBB1A;
    border-radius: 50%;
    display: inline-block;
}

.ppg-footer-desc {
    max-width: 450px;
    opacity: 0.8;
    margin: 15px 0 20px;
}

.ppg-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #FFFDF4;
    transition: 0.3s;
}

.ppg-social-icons a:hover {
    background: #FFBB1A;
    color: #253D03;
}

.ppg-news-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.ppg-news-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #FFFDF4;
    border-radius: 6px 0 0 6px;
    outline: none;
    width: 280px;
}

.ppg-news-form button {
    padding: 12px 20px;
    border: none;
    background: #FFBB1A;
    color: #253D03;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    transition: 0.3s;
}

.ppg-news-form button:hover {
    background: #C7F08E;
}

.ppg-divider {
    border-color: rgba(255, 255, 255, 0.411);
    margin: 50px 0;
    margin-top: 0px !important;
}

.ppg-footer-links h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

.ppg-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppg-footer-links li {
    margin-bottom: 10px;
}

.ppg-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.ppg-footer-links a:hover {
    color: #FFBB1A;
}

.ppg-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 10px;
}

.ppg-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s;
    font-size: 1rem;
}

.ppg-footer-bottom-links a:hover {
    color: #FFBB1A;
}

.copyright {
    font-size: 1rem !important;
}




.ppg-navbar-wrapper {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.ppg-navbar-wrapper.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    /* change if needed */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;

    animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* New nav */

/* Professional Navbar Styling */
.navbar {
    background: #ffffff;
    /* padding: 15px 20px; */
    border: 2px solid #e0e6ed;
    /* Full border with professional light gray */
    border-radius: 99px;
    /* Slight rounding for modern look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: all 0.3s ease;
    margin: 10px;
    /* Space from edges */
}

.navbar-scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* .navbar-brand {
            color: #2c3e50 !important;
            font-weight: 700;
            font-size: 1.6rem;
            transition: color 0.3s ease;
        } */
.navbar-brand {
    right: 25%;
    position: relative;
    color: #2c3e50 !important;
    font-weight: 700;
    font-size: 1.6rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: #3498db !important;
    /* Blue hover effect */
}

.nav-link {
    color: #34495e !important;
    font-weight: 500;
    /* padding: 10px 15px !important; */
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3498db !important;
    /* Professional blue on hover */
}

.nav-link.active {
    color: #3498db !important;
    position: relative;
}

.nav-link.active::after {
    display: none;
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: #3498db;
}

/* Mega Menu Styling */
.mega-menu {
    width: 100%;
    left: 0;
    padding: 20px;
    border: 1px solid #e0e6ed;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mega-menu h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
}

.mega-menu .dropdown-item {
    padding: 8px 15px;
    color: #34495e;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mega-menu .dropdown-item i {
    margin-right: 10px;
    color: #3498db;
}

.mega-menu .dropdown-item:hover {
    background: #f5f7fa;
    color: #3498db;
}

/* Dropdown Styling */
.dropdown-menu {
    border: 1px solid #e0e6ed;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: #34495e;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f5f7fa;
    color: #3498db;
}

/* CTA Buttons */
.btn-cta {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary.btn-cta {
    background: #3498db;
    border-color: #3498db;
}

.btn-primary.btn-cta:hover {
    background: #2980b9;
    border-color: #2980b9;
}

.btn-success.btn-cta {
    background: #27ae60;
    border-color: #27ae60;
}

.btn-success.btn-cta:hover {
    background: #219653;
    border-color: #219653;
}

/* Parent */
.zr-mega-dropdown {
    position: relative;
}

/* Arrow */
.zr-arrow::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    margin-left: 6px;
}

/* Mega Box */
.zr-mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    width: 900px;
    background: #f3efe6;
    padding: 40px 50px;
    border-radius: 16px;
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

/* Show on hover */
.zr-mega-dropdown:hover .zr-mega-menu {
    display: block;
}

/* Columns */
.zr-mega-col h5 {
    font-family: serif;
    font-size: 22px;
    color: #0f4d3f;
    margin-bottom: 20px;
}

.zr-mega-col a {
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
    color: #0f4d3f;
    font-size: 16px;
    transition: 0.2s;
}

.zr-mega-col a:hover {
    text-decoration: underline;
}

/* Highlight link */
.zr-highlight {
    font-weight: 600;
}

@media (min-width: 992px) {}

ul.navbar-nav.me-auto.mb-2.mb-lg-0.ppg-nav-links {
    margin: 0px !important;
    width: fit-content;
}

/* Make container relative */
.ppg-nav-box {
    position: relative;
}

/* Absolute true center logo */
.ppg-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.navbar .navbar-nav .nav-link {
    /* padding: 10px 20px; */
    font-size: 16px;
    line-height: 20px;
    padding: 23px 20px !important;
    position: relative;
    font-weight: 500;
    opacity: 1;
    word-break: normal;
    -webkit-transition: .3s;
    transition: .3s;
    color: var(--white);
}

.gallery-page-sec {
    padding: 50px 0 !important;
    /* background: url(../images/gal-bg.png)  !important; */
    background-repeat: no-repeat !important;
    text-align: center !important;
}

.gallery-page-sec .ppg-gallery-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    max-height: 80vh;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}


/* =============
    ppg testimonial PAGE
================ */
.ppg-testimonial-section {
    padding: 80px 0;
    background: #FFFDF4;
}

.ppg-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #3D2205;
}

.ppg-testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s ease;
    height: 100%;
}

.ppg-testimonial-card:hover {
    border-color: #C7F08E;
    transform: translateY(-5px);
}

.ppg-testimonial-card h5 {
    font-size: 1.6rem;
    color: var(--ppg-deep-green);
    margin-bottom: 15px;
}

.ppg-testimonial-card p {
    font-size: 14px;
    color: var(--ppg-title-color);
    line-height: 1.6;
}

.ppg-author {
    margin-top: 15px;
}

.ppg-author strong {
    font-size: 1.2rem;
    color: var(--ppg-deep-green);
}

.ppg-author span {
    display: block;
    font-size: 1rem;
    color: var(--ppg-title-color);
}

.ppg-stars {
    margin-top: 10px;
    color: #FFBB1A;
}

.intro-section .ppg-hero-title {
    color: #fff !important;

}

.intro-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    top: -140px;
    z-index: -999;
    padding-bottom: 50px;
}

.nav-link .fa-house {
    font-size: 20px !important;
}

/* .nav-item.active .nav-link .fa-house{

    opacity: 1 !important;
} */

.navbar .navbar-nav .nav-item .nav-link.active,
.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-item:hover .nav-link {
    opacity: 1 !important;
    color: var(--ppg-deep-green) !important;
}



/* blog slider */
.ppg-blog-slider {
    padding: 40px 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #253D03;
}

.ppg-blog-slider a.ppg-news-view.lime-btn {
    width: fit-content;
    display: flex !important;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 25px !important;
}

.h-center {
    width: fit-content;
    display: flex !important;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* modal */
/* Modal Background */
/* .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #251800cf;
  justify-content: center;
  align-items: center;
} */

/* Modal Box */
.modal .modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    /* padding: 30px; */
    max-height: 80%;
}

/* Close Button */
.modal .close-btn {
    /* line-height: 0; */
    padding: 4px 10px;
    position: absolute;
    top: 35px;
    right: 40px;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
}

/* Layout */
.modal .contact-wrapper {
    display: flex;
    gap: 30px;
}

/* Left */
.modal .contact-left {
    flex: 1;
}

.modal .contact-left input,
.modal .contact-left textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}


.modal .contact-left textarea {
    height: 100px;
}

.modal .submit-btn {
    padding: 12px 20px;
    background: #0b4d3b;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

/* Right */
.modal .contact-right {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.img-wrpr {
    height: 100%;
}

.modal .contact-right img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
    object-fit: cover;
}

.modal .info-box {
    background: #f1f5f3;
    padding: 15px;
    border-radius: 12px;
}

.modal .contact-left h2 {
    color: var(--ppg-title-color);
    line-height: 1.4;
}

.input-wrpr {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.gst-num {
    color: #fff;
}

.ppg-faq-section {
    background: var(--ppg-bg);
}

.ppg-subtitle {
    color: var(--ppg-golden);
    font-weight: 600;
    letter-spacing: 1px;
}

.ppg-title {
    color: var(--ppg-title-color);
    font-weight: 700;
}

.ppg-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.ppg-faq-btn {
    font-weight: 600;
    color: var(--ppg-title-color);
    background-color: #ffffff;
}

.ppg-faq-btn:not(.collapsed) {
    background-color: #eaecff;
    color: var(--ppg-title-color);
    box-shadow: none;
}

.ppg-faq-btn:focus {
    box-shadow: none;
}

.accordion-body {
    background: #ffffff;
    color: var(--ppg-title-color);
}

button.accordion-button.ppg-faq-btn {
    font-size: 1.3rem;
}

.join-sec {
    margin: 50px;
    border-radius: 30px;
}

.ppg-shop-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.ppg-shop-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* HOVER EFFECT */
.ppg-shop-card:hover .ppg-shop-img img {
    transform: scale(1.1);
}

.ppg-search-toggle {
    font-size: 1rem !important;
    height: -webkit-fill-available;
    width: 36px;
    border: 1px solid #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================ New FAQ ================= */



.faq-section h2 {
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
}

.accordion-button::after {
    display: none !important;
    /* hide default arrow */
}

.accordion-button.collapsed .fa-minus {
    display: none;
}

.accordion-button:not(.collapsed) .fa-plus {
    display: none;
}

.faq-section .accordion-item {
    border: 0;
}

.accordion-button {
    font-size: 1.2rem !important;
}

.accordion-body {
    color: var(--ppg-para-color);
    font-weight: 500;
    font-size: 18px;
    padding-top: 0px !important;
}

.faq-section {
    padding: 60px 0;
    margin-top: 0px;
}

.faq-section .pol-about-title {
    margin-bottom: 25px;
}


.accordion-button::after {
    display: none !important;
    /* hide default arrow */
}

.accordion-button.collapsed .fa-minus {
    display: none;
}

.accordion-button:not(.collapsed) .fa-plus {
    display: none;
}

.faq-section .accordion-item {
    border: 0;
    margin-bottom: 25px;
}

.accordion-button {
    font-size: 1.2rem !important;
    line-height: 2rem;
}

.accordion-body {
    color: var(--ppg-para-color);
    font-weight: 500;
    font-size: 18px;
    padding-top: 10px !important;
}


.accordion-button:not(.collapsed) {
    color: var(--dark-blue) !important;
    background-color: #f3fbff !important;
    /* box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); */
}

.accordion-button:focus {
    border-color: transparent !important;
}

.faq-cta {
    background-color: #fff3e7 !important;
    color: var(--ppg-title-color) !important;
    border-radius: 100px !important;
    padding: 10px 20px !important;
}

.alert a {
    font-weight: 500;
    color: var(--ppg-title-color) !important;
    transition: transform 0.3s ease;
    text-decoration: underline;
}

.alert a:hover {
    transform: scale(1.05) !important;
    color: var(--dark-blue) !important;
}

.alert {
    background-color: #f3fbff !important;
    border-radius: 999px;
    padding: 14px 30px !important;
    text-align: center;
    width: fit-content;
}

/* CardS */
.ppg-shop-img {
        position: relative;
        overflow: hidden;
    }

    /* Header tabs & filter button styles */
    .psap-tabs {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .psap-tabs .psap-tab:hover {
        background: var(--blue-grad-bg);
        color: #fff;
        border-color: var(--dark-blue);
    }

    .psap-header {
        gap: 20px;
        margin-bottom: 25px;
    }

    .psap-tab.active {
        background: var(--blue-grad-bg);
        color: #fff;
        border-color: var(--dark-blue);
    }

    .psap-tab {
        padding: 8px 16px;
        border-radius: 30px;
        border: 1px solid #e5e5e5;
        background: #fff;
        font-size: 1rem;
        font-weight: 500;
        color: var(--ppg-title-color);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .psap-filter-btn {
        width: 40px;
        height: 40px;
        border: none;
        background: var(--blue-grad-bg);
        color: #fff;
        border-radius: 999px;
    }

    /* Brand badge positioned always in the top-right corner of the image */
    .ppg-brand-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 3;
    }

    .ppg-brand-badge-name {
        color: var(--dark-blue, #0073aa);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: #fff;
        padding: 6px 14px;
        border-radius: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        border: 1px solid #e5e5e5;
        display: inline-block;
    }
/* CardS */
.faq-search-wrapper {
    display: flex;
    justify-content: center;
}

.faq-search-box {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.faq-search-box i {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
}

.faq-search-box input {
    width: 100%;
    height: 46px;
    padding: 0 15px 0 38px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}


/* Hide scrollbar by default */
.scroll-h {
    height: 85vh;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    transition: all 0.4s ease-in-out;
}

/* Hide scrollbar (Chrome, Edge, Safari) */
.scroll-h::-webkit-scrollbar {
    width: 0px;
    transition: all 0.4s ease-in-out;
}

/* Show scrollbar on hover OR scroll */
.scroll-h:hover {
    scrollbar-width: thin;
    transition: all 0.4s ease-in-out;
}

.scroll-h:hover::-webkit-scrollbar {
    width: 6px;
    transition: all 0.4s ease-in-out;
}

.scroll-h:hover::-webkit-scrollbar-thumb {
    background: var(--pol-para);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

/* footer hero new design section */
.ppg-product-info {
    display: grid;
    gap: 20px;
}

.ppg-info-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    transition: 0.3s;
}

.ppg-info-item:hover {
    border-color: #3b6ef5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Title */
.ppg-info-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ppg-title-color);
    position: relative;
    padding-left: 14px;
}

/* small accent line */
.ppg-info-item h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 14px;
    background: var(--dark-blue);
    border-radius: 2px;
}

/* paragraph */
.ppg-info-item p {
    font-size: 14px;
    color: var(--ppg-para-color);
    line-height: 1.6;
    margin: 0;
}

/* bullet list */
.ppg-info-item ul {
    padding-left: 18px;
    margin: 0;
}

.ppg-info-item ul li {
    font-size: 1.1rem;
    color: var(--ppg-title-color);
    margin-bottom: 6px;
    position: relative;
}

/* custom bullet */
.ppg-info-item ul li::marker {
    color: var(--dark-blue);
}

.no-gap-slider-sec.full-width-slider .swiper .ppg-prev {
    display: none !important;
}

.no-gap-slider-sec.full-width-slider .swiper .ppg-next {
    display: none !important;
}

.ppg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.ppg-page {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.ppg-page:hover,
.ppg-page.active {
    background: var(--dark-blue);
    color: #fff;
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

.ppg-page.prev,
.ppg-page.next {
    background: var(--dark-blue);
    color: #fff;
    border-color: var(--dark-blue);
}

.ppg-page.prev:hover,
.ppg-page.next:hover {
    background: var(--dark-blue);
    color: #fff;
    border-color: var(--dark-blue);
}

@media (max-width: 575px) {
    .ppg-page {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .ppg-pagination {
        gap: 7px;
        margin-top: 35px;
    }
}


/* Body & Wrapper styling for the cream theme */
body.single-blog-body {
    background-color: #FCF9F3 !important;
    color: #4A3E3D !important;
    font-family: 'Poppins', 'Varela Round', sans-serif !important;
}

.single-blog-wrapper {
    background-color: #FCF9F3;
    padding-top: 50px;
    padding-bottom: 80px;
    position: relative;
    overflow-x: hidden;
}

/* Container for the main blog post */
.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Image styles */
.blog-featured-img-wrap {
    width: 100%;
    margin-bottom: 35px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-featured-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
    object-position: top;
}

/* Title & Subtitle Styling matching the mockup */

.blog-title {
    font-family: "Bruno Ace", sans-serif !important;
    color: var(--ppg-title-color);
    font-weight: 600 !important;
    font-size: 2.3rem;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.blog-subtitle {
    /* font-size: 1.05rem;
    color: #706053;
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: left; */
}

/* Gallery Section Wrapper */
.gallery-section {
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(92, 58, 33, 0.1);
}

/* Side Wood Trim Borders */
.wood-border-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background-image: url('assets/images/wood_border_left.png');
    background-repeat: repeat-y;
    background-position: left center;
    background-size: contain;
    background-color: rgba(139, 90, 43, 0.04);
    /* fallback warm hue */
    pointer-events: none;
    z-index: 5;
}

.wood-border-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background-image: url('assets/images/wood_border_right.png');
    background-repeat: repeat-y;
    background-position: right center;
    background-size: contain;
    background-color: rgba(139, 90, 43, 0.04);
    /* fallback warm hue */
    pointer-events: none;
    z-index: 5;
}

/* Gallery Container padding to clear wood borders */
.gallery-container-wrapper {
    position: relative;
    padding-left: 90px;
    padding-right: 90px;
}

.gallery-title {
    font-family: 'Lora', Georgia, serif;
    color: #5C3A21;
    font-size: 2.4rem;
    font-weight: 500 !important;
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Gallery Grid matching mockup */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    justify-content: center;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 1.1 / 1;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 30px rgba(92, 58, 33, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* CUSTOM PREMIUM MODAL STYLE */
.custom-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-gallery-modal.show {
    opacity: 1;
}

.modal-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 650px;
}

.modal-content-card {
    background-color: #ffffff;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.custom-gallery-modal.show .modal-content-card {
    transform: scale(1);
}

.modal-img-container {
    width: 100%;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
    background-color: #0d0d0d;
    position: relative;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.modal-img-container img.fade-out {
    opacity: 0;
}

.modal-info-panel {
    padding: 30px 25px;
    background-color: #ffffff;
}

.modal-info-title {
    font-family: "Bruno Ace", sans-serif !important;
    color: var(--ppg-title-color);
    font-size: 1.6rem;
    font-weight: 600 !important;
    margin-bottom: 5px;
    line-height: 1.3;
}

.modal-info-subtitle {
    font-size: 1rem;
    color: #706053;
    /* Subtitle matches mockup info text */
    margin-bottom: 25px;
}

/* Horizontal Thumbnails row inside Modal */
.modal-thumbs-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(92, 58, 33, 0.2) transparent;
}

.modal-thumbs-row::-webkit-scrollbar {
    height: 5px;
}

.modal-thumbs-row::-webkit-scrollbar-thumb {
    background: rgba(92, 58, 33, 0.2);
    border-radius: 10px;
}

.modal-thumb {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.25s, outline 0.25s, transform 0.2s;
    flex-shrink: 0;
}

.modal-thumb:hover {
    transform: scale(1.05);
}

.modal-thumb.active {
    border-color: #FFC107;
    /* Yellow border */
    outline: 2px solid #F1C40F;
}

/* Nav Buttons - Prev/Next */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(30, 30, 30, 0.7);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    transition: background-color 0.25s, transform 0.25s, opacity 0.25s;
    z-index: 100;
}

.modal-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.95);
    transform: translateY(-50%) scale(1.08);
}

.modal-prev-btn {
    left: -70px;
}

.modal-next-btn {
    right: -70px;
}

/* Close Button - Yellow Circle with Black cross */
.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background-color: #FFC107;
    /* Yellow circle background */
    color: #000000;
    /* Black close cross */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.25s, transform 0.25s;
    z-index: 101;
}

.modal-close-btn:hover {
    background-color: #F1C40F;
    transform: scale(1.1);
}

/* Responsiveness */
@media (max-width: 900px) {
    .modal-prev-btn {
        left: 10px;
        top: auto;
        bottom: -70px;
        transform: none;
    }

    .modal-prev-btn:hover {
        transform: scale(1.05);
    }

    .modal-next-btn {
        right: 10px;
        top: auto;
        bottom: -70px;
        transform: none;
    }

    .modal-next-btn:hover {
        transform: scale(1.05);
    }

    .modal-wrapper {
        margin-bottom: 80px;
        /* spacing for navigation below card */
    }
}

@media (max-width: 768px) {
    .gallery-container-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wood-border-left,
    .wood-border-right {
        display: none;
        /* Hide wood side trims on mobile */
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .gallery-title {
        font-size: 1.9rem;
    }

    .modal-close-btn {
        top: 15px;
        right: 15px;
    }
}

.ppg-slide-content p {
    color: #ffffff !important;
}

.siteorigin-widget-tinymce p {
    text-align: justify;
    font-size: 15px !important;
    color: var(--ppg-title-color);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.ppg-news-grid {
    margin-top: 35px;
}

.ppg-news-card {
    height: 100%;
}

.ppg-news-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ppg-news-heading a {
    color: inherit;
    text-decoration: none;
}

.ppg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.ppg-pagination .page-numbers {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.ppg-pagination .page-numbers:hover,
.ppg-pagination .page-numbers.current {
    background: #c7f08e;
    border-color: #c7f08e;
    color: #111;
}

.ppg-pagination .prev,
.ppg-pagination .next {
    background: #111;
    color: #fff;
    border-color: #111;
}

.ppg-pagination .prev:hover,
.ppg-pagination .next:hover {
    background: #c7f08e;
    color: #111;
    border-color: #c7f08e;
}

@media (max-width: 767px) {
    .ppg-news-img img {
        height: 220px;
    }

    .ppg-pagination .page-numbers {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}



/* Form  */
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

/* .contact-form-card .form-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
} */

.contact-form-card p {
    text-align: center;
    margin-bottom: 35px;
}

/* 2-column form */
#wpforms-45 .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#wpforms-45-field_5-container,
#wpforms-45 .wpforms-submit-container {
    grid-column: 1/-1;
}

#wpforms-45 input,
#wpforms-45 textarea {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #d9d9d9 !important;
    border-radius: 10px !important;
    background: #e3e3e3 !important;
    padding: 12px 0 !important;
    box-shadow: none !important;
}

#wpforms-45 textarea {
    min-height: 120px;
    resize: none;
}

#wpforms-45 .wpforms-field-label {
    display: block;
}

.video-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    height: 170px;

}

.ppg-btn-wrap .ppg-btn-outline {
    height: auto !important;
    width: auto !important;
    font-weight: 600 !important;
    background: #fff !important;
    border: 1px solid #ccc !important;
    padding: 10px 10px !important;
    border-radius: 20px !important;
    transition: all 0.5s ease-in-out !important;
    font-size: .8rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.ppg-cat-name {
    font-size: .7rem !important;
    padding: 5px 10px;
    /* border: 1px solid var(--ppg-title-color); */
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #ff3e8f, #5b52ff) border-box;
    line-height: 1;
    border-radius: 999px;
    color: var(--ppg-title-color);
    margin: 0px !important;
}

/* Button */
#wpforms-submit-45 {
    margin-top: 17px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 15px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer;
    border-radius: 50px !important;
    background: linear-gradient(90deg, #0188FD 0%, #001FAA 100%) !important;
}

@media(max-width:767px) {
    #wpforms-45 .wpforms-field-container {
        grid-template-columns: 1fr;
    }
}

/* Form */


/* paggination */
.faq-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-pagination li {
    margin: 0;
}

.faq-pagination a,
.faq-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
    background: #fff;
    border: 2px solid #0d6efd;
    transition: all 0.3s ease;
}

.faq-pagination a:hover {
    background: #0d6efd;
    color: #fff;
}

.faq-pagination .current {
    background: linear-gradient(90deg, #0d6efd, #0056d6);
    color: #fff;
    border-color: #0d6efd;
}

.faq-pagination .prev,
.faq-pagination .next {
    padding: 0 ;
}

/* paggination */



/* paggination tow */




/* paggination tow */


.presto-mega-grid .pp-menu li a {
    color: var(--ppg-title-color);
    font-weight: 500;
    font-size: 1.15rem !important;
    transition: all 0.5s ease-in-out;
    padding: 10px 20px !important;
}

/* =========================================================
PRESTO PREMIUM PRELOADER COMPONENT
========================================================= */
.presto-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #01091a; /* Presto deep brand blue */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    transition: opacity 0.25s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.25s;
}

.presto-loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.presto-loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.presto-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.presto-orb-1 {
    top: 20%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(224, 245, 0, 0.15) 0%, transparent 75%);
    animation: prestoOrbMove 12s ease-in-out infinite alternate;
}

.presto-orb-2 {
    bottom: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 50, 99, 0.6) 0%, transparent 75%);
    animation: prestoOrbMove 16s ease-in-out infinite alternate-reverse;
}

@keyframes prestoOrbMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -40px) scale(1.15); }
}

.presto-loader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 380px;
}

/* Logo and Orbits */
.presto-logo-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.presto-loading-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(224, 245, 0, 0.1);
    border-top: 2px solid #E0F500;
    border-radius: 50%;
    animation: prestoSpin 2s linear infinite;
}

.presto-loading-circle-inner {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 1px dashed rgba(224, 245, 0, 0.4);
    border-radius: 50%;
    animation: prestoSpinReverse 6s linear infinite;
}

.presto-logo-center {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #ffffff;
    border: 1px solid rgba(224, 245, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(224, 245, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: prestoPulse 2s ease-in-out infinite alternate;
}

.presto-logo-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
}

.presto-fallback-logo {
    font-family: 'Bruno Ace', sans-serif;
    color: #E0F500;
    font-size: 28px;
    font-weight: bold;
}

@keyframes prestoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes prestoSpinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes prestoPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 10px rgba(224, 245, 0, 0.1); }
    100% { transform: scale(1.05); box-shadow: 0 0 20px rgba(224, 245, 0, 0.35); }
}

/* Percentage styling */
.presto-percent-box {
    margin-bottom: 10px;
}

.presto-percent-num {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.presto-percent-symbol {
    font-size: 20px;
    font-weight: 600;
    color: #E0F500;
    margin-left: 1px;
}

/* Status message and bar */
.presto-status-box {
    width: 100%;
}

.presto-status-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    height: 18px;
    transition: opacity 0.3s ease;
}

.presto-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.presto-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, rgba(224, 245, 0, 0.4) 0%, #E0F500 70%, #ffffff 100%);
    box-shadow: 0 0 6px rgba(224, 245, 0, 0.6);
    border-radius: 2px;
    transition: width 0.1s linear;
}