    /* ===================================
   GOOGLE FONT RESET
=================================== */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-weight: 100;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        background: #0b0f14;
        color: #fff;
        overflow-x: hidden;
    }
    /* ===================================
   VARIABLES
=================================== */
    
     :root {
        --gold: #c8a96a55;
        --gold1: #c8a96a;
        --gold-dark: #a88442;
        --bg: #0b0f14;
        --card: #121821;
        --text: #ffffff;
        --muted: #b7b7b7;
        --glass: rgba(255, 255, 255, 0.06);
    }
    /* ===================================
   LOADER
=================================== */
    
    .loader {
        position: fixed;
        inset: 0;
        background: #000;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .cosmic-ring {
        width: 80px;
        height: 80px;
        border: 4px solid rgba(255, 255, 255, .1);
        border-top: 4px solid var(--gold);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    /* ===================================
   PARTICLES BG
=================================== */
    
    #particles {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        background: radial-gradient(circle at top right, rgba(200, 169, 106, .18), transparent 35%), radial-gradient(circle at bottom left, rgba(0, 120, 255, .15), transparent 30%), #0b0f14;
    }
    /* ===================================
   NAVBAR
=================================== */
    
    .navbar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 8%;
        backdrop-filter: blur(18px);
        background: rgba(0, 0, 0, .35);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo img {
        width: 150px;
        height: 100px;
        padding-right: 40px;
    }
    
    .logo span {
        /* font-family:'Poppins', sans-serif; */
        font-size: 1.7rem;
        color: var(--text);
        letter-spacing: 1px;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 40px;
        align-items: center;
    }
    
    .nav-links a,
    .nav-dropdown-toggle {
        font: inherit;
        text-decoration: none;
        color: white;
        transition: .3s;
    }
    
    .nav-links a:hover,
    .nav-dropdown-toggle:hover,
    .nav-dropdown.open .nav-dropdown-toggle {
        color: var(--gold);
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown-toggle {
        background: transparent;
        border: 0;
        cursor: pointer;
    }
    
    .nav-dropdown-toggle::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-left: 8px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: .3s;
    }
    
    .nav-dropdown.open .nav-dropdown-toggle::after,
    .nav-dropdown:hover .nav-dropdown-toggle::after {
        transform: rotate(225deg) translate(-2px, -1px);
    }
    
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 18px);
        left: 50%;
        min-width: 170px;
        padding: 12px;
        list-style: none;
        background: rgba(18, 24, 33, .96);
        border: 1px solid rgba(200, 169, 106, .22);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .32);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 12px);
        transition: .3s;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 11px 14px;
        border-radius: 10px;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background: var(--glass);
        color: var(--gold1);
    }
    
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
    
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
    }
    /* ADVANTAGE GRID */
    
    .advantage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    /* CARD */
    
    .adv-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .adv-card-content {
        flex: 1;
    }
    /* IMAGE CONTAINER */
    
    .adv-image-placeholder {
        width: 100%;
        aspect-ratio: 1 / 1;
        /* perfect square */
        overflow: hidden;
        border-radius: 16px 16px 0 0;
        aspect-ratio: 16 / 9;
    }
    /* IMAGE */
    
    .adv-image-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* crops image properly */
        display: block;
        transition: transform 0.4s ease;
        object-fit: cover;
    }
    /* HOVER EFFECT */
    
    .adv-card:hover .adv-image-placeholder img {
        transform: scale(1.05);
    }
    
    .partner-image {
        width: 100%;
        aspect-ratio: 1/1;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .partner-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    /* ===================================
   HERO
=================================== */
    
    .hero {
        height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( rgba(0, 0, 0, 0.883), rgba(0, 0, 0, .65));
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        transition: .4s;
    }
    
    .btn-primary {
        background: var(--gold);
        color: #000;
    }
    
    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(200, 169, 106, 0.475);
    }
    
    .btn-secondary {
        border: 1px solid var(--gold);
        color: rgba(255, 255, 255, 0.345);
    }
    
    .btn-secondary:hover {
        background: var(--gold);
        color: black;
    }
    /* ===================================
   STATS
=================================== */
    
    .stats {
        padding: 100px 8%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .stat-card {
        background: var(--card);
        padding: 40px;
        text-align: center;
        border-radius: 20px;
        transition: .4s;
    }
    
    .stat-card:hover {
        transform: translateY(-10px);
    }
    
    .stat-card h2 {
        color: var(--gold1);
        font-size: 3rem;
        line-height: 1;
    }
    
    .advantage .stats {
        padding: 70px 0 0;
    }
    /* ===================================
   ABOUT
=================================== */
    
    .about {
        padding: 120px 8%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
    }
    
    .about-image img {
        width: 100%;
        border-radius: 25px;
        padding-top: 100px;
    }
    
    .about-content h2 {
        /* font-family:'Poppins', sans-serif; */
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 20px;
        color: var(--gold1);
    }
    
    .about-content p {
        color: #ccc;
        margin-bottom: 20px;
        line-height: 1.8;
    }
    
    .values {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .values span {
        padding: 12px 22px;
        border: 1px solid var(--gold);
        border-radius: 30px;
    }
    
    .partner-content {
        align-items: center;
        justify-content: center;
    }
    /* ===================================
   SERVICES
=================================== */
    
    .services {
        padding: 120px 8%;
    }
    
    .services h2 {
        text-align: center;
        /* font-family:'Poppins', sans-serif; */
        font-family: 'Poppins', sans-serif;
        margin-bottom: 60px;
        font-size: 1.2rem;
        font-weight: 100;
        color: var(--gold1);
    }
    
    .service-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 80px;
        row-gap: 150px;
    }
    
    .service-card {
        position: relative;
        height: 320px;
        border-radius: 20px;
        cursor: pointer;
        overflow: visible;
        border: 1px solid rgba(200, 169, 106, .15);
        transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    }
    
    .service-title {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        transition: .35s ease;
        z-index: 10;
    }
    
    .service-details {
        /* position: absolute;
        top: 100%;
        left: 50%;
        width: 90%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        transition: .35s ease;
        text-align: center; */
        position: absolute;
        top: 100%;
        left: 50%;
        width: 100%;
        max-width: 260px;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
        margin-top: 12px;
    }
    
    .service-details p {
        color: #ddd;
        line-height: 1.5;
    }
    
    .service-details ul {
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    
    .service-details li {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        line-height: 1.5;
        font-size: .96rem;
        text-wrap: balance;
        word-break: normal;
    }
    
    .service-details li::before {
        content: "•  ";
        color: var(--gold1);
    }
    
    .service-image {
        width: 100%;
        height: 320px;
        overflow: hidden;
        border-radius: 12px;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }
    
    .service-card h3 {
        font-size: 1.04rem;
        color: var(--gold1);
        font-weight: 400;
    }
    /* =====================================
   WHY YAJURVEDH
===================================== */
    
    .why-yajurvedh {
        padding: 120px 8%;
    }
    
    .why-yajurvedh h2 {
        text-align: center;
        font-size: 1.2rem;
        color: var(--gold1);
        margin-bottom: 60px;
    }
    
    .why-yajurvedh-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 30px;
        row-gap: 160px;
    }
    
    .why-card-title {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        margin-bottom: 12px;
        z-index: 10;
    }
    
    .why-card .why-card-title h3 {
        color: var(--gold1);
        font-size: 1.05rem;
        line-height: 1.4;
        margin: 0;
        font-weight: 400;
    }
    
    .why-card-details {
        position: absolute;
        top: 100%;
        left: 50%;
        width: 90%;
        transform: translateX(-50%);
        overflow: visible;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease, visibility .35s ease, margin-top .35s ease;
        margin-top: 0;
        text-align: center;
    }
    
    .why-card-details ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .why-card-details li {
        color: #d8d8d8;
        font-size: 1rem;
        line-height: 0.5;
        text-align: center;
        word-break: break-word;
    }
    /* .why-card-details {
        width: 92%;
        margin: 15px auto 0;
    } */
    
    .why-card-details li {
        /* line-height: 1.4; */
        padding: 2px 0;
    }
    
    .why-card-details ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    
    .why-card-details li::before {
        content: "• ";
        color: var(--gold1);
    }
    
    .why-yajurvedh-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 30px;
        row-gap: 220px;
    }
    /* .why-yajurvedh-grid {
    row-gap: 90px;
    column-gap: 30px;
} */
    
    @media(min-width:769px) {
        .service-card:hover .service-title {
            bottom: 100%;
            margin-bottom: 10px;
        }
        .service-card:hover .service-details {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }
        .service-card:hover img {
            transform: scale(1.1);
        }
        .service-card:hover {
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(200, 169, 106, .20);
            transform: translateY(-8px);
        }
        .why-card:hover {
            border-color: var(--gold1);
            box-shadow: 0 0 20px rgba(200, 169, 106, .18);
            transform: translateY(-6px);
        }
        .why-card:hover .why-card-image img {
            transform: scale(1.05);
        }
        .why-card:hover .why-card-details {
            opacity: 1;
            visibility: visible;
            margin-top: 15px;
        }
    }
    /* ===================================
   PARTNERS
=================================== */
    
    .partners {
        padding: 120px 0;
    }
    
    .partners h2 {
        text-align: center;
        /* font-family:'Poppins', sans-serif; */
        font-family: 'Poppins', sans-serif;
        font-size: 3rem;
        margin-bottom: 60px;
    }
    
    .partner-carousel {
        position: relative;
        overflow: hidden;
    }
    
    .partner-carousel::before,
    .partner-carousel::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 12%;
        z-index: 2;
        pointer-events: none;
    }
    
    .partner-carousel::before {
        left: 0;
        background: linear-gradient(90deg, #0b0f14, transparent);
    }
    
    .partner-carousel::after {
        right: 0;
        background: linear-gradient(270deg, #0b0f14, transparent);
    }
    
    .partner-track {
        display: flex;
        width: max-content;
        animation: partnerScroll 42s linear infinite;
    }
    
    .partner-carousel:hover .partner-track {
        animation-play-state: paused;
    }
    
    .partner-card {
        flex: 0 0 300px;
        min-height: 350px;
        margin-right: 30px;
        background: var(--card);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 20px;
        overflow: hidden;
        transition: .4s;
    }
    
    .partner-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200, 169, 106, .45);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
    }
    
    .partner-image-placeholder {
        aspect-ratio: 16 / 10;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(200, 169, 106, .2), rgba(255, 255, 255, .04));
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    
    .partner-image-placeholder span {
        color: rgba(255, 255, 255, .52);
        font-size: .85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    /* value added partner */
    
    .partner-card h3 {
        color: var(--gold1);
        font-size: 1.25rem;
        margin: 28px 26px 14px;
        text-align: center;
    }
    
    .partner-card p {
        color: #ddd;
        line-height: 1.7;
        margin: 0 26px 30px;
    }
    
    @keyframes partnerScroll {
        to {
            transform: translateX(-50%);
        }
    }
    /* ===================================
   WHY YAJURVEDH
=================================== */
    
    .why-card {
        position: relative;
        height: 320px;
        padding: 0;
        border-radius: 20px;
        overflow: visible;
        border: 1px solid rgba(200, 169, 106, .15);
        background: var(--card);
        transition: .35s ease;
    }
    
    .why-card-image {
        width: 100%;
        height: 320px;
        overflow: hidden;
        border-radius: 20px;
    }
    
    .why-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }
    
    .why-yajurvedh {
        padding: 120px 8%;
    }
    
    .why-yajurvedh h2 {
        text-align: center;
        font-family: 'Poppins', sans-serif;
        /* font-size: 1.2rem; */
        color: var(--text);
        margin-bottom: 60px;
        font-weight: 100;
    }
    
    .why-yajurvedh-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 30px;
        row-gap: 220px;
    }
    /* ===================================
   ADVANTAGE
=================================== */
    
    .advantage {
        padding: 120px 8%;
    }
    
    .advantage h2 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 60px;
        /* font-family:'Poppins', sans-serif; */
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        color: var(--gold1);
    }
    
    .advantage h3 {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 60px;
    }
    
    .advantage-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .adv-card {
        background: var(--card);
        padding: 40px;
        border-radius: 20px;
    }
    
    .adv-card.why-card {
        padding: 0;
    }
    
    .advantage-card {
        position: relative;
        overflow: hidden;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .08);
        transition: .4s;
    }
    
    .advantage-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(200, 169, 106, .16), transparent 42%);
        opacity: 0;
        transition: .4s;
        pointer-events: none;
    }
    
    .advantage-card:hover {
        transform: translateY(-8px);
        border-color: rgba(200, 169, 106, .45);
        box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
    }
    
    .advantage-card:hover::before {
        opacity: 1;
    }
    
    .adv-image-placeholder {
        aspect-ratio: 16 / 10;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(200, 169, 106, .2), rgba(255, 255, 255, .04));
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
    
    .adv-image-placeholder span {
        color: rgba(255, 255, 255, .52);
        font-size: .9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .adv-card-content {
        position: relative;
        padding: 34px;
    }
    
    .adv-card h3 {
        color: var(--gold1);
        margin-bottom: 25px;
    }
    
    .adv-card ul {
        list-style: none;
    }
    
    .adv-card li {
        margin-bottom: 15px;
        color: #ddd;
    }
    /* ===================================
   WHY WHAT
=================================== */
    
    .why-what {
        padding: 120px 8%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    
    .left img {
        width: 100%;
        max-width: 400px;
    }
    
    .block {
        margin-bottom: 60px;
        font-size: large;
    }
    
    .block h2 {
        color: var(--gold1);
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    /* ===================================
   CONTACT
=================================== */
    
    .contact {
        padding: 120px 8%;
    }
    
    .contact h2 {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 60px;
        font-family: 'Poppins', sans-serif;
        color: var(--gold1);
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .contact-grid div {
        background: var(--card);
        padding: 40px;
        border-radius: 20px;
    }
    
    .contact-grid h4 {
        color: var(--gold1);
        margin-bottom: 10px;
    }
    /* ===================================
   FOOTER
=================================== */
    
    footer {
        text-align: center;
        padding: 60px 20px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    
    footer h3 {
        color: var(--gold1);
        font-family: 'Poppins', sans-serif;
        margin-bottom: 10px;
        font-size: 2.2rem;
    }
    /* ===================================
   RESPONSIVE
=================================== */
    
    @media(max-width:1200px) {
        .nav-links {
            gap: 16px;
            font-size: .85rem;
        }
    }
    
    @media(max-width:991px) {
        .stats,
        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 80px 30px;
            row-gap: 90px;
            column-gap: 30px;
        }
        .service-grid {
            row-gap: 130px;
        }
        .why-yajurvedh-grid,
        .advantage-grid,
        .contact-grid {
            grid-template-columns: 1fr 1fr;
        }
        .why-yajurvedh h2 {
            font-size: 1.2rem;
            color: var(--gold1);
        }
        .about,
        .why-what {
            grid-template-columns: 1fr;
        }
        .logo span {
            font-size: 1.6rem;
        }
        .logo img {
            width: 50px;
            height: 50px;
            padding-right: 20px;
        }
        .nav-links {
            gap: 22px;
            font-size: .9rem;
        }
        .hamburger {
            display: flex;
        }
        .nav-links {
            position: absolute;
            top: 100%;
            right: -100%;
            width: 280px;
            background: #111;
            flex-direction: column;
            padding: 30px;
            transition: .4s;
            align-items: flex-start;
        }
        .nav-links.active {
            right: 0;
        }
        .nav-dropdown,
        .nav-dropdown-toggle {
            width: 100%;
            text-align: left;
        }
        .values {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            gap: 8px;
        }
        .values span {
            flex: 1;
            text-align: center;
            padding: 10px 8px;
            font-size: .85rem;
            white-space: nowrap;
        }
        .dropdown-menu {
            position: static;
            width: 100%;
            min-width: 0;
            max-height: 0;
            margin-top: 0;
            padding: 0 0 0 14px;
            background: transparent;
            border: 0;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            overflow: hidden;
            transform: none;
        }
        .nav-dropdown.open .dropdown-menu {
            max-height: 140px;
            margin-top: 12px;
        }
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
            transform: none;
        }
        .dropdown-menu a {
            padding: 10px 0;
        }
        .nav-links li {
            width: 100%;
        }
        .nav-links li a,
        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 14px 18px;
            text-decoration: none;
            border-radius: 10px;
            transition: background .25s ease, color .25s ease;
        }
        /* Better touch feedback */
        .nav-links li a:hover,
        .nav-links li a:focus,
        .nav-dropdown-toggle:hover,
        .nav-dropdown-toggle:focus {
            background: rgba(255, 255, 255, .06);
        }
        /* Keep Services arrow on the right */
        .nav-dropdown-toggle {
            justify-content: space-between;
        }
    }
    
    @media(min-width:769px) and (max-width:991px) {
        .service-card:hover .service-title {
            bottom: 100%;
            margin-bottom: 12px;
            margin-top: 12px;
        }
        .service-title {
            color: var(--gold1);
            font-weight: 400;
        }
    }
    /* ===================================
   LETTER PARTICLE DISSOLVE
=================================== */
    /* #heroTitle {
    position: relative;
    text-transform: none !important;
}

.letter-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c8a96a;
    box-shadow: 0 0 8px #c8a96a, 0 0 16px #c8a96a;
    pointer-events: none;
    z-index: 9999;
}

.hero-letter {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    transition: opacity .2s ease;
} */
    
    #heroTitle {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        font-family: 'Rouge Script', cursive;
        font-size: 3rem;
        line-height: 1.1;
        color: rgba(245, 245, 245, 0.496);
        position: relative;
        z-index: 20;
        letter-spacing: 3px;
        margin: 0 auto 20px auto;
    }
    
    .hero-content p {
        position: relative;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        z-index: 20;
        margin: 0 auto 20px auto;
        color: rgba(245, 245, 245, 0.496);
        text-transform: none !important;
        font-family: 'Poppins', sans-serif;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons {
        position: relative;
        z-index: 20;
        overflow: visible;
    }
    /* old */
    /* @media(max-width:768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 280px;
        background: #111;
        flex-direction: column;
        padding: 30px;
        transition: .4s;
        align-items: flex-start;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-dropdown,
    .nav-dropdown-toggle {
        width: 100%;
        text-align: left;
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: 0;
        margin-top: 0;
        padding: 0 0 0 14px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow: hidden;
        transform: none;
    }
    .nav-dropdown.open .dropdown-menu {
        max-height: 140px;
        margin-top: 12px;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        transform: none;
    }
    .dropdown-menu a {
        padding: 10px 0;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .stats,
    .service-grid,
    .why-yajurvedh-grid,
    .advantage-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .partners {
        padding: 90px 0;
    }
    .partner-card {
        flex-basis: 260px;
        min-height: 330px;
        margin-right: 22px;
    }
} */
    /* new */
    
    @media(max-width:768px) {
        #heroTitle {
            font-size: 1.6rem;
        }
        .hero-content p {
            position: relative;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            z-index: 20;
            margin: 0 auto 20px auto;
            color: rgba(245, 245, 245, 0.34);
        }
        .stats {
            grid-template-columns: 1fr;
            gap: 18px;
            padding: 60px 0 0;
        }
        .stat-card {
            padding: 28px 20px;
        }
        .stat-card h2 {
            font-size: 2.4rem;
            line-height: 1;
        }
        .stat-card p {
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .navbar {
            padding: 14px 10px;
        }
        .logo {
            gap: 10px;
            max-width: calc(100% - 70px);
        }
        .logo img {
            width: 58px;
            height: 58px;
            padding-right: 0;
            flex-shrink: 0;
        }
        .logo span {
            font-size: 1rem;
            letter-spacing: 4px;
            white-space: nowrap;
            overflow: hidden;
        }
        .hamburger {
            margin-left: 12px;
            width: 32px;
            justify-content: center;
            align-items: center;
        }
        .hero-buttons {
            flex-direction: column;
        }
        .hamburger span {
            width: 28px;
            height: 2px;
        }
        .stats,
        .service-grid,
        .why-yajurvedh-grid,
        .advantage-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }
        .partners {
            padding: 90px 0;
        }
        .partner-card {
            flex-basis: 260px;
            min-height: 330px;
            margin-right: 22px;
        }
        .dropdown-menu {
            position: static;
            width: 100%;
            min-width: 0;
            max-height: 0;
            margin-top: 0;
            padding: 0 0 0 14px;
            background: transparent;
            border: 0;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            overflow: hidden;
            transform: none;
        }
        .nav-dropdown.open .dropdown-menu {
            max-height: 140px;
            margin-top: 12px;
        }
        .nav-dropdown:hover .dropdown-menu,
        .nav-dropdown:focus-within .dropdown-menu {
            transform: none;
        }
        .nav-links li {
            width: 100%;
        }
        .nav-links li a,
        .nav-dropdown-toggle {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 14px 18px;
            text-decoration: none;
            border-radius: 10px;
            transition: background .25s ease, color .25s ease;
        }
        /* Better touch feedback */
        .nav-links li a:hover,
        .nav-links li a:focus,
        .nav-dropdown-toggle:hover,
        .nav-dropdown-toggle:focus {
            background: rgba(255, 255, 255, .06);
        }
        /* Keep Services arrow on the right */
        .nav-dropdown-toggle {
            justify-content: space-between;
        }
        .dropdown-menu a {
            padding: 10px 0;
        }
        .service-card {
            position: relative;
            overflow: hidden;
            height: auto;
            min-height: 320px;
            background: var(--card);
            /* padding-top: 50px; */
            /* padding-bottom: 70px; */
        }
        .why-card {
            position: relative;
            flex-direction: column;
            overflow: hidden;
            height: auto;
            min-height: 320px;
        }
        .service-grid {
            row-gap: 90px;
            column-gap: 30px;
        }
        .why-yajurvedh-grid {
            row-gap: 30px;
            column-gap: 30px;
        }
        .service-title {
            position: static;
            transform: none;
            margin-top: 15px;
        }
        .why-card-title {
            position: static;
            transform: none;
            width: 100%;
            margin-top: 15px;
        }
        .why-card .why-card-title h3 {
            color: var(--gold1);
            font-weight: 400;
        }
        .service-details {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            width: 100%;
            max-width: 100%;
            padding: 0 22px;
            margin-top: 10px;
        }
        .service-details ul {
            align-items: flex-start;
        }
        .service-details ul {
            align-items: flex-start;
        }
        .service-details li {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            width: 100%;
            text-align: left;
            gap: 10px;
        }
        .service-details li::before {
            flex-shrink: 0;
            margin-top: 2px;
        }
        .why-card-details {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            width: 100%;
            margin-top: 15px;
            overflow: visible;
            padding: 0 22px;
        }
        .why-card-details ul {
            align-items: flex-start;
        }
        .why-card-details li {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            width: 100%;
            text-align: left;
            gap: 10px;
        }
        .why-card-details li::before {
            flex-shrink: 0;
            margin-top: 2px;
        }
        .values {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            gap: 8px;
        }
        .values span {
            flex: 1;
            text-align: center;
            padding: 10px 8px;
            font-size: .85rem;
            white-space: nowrap;
        }
        .block {
            width: 100%;
            max-width: 420px;
            margin: 0 auto 40px;
            text-align: center;
        }
        .block h2 {
            color: var(--gold1);
            font-size: 1.25rem;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600px;
        }
        .block p {
            font-size: small;
            text-align: center;
            font-weight: 300px;
            line-height: 1.8;
            margin: 0 auto;
        }
        .why-what {
            /* taxt-align: center; */
        }
        .right {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
    /* @media (max-width: 768px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 60px 0 0;
    }
    .stat-card {
        padding: 28px 20px;
    }
    .stat-card h2 {
        font-size: 2.4rem;
        line-height: 1;
    }
    .stat-card p {
        margin-top: 10px;
        font-size: 0.95rem;
    }
} */