 /* CSS Variables */
 :root {
     --primary: #98454c;
     --primary-light: #a3545b;
     --primary-dark: #7c393f;
     --secondary: #3d1800;
     --accent: #795548;
     --light: #f9f9f9;
     --dark: #333;
     --gray: #4b4a4a;
     --light-gray: #f5f5f5;
     --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     --transition: all 0.3s ease;
 }

 html {
     overflow-x: hidden;
 }

 /* Reset and Base Styles font-family: 'inter', sans-serif;*/
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
      /* font-family: 'inter', sans-serif;*/
     line-height: 1.6;
     color: var(--dark);
     background-color: var(--light);
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
 }


 .btn {
     display: inline-block;
     padding: 12px 24px;
     background-color: var(--primary);
     color: white;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-weight: 600;
     transition: var(--transition);
     margin-top: 10px;
 }

 .btn:hover {
     background-color: var(--primary-dark);
     transform: translateY(-2px);
     color: #ffffffcc;
 }

 .btn-secondary {
     background-color: var(--secondary);
 }

 .btn-secondary:hover {
     background-color: var(--accent);
 }

 .section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
     position: relative;
     color: var(--secondary);
 }

 .section-title:after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background-color: var(--primary);
     margin: 15px auto;
 }

 /* Header Styles */
 header {
     background-color: white;
     box-shadow: var(--shadow);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header-top {
     background-color: var(--primary-dark);
     color: white;
     padding: 10px 0;
     font-size: 0.9rem;
 }

 .header-top .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .contact-info span {
     margin-right: 20px;
 }

 .social-links a {
     margin-left: 15px;
     font-size: 1.1rem;
 }

 .main-header {
     padding: 15px 0;
 }

 .main-header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 60px;
     margin-right: 15px;
 }

 .logo h1 {
     font-size: 1.8rem;
     color: var(--primary);
 }

 .logo span {
     display: block;
     font-size: 0.9rem;
     color: var(--gray);
 }

 nav ul {
     display: flex;
 }

 nav ul li {
     margin-left: 25px;
     position: relative;
 }

 nav ul li a {
     font-weight: 600;
     padding: 10px 0;
     transition: var(--transition);
 }

 nav ul li a:hover {
     color: var(--primary);
 }

 nav ul li a.active {
     color: var(--primary);
 }

 .mobile-menu-btn {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 @media(max-width: 991px) {
     .logo>div {
         display: none;
     }
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(rgb(0 0 0 / 35%), rgb(0 0 0 / 52%)), url(../image/bann.png) no-repeat;

     background-attachment: fixed;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center bottom;
     color: white;
     text-align: center;
     height: 80vh;
     align-content: center;
 }
 
 
 .hero h2 {
     font-size: 3rem;
     margin-bottom: 20px;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 30px;
 }

 /* About Section */
 .about-content {
     display: flex;
     align-items: center;
     gap: 80px;
 }

 .about-text {
     flex: 1;
 }

 .about-text p {
     width: 100%;
     font-size: 17px;
     text-align: justify;
 }

 .about-image {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 /* Activities Section */
 .activities {
     background-color: var(--light-gray);
 }

 .activities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }

 .activity-card {
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: var(--transition);
     padding: 40px;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .activity-content {
     flex-grow: 1;
 }

 .activity-card .btn {
     margin-top: 20px;
     align-self: flex-start;
     /* or center if you want */
 }

 .activity-card:hover {
     transform: translateY(-10px);
 }

 .activity-card h1 {
     font-size: 28px;
     font-weight: 700;
     color: var(--primary-dark);
 }

 .activity-content p {
     text-align: justify;
 }

 .activity-content h3 {
     margin-bottom: 10px;
     color: var(--primary);
     font-size: medium;
     font-weight: 600;
 }

 @media(max-width: 1399px) {
     .activity-content {
         height: auto;
     }
 }

 @media(max-width: 453px) {
     .activities-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     }

 }

 /* Ashram Section */
 .ashram-tabs {
     display: flex;
     justify-content: center;
     margin-bottom: 30px;
 }

 .tab-btn {
     border: 1px solid #98454c36;
     padding: 12px 30px;
     background-color: var(--light-gray);
     cursor: pointer;
     font-weight: 600;
     transition: var(--transition);
     color: #7c393f;
 }

 .tab-btn:hover {
     color: white;
 }

 .tab-btn.active {
     background-color: var(--primary);
     color: white;
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
 }

 .ashram-content {
     display: flex;
     align-items: center;
     gap: 40px;
 }

 .ashram-text {
     flex: 1;
 }

 .ashram-image {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

  .annada{
    border: 1px solid #3d1800;
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
 }
 .annada h2{
    color: #3d1800;
    margin-bottom: 20px;
    text-decoration: underline;
 }

 /* Contact Section */
 .contact {
     background-color: var(--light-gray);
 }

 .contact-container {
     display: flex;
     gap: 50px;
 }

 .contact-in {
     flex: 1;
 }

 .contact-form {
     flex: 1;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
 }

 .contact-icon {
     background-color: var(--primary);
     color: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
 }

 .form-control {
     width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-family: inherit;
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 /* Footer */
 footer {
     background-color: var(--dark);
     color: white;
     padding: 60px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-column h3 {
     font-size: 1.3rem;
     margin-bottom: 20px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h3:after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 50px;
     height: 2px;
     background-color: var(--primary);
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     transition: var(--transition);
 }

 .footer-links a:hover {
     color: var(--primary-light);
     padding-left: 5px;
 }

 .copyright {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     color: #aaa;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {

     .about-content,
     .ashram-content,
     .contact-container {
         flex-direction: column;
     }

     .about-image,
     .ashram-image {
         order: -1;
     }
 }

 @media (max-width: 768px) {
     .header-top .container {
         flex-direction: column;
         gap: 10px;
     }

     .contact-info {
         text-align: center;
     }

     nav ul {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: white;
         flex-direction: column;
         box-shadow: var(--shadow);
     }

     nav ul.show {
         display: flex;
     }

     nav ul li {
         margin: 0;
         border-bottom: 1px solid var(--light-gray);
     }

     nav ul li a {
         display: block;
         padding: 15px;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero h2 {
         font-size: 2.2rem;
     }

     .hero p {
         font-size: 1rem;
     }
 }


 /* ---------------- About Section ---------------- */
 .about {
     padding: 80px 10%;
     display: flex;
     gap: 40px;
     align-items: center;
     flex-wrap: wrap;
 }

 .about .text {
     flex: 1 1 50%;
     animation: fadeUp 1.5s ease;
     text-align: center;
 }

 .about img {
     flex: 1 1 40%;
     width: 50%;
     max-width: 800px;
     margin: auto;
     border-radius: 15px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
     animation: fadeUp 1.8s ease;
 }

 @keyframes fadeUp {
     from {
         transform: translateY(40px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .about h2 {
     font-size: 2.2rem;
     margin-bottom: 15px;
     color: #333;
 }

 .about p {
     color: #666;
     line-height: 1.8;
     font-size: 20px;
 }

 /* ---------------- Vision & Mission ---------------- */
 .vision-mission {
     padding: 70px 10%;
     background: white;
 }

 .vision-mission h2 {
     font-size: 2.3rem;
     margin-bottom: 40px;
 }

 .vm-container {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
 }

 .vm-box {
     flex: 1 1 45%;
     background: #f0f0f0;
     padding: 30px;
     border-radius: 12px;
     transition: 0.3s;
     animation: fadeUp 1.4s ease;
 }

 .vm-box:hover {
     background: #e3e3e3;
     transform: translateY(-10px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .vm-box h3 {
     margin-bottom: 12px;
     color: var(--secondary);
     font-size: 30px;
 }

 .vm-box p {
     color: #555;
 }

 /* ---------------- centers ---------------- */
 .our-center {
     background: linear-gradient(rgb(158 79 86 / 61%), rgb(154 74 80));
     align-content: center;
     text-align: center;

 }

 .our-center .col-md-6 {
     border: 1px solid #ffffff4f;
     padding: 40px;
 }

 .our-center i {
     color: white;
     font-size: 40px;
 }

 .our-center h3 {
     color: white;
     font-size: 18px;
 }

 .our-center p {
     color: var(--secondary);
     font-size: 18px;
 }


 /* ---------------- Responsive ---------------- */
 @media (max-width: 768px) {

     .about {
         padding: 50px 7%;
     }

     .about .text h2 {
         font-size: 1.8rem;
     }

     .vision-mission {
         padding: 50px 7%;
     }

 }

 @media (max-width: 450px) {
     .about p {
         font-size: 16px;
     }

 }


 /* ---------------- ashram---------------- */
 /* Ashram Tabs */
 .ashram-tabs {
     display: flex;
     justify-content: center;
     margin-bottom: 50px;
     border-bottom: 1px solid var(--light-gray);
 }

 .tab-btn {
     padding: 15px 30px;
     background-color: transparent;
     border: none;
     cursor: pointer;
     font-weight: 600;
     font-size: 1.1rem;
     transition: var(--transition);
     border: 1px solid #98454c36;
     color: var(--primary);
 }

 .tab-btn:hover {
     background-color: var(--primary-light);
     color: #ffffff;
 }

 .tab-btn.active {
     color: #ffffff;
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
     animation: fadeIn 0.5s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 /* Ashram Hero */
 .ashram-hero {
     margin-bottom: 60px;
 }

 .ashram-hero-content {
     display: flex;
     align-items: center;
     gap: 50px;
 }

 .ashram-hero-text {
     flex: 1;
 }

 .ashram-hero-image {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 /* Features Section */
 .features {
     background-color: var(--light-gray);
     padding: 60px 0;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background-color: white;
     padding: 30px;
     border-radius: 8px;
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .feature-card:hover {
     transform: translateY(-10px);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background-color: var(--primary-light);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 1.8rem;
 }

 /* Gallery Section */
 .gallery {
     padding: 60px 0;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 20px;
 }

 .gallery-item {
     border-radius: 8px;
     overflow: hidden;
     position: relative;
     height: 250px;
     box-shadow: var(--shadow);
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .gallery-item:hover img {
     transform: scale(1.1);
 }

 .gallery-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
     color: white;
     padding: 20px;
     transform: translateY(100%);
     transition: var(--transition);
 }

 .gallery-overlay h3 {
     font-size: 18px !important;
 }

 .gallery-item:hover .gallery-overlay {
     transform: translateY(0);
 }

 /* Daily Schedule */
 .schedule {
     background-color: var(--light-gray);
     padding: 60px 0;
 }

 .schedule-table {
     background-color: white;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .schedule-row {
     display: flex;
     border-bottom: 1px solid var(--light-gray);
 }

 .schedule-row:last-child {
     border-bottom: none;
 }

 .schedule-time {
     flex: 1;
     padding: 20px;
     background-color: var(--primary-light);
     color: white;
     font-weight: 600;
 }

 .schedule-activity {
     flex: 3;
     padding: 20px;
 }

 /* Visit Info */
 .visit-info {
     padding: 60px 0;
 }

 .visit-container {
     display: flex;
     gap: 50px;
 }

 .visit-details {
     flex: 1;
 }

 .visit-map {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .visit-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
 }

 .visit-icon {
     background-color: var(--primary);
     color: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     flex-shrink: 0;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {

     .ashram-hero-content,
     .visit-container {
         flex-direction: column;
     }

     .ashram-hero-image,
     .visit-map {
         order: -1;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }
 }

 @media (max-width: 768px) {

     .ashram-tabs {
         flex-direction: column;
         align-items: center;
     }

     .tab-btn {
         width: 100%;
         text-align: center;
     }
 }

 /* ---------------- activity ---------------- */
 /* Activities Section */
 .activit-intro {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 50px;
     font-size: 1.1rem;
 }

 .activit-detail {
     margin-bottom: 80px;
 }

 .activit-content {
     display: flex;
     align-items: center;
     gap: 50px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .activit-text {
     flex: 1;
 }

 .activit-text h2 {
     margin-bottom: 50px;
     position: relative;
     color: var(--secondary);
 }

 .activit-text h2:after {
     content: '';
     display: block;
     width: 80px;
     height: 4px;
     background-color: var(--primary);
 }

 .activit-image {
     flex: 1;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: var(--shadow);
 }

 .activit-stats {
     display: flex;
     justify-content: space-around;
     text-align: center;
     background-color: var(--light-gray);
     padding: 30px;
     border-radius: 8px;
     margin-top: 30px;
     flex-wrap: wrap;
 }

 .stat-item h3 {
     font-size: 2.5rem;
     color: var(--primary);
     margin-bottom: 5px;
 }

 .activit-actions {
     display: flex;
     gap: 20px;
     margin-top: 30px;
 }

 /* Impact Section */
 .impact {
     background-color: var(--light-gray);
 }

 .impact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .impact-card {
     background-color: white;
     padding: 30px;
     border-radius: 8px;
     text-align: center;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .impact-card:hover {
     transform: translateY(-10px);
 }

 .impact-icon {
     width: 70px;
     height: 70px;
     background-color: var(--primary-light);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     font-size: 1.8rem;
 }

 @media(max-width: 500px) {
     .activit-image {
         flex: auto;

     }
 }

 /* ---------------- Contact Info ---------------- */
 .cont-info {
     padding: 70px 10%;
     display: flex;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
 }

 .info-box {
     flex: 1 1 30%;
     background: #fff;
     padding: 25px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
     transition: 0.3s;
 }

 .info-box:hover {
     transform: translateY(-6px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
 }

 .info-box h3 {
     margin-bottom: 10px;
     color: var(--primary);
 }

 .info-box p {
     font-size: 0.95rem;
     color: #555;
 }

 /* ---------------- Contact Form / Map ---------------- */
 .contact-section {
     padding: 70px 10%;
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
 }

 form {
     flex: 1 1 45%;
     background: white;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
 }

 form h2 {
     margin-bottom: 20px;
     color: #98454c;
 }

 label {
     font-weight: 600;
     margin: 10px 0 5px;
     display: block;
 }

 input,
 textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #ccc;
     border-radius: 8px;
     margin-bottom: 15px;
     font-size: 1rem;
 }

 button {
     background: var(--secondary);
     color: white;
     padding: 12px 20px;
     border: none;
     font-size: 1.1rem;
     cursor: pointer;
     transition: 0.3s;
     width: 50%;
 }

 button:hover {
     background: var(--accent);
 }

 /* Google Map */
 .map {
     flex: 1 1 45%;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
 }

 iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 /* Reveal Animation */
 .hidden {
     opacity: 0;
     transform: translateY(40px);
 }

 .show {
     opacity: 1;
     transform: translateY(0);
     transition: all 1s ease;
 }

 /* -------------- Responsive -------------- */
 @media(max-width: 768px) {
     .contact-info {
         flex-direction: column;
         display: flex;
     }

     .contact-section {
         flex-direction: column;
     }
 }



 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }


 /* CTA Section */
 .cta {
     background: linear-gradient(rgb(158 79 86 / 61%), rgb(154 74 80));
     color: white;
     text-align: center;
     padding: 100px 0;
 }

 .cta h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
 }

 .cta p {
     font-size: 1.2rem;
     max-width: 700px;
     margin: 0 auto 30px;
 }

 .cta-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
 }


 /* Page Header */
 .page-header {
     background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/5.png') no-repeat center center/cover;
     color: white;
     text-align: center;
     padding: 100px 0;
 }

 .page-header h1 {
     font-size: 3rem;
     margin-bottom: 20px;
 }

 .breadcrumb {
     display: flex;
     justify-content: center;
     font-size: 1.1rem;
 }

 .breadcrumb a {
     color: var(--light);
 }

 .breadcrumb span {
     margin: 0 10px;
 }

 @media (max-width: 450px) {

     .page-header h1 {
         font-size: 2rem;
     }
 }

