/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2e2000;
    padding: 10px 20px;
    color: white;
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
    z-index: 1000;
}

.navbar.scrolled {
    background: #361600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 5%;
}

@font-face {
    font-family: 'Samarkan';
    src: url('../assets/fonts/SAMAN___.TTF') format('truetype');
    font-display: swap;
}

/* Logo Styling */
.logo {
    text-align: center;
    position: relative;
}

.logo-text {
    font-family: 'Samarkan', sans-serif;
    font-size: 45px;
    font-style: var(#0c0b07);
    color: rgb(255, 254, 249);
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 223, 0, 1), 
                 0 0 20px rgba(255, 223, 0, 0.8), 
                 0 0 30px rgba(255, 215, 0, 0.7), 
                 0 0 40px rgba(255, 200, 0, 0.6), 
                 0 0 50px rgba(255, 180, 0, 0.5);
}

.tagline {
    font-size: 14px;
    font-weight: bold;
    color: rgb(249, 236, 176);
    text-transform: capitalize;
    margin-top: -5px;
    display: block;
    text-shadow: 0 0 8px rgba(255, 223, 0, 0.9), 
                 0 0 10px rgba(255, 200, 0, 0.7);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    position: relative;
    z-index: 1100;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 60%;
        height: 80vh;
        background: rgba(0, 0, 0, 0.9);
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        border-radius: 10px 0 0 10px;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }
    
    .mobile-menu ul li {
        padding: 15px;
    }
    
    .mobile-menu ul li a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
}
@media (max-width: 768px) { /* Show only on small screens */
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 77px; /* Adjust this value to lower the menu */
    right: -100%;
    width: 60%;
    height: 60vh; /* Reduce height to 80% of viewport */
    background: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 10px 0 0 10px; /* Add rounded corners for a smooth effect */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile-menu ul li {
    padding: 15px;
}
.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111; /* Ensuring a consistent dark background */
}

/* Slide Container */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slides.active {
    opacity: 1;
    z-index: 1;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(85%) contrast(1.1);
}

/* Automatic Sliding via Keyframes */
.slider .slides:nth-child(1) { animation: slideAnimation 9s infinite; }
.slider .slides:nth-child(2) { animation: slideAnimation 9s infinite 3s; }
.slider .slides:nth-child(3) { animation: slideAnimation 9s infinite 6s; }

@keyframes slideAnimation {
    0% { opacity: 0; }
    15% { opacity: 1; }
    45% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

/* Text Overlay with Glass Effect - Shifted Down */
.slide-text {
    position: absolute;
    top: 60%; /* Moved slightly down */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 2;
    width: 60%;
}

.text-overlay {
    background: rgba(250, 195, 131, 0.55);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 10px rgba(255, 223, 0, 1), 
    0 0 20px rgba(255, 223, 0, 0.8), 
    0 0 30px rgba(255, 215, 0, 0.7), 
    0 0 40px rgba(255, 200, 0, 0.6), 
    0 0 50px rgba(255, 180, 0, 0.5);
}
@font-face {
    font-family: 'Samarkan';
    src: url('../assets/fonts/SAMAN___.TTF') format('truetype');
    font-display: swap;
}

.slide-text span {
    font-family: 'samarkan';
    font-style: italic;
    color: #500109; /* Warm golden color */
    text-shadow: 0 0 10px rgba(255, 223, 0, 1), 
    0 0 20px rgba(255, 223, 0, 0.8), 
    0 0 30px rgba(255, 215, 0, 0.7), 
    0 0 40px rgba(255, 200, 0, 0.6), 
    0 0 50px rgba(255, 180, 0, 0.5);
}

.slide-text p {
    color: #0c0b07;
    font-size: 1.4rem;
    margin: 15px 0;
}

/* Call-to-Action Button */
.btn-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.cta-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #e55d00;
}

.reserve-btn {
    background-color: #090147;
}

.reserve-btn:hover {
    background-color: #0c0605;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .btn-group {
        flex-direction: column;
        gap: 15px;
    }
}
/* Dots for Navigation - More Visible */
.dots-container {
    position: absolute;
    bottom: 25px; /* Slightly raised */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dots-container div {
    width: 16px; /* Increased size */
    height: 16px;
    background: rgba(255, 255, 255, 0.85); /* Brighter for visibility */
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dots-container .active {
    background: #f5a623;
    transform: scale(1.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-text {
        top: 50%; /* Keep slightly lower on smaller screens */
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 12px 22px;
    }
    
    .dots-container div {
        width: 12px;
        height: 12px;
    }
}

/* Partners Section */
.partners-section {
    text-align: center;
    margin: 50px 0;
}

.partners-heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 5px;
}

/* Partner Links */
.partner-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 10px;
}

/* Partner Cards */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.partner-card img {
    width: 80px; /* Adjusted for mobile */
    height: auto;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 14px;
    font-weight: bold;
}

/* Popup Modal */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.popup iframe {
    width: 100%;
    height: 300px;
}

.close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .partners-heading {
        font-size: 20px;
    }

    .partner-card {
        width: 150px;
    }

    .partner-card img {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .partner-links {
        flex-direction: column;
        align-items: center;
    }

    .partner-card {
        width: 80%;
        max-width: 220px;
    }

    .partner-card img {
        width: 60px;
    }

    .popup iframe {
        height: 250px;
    }
}
/* Awards Section Styling */
.awards-section {
    background: url('assets/award-bg.jpg') center/cover no-repeat fixed;
    padding: 100px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 233, 178, 0.6); /* Soft dark overlay */
}

/* Container */
.awards-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Import Font */
@font-face {
    font-family: 'Samarkan';
    src: url('../assets/fonts/SAMAN___.TTF') format('truetype');
    font-display: swap;
}

/* Title */
.classic-title {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 15px rgba(255, 204, 0, 0.8);
}

/* Text */
.awards-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Highlight */
.highlight {
    font-family: 'Samarkan', sans-serif; /* Applied Samarkan font */
    color: #c53302;
    font-weight: bold;
}

/* Award Card */
.award-card {
    background: rgba(253, 113, 26, 0.15);
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 6px 15px rgba(251, 9, 9, 0.3);
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(205, 10, 10, 0.3);
}

/* Award Image */
.award-image {
    width: 250px; /* Increased size */
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 204, 0, 0.4);
}

/* Award Details */
.award-detail {
    font-size: 1.4rem;
    font-weight: bold;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Applying Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Restaurant Features Section Styling */
.restaurant-features {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.classic-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6b3e26;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Slider Wrapper (for hiding overflow) */
.features-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Features Slider */
.features-slider {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    transition: transform 0.5s ease-in-out;
}

/* Individual Feature Card */
.feature-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.feature-info {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Social Media Embed */
.social-frame {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer Styling */
footer {
    background-color: #2C1A10;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

/* Footer Container */
.footer-container {
    max-width: 1120px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Custom Font */
@font-face {
    font-family: 'Samarkan';
    src: url('../assets/fonts/SAMAN___.TTF') format('truetype');
    font-display: swap;
}

/* Heading Styling */
.footer-section h2 {
    font-family: 'Samarkan', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #ff6600;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #facc15;
}

/* Links */
.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #facc15;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px 20px; /* Increased top padding to move content below navbar */
    text-align: center;
}

/* About Us Section */
#about-us {
    padding: 50px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Header */
h1 {
    color: #8B0000;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Card Styles */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.card:hover {
    transform: scale(1.05);
}

/* Testimonial Section */
.testimonial {
    margin-top: 40px;
    font-style: italic;
    color: #555;
    font-weight: bold;
    text-shadow: 0px 0px 10px white;
}

/* Review Button */
.review-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #8B0000;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.review-button:hover {
    background: #a52a2a;
}

/* Review Card */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 80px 15px;
    }
    
    h1 {
        font-size: 2rem;
    }

    .card {
        width: 100%;
    }

    .review-card {
        width: 100%;
    }
}
/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #facc15;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    color: #bbb;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-form {
        flex-direction: column;
    }
    .footer-form input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    .footer-form button {
        border-radius: 4px;
    }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-container {
    text-align: center;
    position: relative;
}

/* Logo Responsive */
.preload-logo {
    width: 100px;
    animation: fadeIn 1.2s ease-in-out;
}

/* Steam Animation */
.steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.steam span {
    width: 5px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: steamRise 2s infinite ease-in-out;
}

.steam span:nth-child(2) { animation-delay: 0.4s; }
.steam span:nth-child(3) { animation-delay: 0.8s; }

/* Fade Out Effect */
.hide-preloader {
    opacity: 0;
    visibility: hidden;
}

/* Animations */
@keyframes steamRise {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-30px); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) { /* Tablets */
    .preload-logo { width: 80px; }
}

@media (max-width: 480px) { /* Mobile */
    .preload-logo { width: 60px; }
    .steam span { width: 3px; height: 15px; }
}

/* Menu Hero Section */
.menu-hero {
    background: url('../img/menu-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* Best Sellers Grid */
.best-sellers {
    text-align: center;
    padding: 50px 20px;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.menu-item img {
    width: 100%;
    border-radius: 10px;
}

.order-btn {
    background: #ff4d00;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.order-btn:hover {
    background: #d84315;
}

/* Full Menu Buttons */
.menu-links {
    text-align: center;
    margin-top: 20px;
}

.zomato-btn, .swiggy-btn {
    display: inline-block;
    padding: 12px 20px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    transition: 0.3s;
}

.zomato-btn {
    background: #E23744;
}

.swiggy-btn {
    background: #FF9900;
}

.zomato-btn:hover, .swiggy-btn:hover {
    opacity: 0.8;
}

/* Reviews Hero Section */
.reviews-hero {
    background: url('../img/reviews-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* Google Reviews */
.google-reviews {
    text-align: center;
    padding: 50px 20px;
    background: #f8f8f8;
}

.review-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 45%;
}

/* Customer Photos */
.customer-photos {
    text-align: center;
    padding: 50px 20px;
}

.photo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.photo-grid img {
    width: 45%;
    border-radius: 10px;
}

/* Video Testimonials */
.video-testimonials {
    text-align: center;
    padding: 50px 20px;
    background: #f8f8f8;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-video {
    width: 45%;
    height: 350px;
    border-radius: 10px;
}
/* Contact Hero Section */
.contact-hero {
    background: url('../img/contact-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* Contact Details */
.contact-details {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
}

/* Business Hours */
.business-hours {
    text-align: center;
    padding: 40px 20px;
}

/* Google Map */
.map {
    text-align: center;
    padding: 40px 20px;
}

/* Contact Form */
.contact-form {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #e91e63;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

#contact-form button:hover {
    background: #c2185b;
}

/* Adjust the menu section to prevent overlap */
.menu-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 10px;
    margin-top: 20px; /* Extra space for clarity */
}

/* Menu Section */
.menu-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 10px;
}

/* Menu Cards */
.menu-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.menu-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-card h2 {
    font-size: 1.6rem;
    font-weight: 5000;
    font-style: italic;
    color: #07060f;
}

.menu-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    background: #8B5E3C;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #6B4226;
}

/* PDF Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Ensure the modal is responsive */
.modal-content {
    background: white;
    padding: 15px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px; /* Prevent it from being too large on desktops */
    height: 90vh; /* Takes full height on mobile */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: auto; /* Prevents content from being cut */
}

#pageIframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block; /* Ensure it’s visible */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header Styling */
.header {
    background-color: #8d6e63;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 1.8rem;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 60px; /* Ensure the navbar has a height */
}
body {
    padding-top: 80px; /* Push content down */
}

/* Review Sections */
.review-section {
    background: #fff;
    padding: 20px;
    margin: 80px 0 20px; /* Added top margin */
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


.section-title {
    font-size: 1.5rem;
    color: #5d4037;
    text-align: center;
    margin-bottom: 10px;
}

/* Review Grid */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-item {
    padding: 15px;
    border-radius: 8px;
    background-color: #fff7e6;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.review-link:hover {
    text-decoration: underline;
}

/* Video Reviews */
.video-reviews {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    scroll-snap-type: x mandatory;
}

.video-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

iframe {
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    height: 225px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }
    iframe {
        max-width: 100%;
    }
}

/* Scoped Styles for this Page Only */
.social-page {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.social-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
}
.social-page h2 {
    color: #333;
}

/* Tag Us Section */
.social-page .ugc {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Social Media Links */
.social-page .social-links {
    background-color: #ffcc00;
    padding: 20px 0;
    border-radius: 8px;
    margin: 20px 0;
}
.social-page .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.social-page .social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}
.social-page .social-icons a:hover img {
    transform: scale(1.1);
}

/* Individual Social Sections */
.social-page .social-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    text-align: center;
}
.social-page .social-card iframe,
.social-page .social-card blockquote {
    max-width: 100%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .social-page .social-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
    .social-page .social-section {
        flex: 1;
    }
}

.order-btn {
    background-color: #ff9900;
    color: #fff;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.order-btn:hover {
    background-color: #e68a00;
}

/* Contact Section Styles for Contact Page */

/* General Styles */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
}

h3 {
    font-size: 20px;
    color: #444;
    margin-top: 20px;
}

p {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Form Inputs */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease-in-out;
}

input:focus, textarea:focus {
    border-color: #ff9900;
    outline: none;
}

/* Submit Button */
button {
    background-color: #ff9900;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #e68a00;
}

/* Google Map */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 20px; /* Added more space between contact details and Google map */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Social Media Links */
.social-links {
    text-align: center;
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    input, textarea {
        font-size: 14px;
    }
}
/* Floating Social Media Button */
.social-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
}

/* Toggle Button */
.toggle-social {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.toggle-social:hover {
    background: #555;
}

/* Social Icons */
.social-nav {
    display: none; /* Initially hidden */
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
}

.facebook { color: #1877F2; }
.whatsapp { color: #25D366; }
.email { color: #EA4335; }
.instagram { color: #E4405F; }

footer {
    background-color: #2C1A10;
    color: white;
    padding: 2rem 1.5rem;
}
.header-card {
    width: 90%;
    max-width: 800px;
    text-align: center;
    background: #ff5733;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.social-buttons {
    display: fixed;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}
.social-buttons a {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.instagram { background: #E4405F; }
.social-buttons a:hover { opacity: 0.8; }

/* WebGlow Branding Styles - Original Color Theme */
.webglow-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 254, 249, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 223, 0, 0.2);
}

.webglow-credit:hover {
    color: #ffffff;
    background: rgba(255, 223, 0, 0.1);
    border-color: rgba(255, 223, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 223, 0, 0.3);
}

.webglow-credit .sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* WebGlow Footer Branding */
.webglow-footer-brand {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.webglow-footer-brand .web-text {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.webglow-footer-brand .glow-text {
    color: #FFA500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.webglow-footer-brand:hover .web-text {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.webglow-footer-brand:hover .glow-text {
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
}

/* Responsive - Hide WebGlow credit on smaller screens */
@media (max-width: 1024px) {
    .webglow-credit {
        display: none;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Improved button hover effects */
.cta-btn, .btn {
    transition: all 0.3s ease;
}

.cta-btn:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
