:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #f6f8f9 0%, #e5ebee 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Falling Leaves Animation */
/* Add or update the falling leaves styles */
/* Remove the old falling leaves styles and add these updated ones */
.falling-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Update the leaf styles */
.leaf {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234CAF50" d="M12,3c0,0-6.186,5.34-6.186,11.51c0,3.264,2.768,5.918,6.186,5.918s6.186-2.654,6.186-5.918C18.186,8.34,12,3,12,3z"/></svg>');
    background-size: contain;
    opacity: 0.8;
}

.leaf-small {
    width: 15px;
    height: 15px;
}

.leaf-medium {
    width: 25px;
    height: 25px;
}

.leaf-large {
    width: 35px;
    height: 35px;
}
@keyframes falling {
    0% {
      transform: translateY(-10vh) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translateY(100vh) rotate(360deg);
      opacity: 0;
    }
  }

  .falling-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
  }

  .leaf {
    position: absolute;
    font-size: 20px;
    opacity: 0.8;
    animation: falling linear infinite;
  }

/* Remove the .falling-leaves::before rule as we're using JavaScript for leaf creation */
.falling-leaves::before {
    content: '🍀';
    position: absolute;
    font-size: 20px;
    animation: falling 10s infinite linear;
    left: calc(random() * 100vw);
}
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.language-selector button {
    padding: 8px 16px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    background-color: #4CAF50;  /* Changed to green */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.language-selector button:hover {
    background-color: #45a049;  /* Darker green on hover */

    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.lang-dropdown {
    padding: 8px 16px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='maroon' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 32px;
}
.lang-dropdown:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}
.lang-dropdown option {
    background-color: white;
    color: var(--primary-color);
    padding: 12px;
}
/* Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo-img {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    animation: pulse 2s infinite ease-in-out;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
    object-fit: contain;
    background: transparent;
}
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .logo-img {
        width: 140px;
    }
}
.logo-img {
    width: 40px;
    height: 40px;
}
.logo-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Yatra One', cursive;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }
    .logo-text {
        font-size: 1.5rem;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #ff5252;
}

.side-images {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    z-index: 1;
}

.side-images.left {
    left: -300px;
}

.side-images.right {
    right: -300px;
    transform: translateY(-50%) scaleX(-1);
}

/* Responsive adjustments for side images */
@media (max-width: 1600px) {
    .side-images {
        width: 200px;
    }
    .side-images.left {
        left: -250px;
    }
    .side-images.right {
        right: -250px;
    }
}

@media (max-width: 1200px) {
    .side-images {
        display: none;
    }
}

/* Update hero container to accommodate side images */
.hero {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
}
services-highlight {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-section {
    padding: 4rem 2rem;
    border-bottom: 1px solid #ddd;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-image {
    width: 300px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-description {
    max-width: 600px;
}

.service-description p {
    color: var(--text-color);
    line-height: 1.6;
}



/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}


/* Add these styles for side animations */
.side-animation {
    position: fixed;
    top: 0;
    width: 200px;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.side-animation.left {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    animation: slideFromLeft 3s ease-out infinite;
}

.side-animation.right {
    right: 0;
    background: linear-gradient(-90deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    animation: slideFromRight 3s ease-out infinite;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Update main content to ensure it's above the animations */
main {
    position: relative;
    z-index: 1;
}

/* Update header to ensure it's above the animations */
header {
    position: relative;
    z-index: 2;
}
/* Update root colors */
:root {
    --primary-color: #8B0000;    /* Deep Maroon */
    --secondary-color: #FFD700;   /* Gold */
    --accent-color: #006400;      /* Dark Green */
    --text-color: #333;
    --light-color: #FFF5E6;
}
/* Update hero section for centered content and mandap animation */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.1);
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.site-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}
.hero-description {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.hero-description p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
}
.cta-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-description {
        padding: 0 1rem;
    }
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}
.cta-button:hover {
    transform: translateY(-2px);
    background-color: #ff5252;
}
.features {
    display: grid;
    /* Services Highlight Section */
    .services-highlight {
        /* Remove the nested styles and place them at the root level */
        .services-highlight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(139, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
            box-shadow: 0 12px 40px rgba(139, 0, 0, 0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-card p {
            color: var(--text-color);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Responsive adjustments for services */
        @media (max-width: 768px) {
            .services-highlight {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .service-card h3 {
                font-size: 1.5rem;
            }
        }
    }
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-align: center;
    text-align: center;
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
}
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}
.social-links a {
    color: white;
    text-decoration: none;
    margin-right: 1rem;
}

/* style.css*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  nav {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  ul li {
    margin-right: 20px;
  }
  
  ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  ul li a:hover {
    color: lightgreen;
  }
  
  .checkbtn {
    font-size: 30px;
    color: rgb(19, 18, 18);
    cursor: pointer;
    display: none;
  }
  
  #check {
    display: none;
  }
  
  @media (max-width: 768px) {
    .checkbtn {
      display: block;
      order: 1;
      margin-right: 20px;
    }
  
    ul {
      position: fixed;
      top: 80px;
      right: -100%;
      background-color: rgb(255, 255, 255);
      width: 100%;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
    }
  
    ul li {
      margin: 20px 0;
    }
  
    ul li a {
      font-size: 20px;
    }
  
    #check:checked ~ ul {
      right: 0;
    }
  }
  /* Slide Next Button */
.slide-next {
    position: fixed;
    bottom: 50%;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ff6347;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
  }
  
/* Sliding Page Container */
.page-container {
    display: flex;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
  }
  
  /* Individual Page Styling */
  .page {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
  }
  
  /* Navigation Buttons */
  .nav-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 99, 71, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    z-index: 999;
  }
  
  .nav-button:hover {
    background: rgba(255, 69, 0, 1);
  }
  
  .nav-button i {
    color: white;
    font-size: 24px;
  }
  
  /* Positioning Left and Right Buttons */
  .nav-button.left {
    left: 20px;
  }
  
  .nav-button.right {
    right: 20px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-button {
      width: 40px;
      height: 40px;
    }

    .nav-button i {
      font-size: 20px;
    }
  }

/* About Us Section */
.about-us {
  background: #f9f9f9;
  padding: 40px;
  text-align: center;
}

  
  
