* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif Gujarati', 'Noto Serif', serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

.header {
    position: relative;
    width: 100%;
    text-align: center;
    background: #2E4B2E;
}

.header-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
}

.nav-toggle {
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
}

.lang-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 1.2rem;
    background: #800000;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transition: background 0.3s, transform 0.3s;
}

.lang-toggle:hover {
    background: #600000;
    transform: scale(1.05);
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.3s;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #20b358;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #2E4B2E;
    color: white;
    transition: left 0.3s ease;
    z-index: 999;
}

.nav-drawer.active {
    left: 0;
}

.nav-drawer ul {
    list-style: none;
    padding: 20px;
    margin-top: 50px;
}

.nav-drawer li {
    margin: 15px 0;
}

.nav-drawer a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.nav-drawer a:hover {
    color: #800000;
}

.close-btn {
    float: right;
    font-size: 1.8rem;
    padding: 10px;
    cursor: pointer;
}

.slideshow {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.secondary-slideshow {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 20px 0;
}

.slides {
    display: flex;
    animation: slide 16s infinite;
}

.secondary-slideshow .slides {
    animation: slide-secondary 20s infinite;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
}

.secondary-slideshow .slide img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(46, 75, 46, 0.8);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 1.1rem;
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

@keyframes slide-secondary {
    0% { transform: translateX(0); }
    15% { transform: translateX(0); }
    20% { transform: translateX(-100%); }
    35% { transform: translateX(-100%); }
    40% { transform: translateX(-200%); }
    55% { transform: translateX(-200%); }
    60% { transform: translateX(-300%); }
    75% { transform: translateX(-300%); }
    80% { transform: translateX(-400%); }
    95% { transform: translateX(-400%); }
    100% { transform: translateX(0); }
}

.header-content-section {
    background: rgba(46, 75, 46, 0.1);
    padding: 20px;
    text-align: center;
    margin-top: 120px;
    position: relative;
    min-height: 120px;
    box-sizing: border-box;
    z-index: 2;
}

.header-content {
    max-width: 700px;
    margin: 0 auto;
    width: 95%;
    padding-top: 20px;
}

.header-content h1 {
    font-size: 2.8rem;
    color: #2E4B2E;
    font-weight: 700;
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-content p {
    font-size: 1.3rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #800000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    margin: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: #600000;
    transform: scale(1.05);
}

.cta-btn.secondary {
    background: #2E4B2E;
}

.cta-btn.secondary:hover {
    background: #1E3B1E;
    transform: scale(1.05);
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn.facebook-btn {
    background: #1877F2;
}

.social-btn.facebook-btn:hover {
    background: #1465C0;
    transform: scale(1.05);
}

.social-btn.instagram-btn {
    background: #E1306C;
}

.social-btn.instagram-btn:hover {
    background: #C13584;
    transform: scale(1.05);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 15px;
    text-align: center;
}

.content h2 {
    font-size: 2.4rem;
    color: #2E4B2E;
    font-weight: 700;
    margin-bottom: 15px;
}

.content h3 {
    color: #600000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.service-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.service-item h3 {
    color: #600000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.review-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.review-item h3 {
    color: #600000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-item .stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating {
    text-align: center;
    margin-bottom: 20px;
}

.rating .stars {
    color: #FFD700;
    font-size: 1.4rem;
    margin: 8px 0;
}

.rating a {
    color: #2E4B2E;
    text-decoration: underline;
    font-size: 1.1rem;
}

.rating a:hover {
    color: #800000;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(46, 75, 46, 0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 1rem;
}

.booking-form, .contact-form {
    max-width: 600px;
    margin: 15px auto;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
}

.booking-form label, .contact-form label {
    display: block;
    margin: 8px 0 5px;
    color: #2E4B2E;
    font-size: 1.1rem;
}

.booking-form input, .booking-form select,
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Noto Serif Gujarati', 'Noto Serif', serif;
    font-size: 1.1rem;
}

.contact-form textarea {
    height: 120px;
}

.call-now-section {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
}

.bottom-nav {
    background: #800000;
    padding: 15px;
    margin: 20px 0;
}

.bottom-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-btn {
    display: block;
    padding: 10px;
    background: #800000;
    color: white;
    text-decoration: none;
    text-align: center;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #600000;
}

.footer {
    background: #008080;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-section.reels {
    flex: 0 0 100%;
    max-width: 900px;
    margin: 20px auto;
}

.footer-section h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section p, .footer-section a {
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FFD700;
}

.map-container {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 10px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.reel-container {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
}

.reel-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.copyright {
    margin-top: 20px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    body {
        font-size: 1.8rem;
    }

    .header {
        background: #2E4B2E;
    }

    .header-image {
        height: 100px;
    }

    .nav-toggle {
        font-size: 1.6rem;
        top: 8px;
        left: 8px;
    }

    .lang-toggle {
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        padding: 8px 16px;
        font-size: 1.1rem;
        z-index: 1000;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .nav-drawer {
        width: 250px;
        left: -250px;
    }

    .nav-drawer a {
        font-size: 1.2rem;
    }

    .close-btn {
        font-size: 1.6rem;
    }

    .slideshow {
        max-height: 350px;
        margin-top: 50px;
    }

    .slide img {
        height: 350px;
		object-fit: contain;
		width:100%;
		height:auto;
    }

    .secondary-slideshow {
        height: 300px;
        max-height: 300px;
    }

    .secondary-slideshow .slide img {
        max-height: 250px;
        object-fit: contain;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 6px;
    }

    .header-content-section {
        padding: 15px;
        margin-top: 100px;
        min-height: 100px;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .cta-btn, .social-btn {
        padding: 8px 16px;
        font-size: 1rem;
        margin: 5px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .content {
        margin: 20px auto;
        padding: 10px;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content h3 {
        font-size: 1.7rem;
    }

    .services-grid, .reviews-grid, .gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-image {
        height: 120px;
    }

    .gallery-item img {
        height: 150px;
    }

    .bottom-nav {
        padding: 10px;
        margin: 15px 0;
    }

    .bottom-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .nav-btn {
        padding: 8px;
        font-size: 1rem;
        border: 2px solid white;
    }

    .call-now-section {
        padding: 15px;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-section {
        margin: 15px;
    }

    .footer-section.reels {
        flex: 1;
        max-width: 100%;
    }

    .footer-section h3 {
        font-size: 1.8rem;
    }

    .footer-section p, .footer-section a {
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }

    .header-image {
        height: 80px;
    }

    .nav-drawer {
        width: 200px;
        left: -200px;
    }

    .nav-drawer a {
        font-size: 1.1rem;
    }

    .lang-toggle {
        top: 90px;
        font-size: 1rem;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }

    .slideshow {
        max-height: 350px;
        margin-top: 20px;
    }

    .slide img {
         height: 350px;
		object-fit: contain;
		width:100%;
	
    }

    .secondary-slideshow {
        height: 350px;
        max-height: 350px;
    }

    .secondary-slideshow .slide img {
        max-height: 350px;
        object-fit: contain;
    }

    .slide-caption {
        font-size: 0.9rem;
        padding: 5px;
    }

    .header-content-section {
        padding: 10px;
        margin-top: 20px;
        min-height: 160px;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .cta-btn, .social-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    .content h3 {
        font-size: 1.6rem;
    }

    .booking-form, .contact-form {
        padding: 10px;
    }

    .booking-form input, .booking-form select,
    .contact-form input, .contact-form textarea {
        padding: 6px;
        font-size: 1rem;
    }

    .bottom-nav {
        padding: 8px;
        margin: 10px 0;
    }

    .bottom-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .nav-btn {
        padding: 6px;
        font-size: 0.9rem;
        border: 2px solid white;
    }

    .call-now-section {
        padding: 10px;
    }

    .footer {
        padding: 20px 10px;
    }

    .footer-section h3 {
        font-size: 1.6rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .bottom-nav-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .nav-btn {
        padding: 5px;
        font-size: 0.8rem;
    }

    .header-content-section {
        padding: 8px;
        margin-top: 100px;
        min-height: 140px;
    }

    .header-content h1 {
        font-size: 1.6rem;
    }

    .header-content p {
        font-size: 0.9rem;
    }

    .lang-toggle {
        top: 80px;
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .slideshow {
        max-height: 200px;
        margin-top: 30px;
    }

    .slide img {
      height: 350px;
		object-fit: contain;
		width:100%;
		}

    .secondary-slideshow {
        height: 250px;
        max-height: 250px;
    }

    .secondary-slideshow .slide img {
        max-height: 180px;
        object-fit: contain;
    }
}