body{
    margin: 0;
    background-color:rgb(248, 247, 246);
    background-image: url();
    background-size: cover;
    background-position: centre;
}


header{
    position: fixed;
    height: 90px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /*stays above image*/
    font-size: 30px;              /* text size */
    font-weight: 60px;             /* thickness */
    text-transform: uppercase;    /* optional */
    margin-bottom: 12px;
    background-color: rgb(247, 245, 245);
font-family: 'Poppins', sans-serif;
}
/* LOGO */
.logo h2 {
    margin: 2; /* VERY IMPORTANT */
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3b5353;
}
nav {
    display: flex;
    justify-content: space-between; /* pushes left & right */
    align-items: center; /* keeps them in same line */
    padding: 0 60px;
    position: relative;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    cursor: pointer;
    color: #704214; /* Your theme brown */
}

.lang-btn {
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    font-size: 14px;
}

.lang-btn.active {
    color: #8b4513;
    text-decoration: bold;
    opacity: 1;
    border-bottom: 2px solid #704214;
}

.separator { cursor: default; }


/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 1;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: rgb(116, 60, 14);
    font-weight: 600;
    font-size: 16px;
}
nav ul li a:hover {
    color: #b68854;   /* golden hover effect */
}

.nav-links{
    list-style: none;
    display: flex;
    gap: 30px;

    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* centers menu perfectly */
}

.nav-links li a {
    text-decoration: none;
    color: #7a4e2d;
    font-weight: 500;
}


/* RIGHT BUTTON */
.join-btn {
    padding: 10px 50px;
    background-color: rgb(116, 60, 14);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: 0.3s;
}

.join-btn:hover {
    background-color: #a85e2c;
}

.hero{
    position: relative;
    height: 90vh;
    width: 100;
    background: url("/frontend/image/hero5.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.hero-overlay{
    /* Image adjusts to screen */
    width:100%;
    height: 800px;
     overflow:clip;
    filter: brightness(100%);
    
    
}

/* DARK OVERLAY → makes text brighter */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(139, 70, 43, 0.4); /* adjust darkness here */
}

/* CONTENT */
.hero-content {
    position: relative; /* important */
    color: rgb(248, 245, 243);
    z-index: 2;
    max-width: 900px;
}

/* HEADING */
.hero-content h1 {
    font-family:  'Poppins', sans-serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    color: #eceae8;
}

.hero-content h1 span {
    font-family:  'Poppins', sans-serif;;
    color: #5e3214; /* green highlight like your design */
}

/* PARAGRAPH */
.hero-content p {
    font-family:  'Poppins', sans-serif;;
    margin: 20px 0;
    font-size: 18px;
}

.patanjali-section {
    background: #e7decf;
    padding: 80px 40px;
}

.patanjali-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

/* LEFT SIDE */
.patanjali-text {
    flex: 1;
        max-width:800px;   /* prevents stretching */

}

.patanjali-text .tag {
    font-size: 10px !important;
    letter-spacing: 2px;
    color: #b68854;
    margin-bottom: 15px;
    font-weight: 600;
}
.patanjali-text .tag::before {
    content: "";
    display: inline-block;

    width: 20px;
    height: 2px;

    background-color: #b68854;

    margin-right: 10px;
    vertical-align: middle;
}


.patanjali-text h2 {
    font-family:  'Poppins', sans-serif;
    font-size: 34px;
    color:  rgb(116, 60, 14);
    margin-bottom: 15px;
}

.patanjali-text p {
    font-size: 16px;
    color:  rgb(107, 88, 75);
    line-height: 1.6;
}

/* SMALL BOXES */
.patanjali-boxes {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.info-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box h4 {
    margin: 0;
    color: rgb(116, 60, 14); ;
    font-size: 16px;
}

.info-box p {
    font-size: 13px;
    font-weight: 500;
    letter-spacing:1px;
    color: rgb(107, 88, 75);
}

/* RIGHT SIDE IMAGE */
.patanjali-image {
    width: 700px;
    height: 500px;
    flex: 1;
    position: relative;
}

.patanjali-image img {
    max-width: 300px;
    display: block;
    margin:auto;
    border-radius:30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.offerings {
    padding: 80px 200px;
    text-align: center;

    background: linear-gradient(
        to bottom,
        #d39c8b,
        #f2b66d,
        #b87d5b
    );
}

.container {
    
    max-width: 1000px;
    margin: 1;
}

.offerings-title {
        font-family:  'Poppins', sans-serif;
    color:  rgb(116, 60, 14);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
}

.offerings-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

}

/* Position 4th card (left side of 2nd row) */
.offerings-grid .card:nth-child(4) {
    grid-column: 1 / 2;
}

/* Position 5th card (right side of 2nd row) */
.offerings-grid .card:nth-child(5) {
    grid-column: 3 / 4;
}

.card {
    margin-bottom: 20px;
    background: #f7f5f2;
    padding: 80px 25px;
    border-radius: 15px;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;   /* 🔥 THIS centers everything */
    text-align: center;
}
.card:hover {
    transform: translateY(-5px);
}


.icon {
    margin-bottom: 20px;   /* gap between icon and heading */
}

.icon img {
    width: 50px;
    height: 50px;

    background: #eae4dc;
    border-radius: 10px;
    padding: 5px;

    display: block;
}
.card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.card p {
    font-size: 16px;
    color: #555;
    gap: 4px;
    margin-bottom: 15px;
}

.card a {
    font-size: 12px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
}


/* SECTION */
.limbs-section {
    padding: 80px 40px;
    background: #e7decf;
    text-align: center;
}

/* TITLE */
.limbs-title {
    font-family:  'Poppins', sans-serif;
    font-size: 34px;
    color: rgb(116, 60, 14); ;
    margin-bottom: 10px;
}

/* GREEN LINE */
.underline {
    width: 80px;
    height: 4px;
    background: rgba(129, 68, 18, 0.4);
    margin: 0 auto 40px;
    border-radius: 5px;
}

/* SCROLL CONTAINER */
.limbs-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;   /* 🔥 horizontal scroll */
    padding: 20px;
    scroll-behavior: smooth;
}


/* CARD */
.limb {
    min-width: 250px;  /* 🔥 important for horizontal scroll */
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    text-align: left;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
    cursor: pointer;
}

/* NUMBER */
.limb span {
    font-size: 28px;
    font-weight: bold;
    color: #d6d3c9;
}


.limb span {
  display: inline-block;
  padding: 0px 8px;
  border-radius: 30%;
  background-color: #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 🔥 Hover on card affects span */
.limb:hover span {
  background-color: #693819;
  color: white;
  transform: scale(1.2);
}



/* TITLE */
.limb h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #161513;
}

/* TEXT */
.limb p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT 🔥 */
.limb:hover {
    border: 2px solid #42270e;
    transform: translateY(-5px);
}


.schedule-section {
  padding: 10px 100px;
    background: #e7decf;
}

.schedule-header {
        font-family:  'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 20px;
}

.schedule-header h2 {
    color: #693819;
  font-size: 32px;
  margin-bottom: 8px;
}

.schedule-header p {
  color: #140505;
  font-size: 14px;
}

/* TABLE */
.schedule-table {
  margin-top: 30px;
  background: rgb(236, 239, 240);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr 1fr;
  padding: 20px 20px;
  align-items: center;
}

.table-header {
  font-family:Georgia, 'Times New Roman', Times, serif;
  font-size: 13px;
  border-bottom: 1px solid #92551b;
  color: #693819;
  font-weight: bold;
}

.table-row {
    font-style: italic;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfb28e;
}

.table-row:last-child {
  border-bottom:#2ecc71;
}

.time {
  font-size: 18px;
  color: #97701c;
  font-weight: 600;
}

.badge {
  font-size: 18px;
}

.table-row a {
  color: #97701c;
  text-decoration: none;
  font-weight: bold;
font-size: 18 px;
}

/* ===============================
   VISIT SECTION
=================================*/

.visit-section {
    background-color: #111915;
    color: #fff;
    padding: 40px 90px;
}

.visit-container {
    display:block;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.visit-container h2{
    font-size: 32px;
}
.visit-left {
    max-width: 200px;
}

.visit-left h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.icon {
    background-color: #f4a640;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.info-item h4 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
}

.info-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}

/* ===============================
   MAP CARD
=================================*/

.visit-right {
    margin-bottom:10px;
    margin-top: -290px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map-card {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-card iframe {
    margin-bottom: 10px;
    width: 100%;
    height: 300px;
    border: 0;
    filter: grayscale(100%) brightness(80%);
}

/* ===============================
   FOOTER
=================================*/

.footer {
    background-color: #f8f6f6;
    padding: 30px 10%;
    text-align: center;
}

.footer .logo{
        font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #0b0f0f;
    
    font-family: 'Poppins', sans-serif;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700px;
}

.footer-links a {
    margin: 10px 30px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.footer-icons a {
    margin-left: 10px;
    font-size: 18px;
    text-decoration: none;
}


/* GOOGLE FONT */

/* HERO SECTION */
.about {
    position: relative;
    height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* DARK + ORANGE OVERLAY */
.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(167, 99, 10, 0.6),
        rgba(95, 35, 70, 0.7)
    );
    top: 0;
    left: 0;
}

/* CONTENT */
.about-content {
    position: relative;
    color: #fff;
    max-width: 900px;
    padding: 20px;
}

/* TITLE */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* HIGHLIGHT TEXT */
.about-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color:  #5e3214; ;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* SUBTEXT */
.about-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* BUTTON */
.about-btn {
    background: #5e3214;
    color: #ddd7d7;
    border: none;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e67600;
}

/* WAVE EFFECT */
.about-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background:#f4f6f5;
    border-top-left-radius: 50% 40px;
    border-top-right-radius: 50% 40px;
}

.about-section {
    padding: 120px 140px; /* space for fixed header */
    background-color: #e7decf;
    width: auto;
    height: 50vh;
}

.about-container {
        display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* LEFT SIDE */
.about-text {
    flex: 1;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.about-text h2 {
    font-family: Playfair Display;
    font-size: 32px;
    color: #5e3214;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #0c0c0c;
    margin-bottom: 10px;
}

.about-stats{
 display: flex;
    gap: 30px;
    margin-top: 10px;   /* small gap under text */
}

/*each stat*/
.stat h3{
    color: #5e3214;
    font-size: 28px;
    margin-bottom:5px;

}

.stat p{
    font-size: 12px;
    letter-spacing: 1px;
    color: #0e0d0d;
}


.stat {
    border-left: 2px solid #91867f;
    padding-left: 15px;
}

/* RIGHT SIDE */
.about-image {
    flex: 1;
    position: relative;
    right: -100px;
}
.about-image img {
    width: 100%;
    max-width: 455px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.highlight{
    color: #0e0d0d;
    font-weight:620;
}


/* Quote Box */
.quote-box {
    position:relative;
    bottom: 60px;
    right: -230px; /* push outside image like your design */

    background-color: rgb(116, 60, 14);
    color: white;

    padding: 5px;
    border-radius: 20px;

    width: 260px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.quote-box p {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    text-align: center;
}

.quote-box span {
    margin-top: 4px;
    margin-left: 70px; 
    font-size: 12px;
    font-weight: bold;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* ===============================
   HEARTS SECTION
=================================*/

.hearts-section {
    background: #f1ede7;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */

.hearts-header h2 {
    font-size: 28px;
    color: #5e3214;
    margin-bottom: 10px;
    font-family:  'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px
}


.hearts-header p {
    max-width: 600px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* CONTAINER */

.hearts-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 60px;   /* VERY IMPORTANT */
    flex-wrap: wrap;
}
/* CARD */

.profile-card {
    background: #f4f6f5;
    width: 420px;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover lift */
.profile-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.profile-image {
    width: 160px;
    height: 240px;        /* Make it perfect circle */
    margin: auto;
    border-radius: 180px;   /* Use 50% not 70% */
    border: px solid #523915;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* IMPORTANT */
    display: block;
}

/* NAME */

.profile-card h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #302102;
}

/* ROLE */

.role {
    font-size: 14px;
    letter-spacing: 1px;
    color: #080808;
    margin-bottom: 15px;
}

/* DROPDOWN INFO */

.profile-info {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

/* SHOW ON HOVER */

.profile-card:hover .profile-info {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* TEXT */

.profile-info p {
    font-size: 15px;
    color: #585353;
    line-height: 1.6;
}

.profile-card {
    position: relative;
    z-index: 1;
}

/* When hovering container → fade all cards */
.hearts-container:hover .profile-card {
    opacity: 0.5;
    transform: scale(0.98);
}

/* Highlight ONLY hovered card */
.hearts-container .profile-card:hover {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}
/* MOBILE */

@media (max-width: 768px) {
    .hearts-container {
        flex-direction: column;
        align-items: center;
    }
}


/* ===============================
   TESTIMONIALS SECTION
=================================*/

.testimonials-section {
    padding: 80px 20px;
    background: #e7decf;
    text-align: center;
}

/* TITLE */

.section-title {
    font-size: 28px;
    letter-spacing: 2px;
    color: #5e3214;
}

.underline {
    width: 60px;
    height: 3px;
    background: #c46a2d;
    margin: 10px auto 50px;
}

/* GRID */

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* CARD */

.testimonial-card {
    background: #e7d4b8;
    padding: 30px;
    border-radius: 18px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid #c46a2d;
}

/* HOVER EFFECT */

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* QUOTE */

.quote {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* USER */

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* AVATAR */

.avatar {
    width: 40px;
    height: 40px;
    background: #e6d3c3;
    color: #a05a2c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

/* NAME */

.user h4 {
    margin: 0;
    font-size: 15px;
    color: #222;
}

.user span {
    font-size: 12px;
    color: #777;
}




/* Animation */

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Contact Page */

.contact-section {
    min-height: 100vh;
    background: #e7decf;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 60px;
}


/* Container */

.contact-container {
    background: white;

    max-width: 900px;
    width: 100%;

    display: flex;
    gap: 40px;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


/* Left Side */

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #5e3214;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
}


/* Right Side */

.contact-form {
    flex: 1;
}

.contact-form h2 {
    color: #5e3214;
    margin-bottom: 20px;
}


/* Form */

.contact-form form {
    display: flex;
    flex-direction: column;
}


.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #ccc;
    border-radius: 8px;

    font-size: 14px;
}


.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #5e3214;
}


/* Button */

.contact-form button {
    background: #5e3214;
    color: white;

    padding: 12px;

    border: none;
    border-radius: 8px;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover {
    background: #3b270f;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        padding: 30px;
    }

}


/* SECTION */
.gallery-section {
    padding: 60px 20px;
    background: #f5f7f6;
    text-align: center;
}

/* TITLE */
.gallery-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #777;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #2d6a4f;
    border-bottom: 2px solid #2d6a4f;
}

/* YEAR FILTER */
.year-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.year-btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: #fff;
}

.year-btn.active {
    background: #2d6a4f;
    color: white;
}

/* GRID */
.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}