

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
        
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Inter', sans-serif;
 /* final_improvement_all_pages */
    font-family: 'Inter', sans-serif; 
    background-image: url('/assets/images/redfort.png');
    background-size:cover;
    background-image: url('../assets/images/Red fort.jpg');
    background-size: cover;

    background-position: center;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Background overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 245, 238, 0.6); */
    z-index: -1;
}

/* Navigation Styles */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #ff9933;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.nav-menu a:hover {
    color: #ff9933;
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    padding-left: 40px;
}

.nav-buttons a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0.6rem 1.8rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 120px;
    transition: all 0.3s ease;
    gap: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background: #ff9933;
    color: white;
}

.nav-buttons a span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-buttons a i {
    opacity: 0;
    position: absolute;
    right: 1.2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.nav-buttons a:hover span {
    transform: translateX(10px);
}

.nav-buttons a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Main content styles */
.main-content {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(139, 69, 19, 0.25),
        0 15px 35px rgba(160, 82, 45, 0.15),
        0 5px 15px rgba(205, 133, 63, 0.1);
    border: 2px solid rgba(222, 184, 135, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #CD853F, #DEB887, #F5DEB3);
}

.form-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 25%, #CD853F 50%, #DEB887 75%, #654321 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: #654321;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(160, 82, 45, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-family: 'Inter', sans-serif;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #A0522D;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(160, 82, 45, 0.15);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #ff9933;
    transform: scale(1.1);
}

.star.active {
    text-shadow: 0 0 10px rgba(255, 153, 51, 0.5);
}

/* Share Section */
.share-section {
    background: rgba(255, 153, 51, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.share-title {
    font-weight: 600;
    color: #654321;
    margin-bottom: 1rem;
    text-align: center;
}

.share-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: white;
    color: #654321;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #ff9933;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ff9933 0%, #e68a00 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 153, 51, 0.4);
    background: linear-gradient(135deg, #e68a00 0%, #cc7a00 100%);
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.show {
    display: flex;
}

.popup-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-message {
    color: #654321;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-close {
    background: #ff9933;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #e68a00;
    transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .nav-menu {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .main-content {
        padding-top: 180px;
    }

    .form-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .share-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    .main-content {
        padding-top: 220px;
    }

    .star {
        font-size: 1.5rem;
    }
}

  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f7f7f7;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Background Animated Elements */
        .bg-element {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
            opacity: 0.7;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Heritage Elements */
        .supreme-court {
            top: 10%;
            left: 8%;
            background: linear-gradient(135deg, #8B4513, #D2691E);
            animation-delay: 0s;
        }

        .temple {
            top: 20%;
            right: 10%;
            background: linear-gradient(135deg, #FF6347, #FFD700);
            animation-delay: 1s;
        }

        .waterfall {
            top: 65%;
            left: 5%;
            background: linear-gradient(135deg, #4682B4, #87CEEB);
            animation-delay: 2s;
        }

        /* Culture Elements */
        .dance {
            top: 15%;
            left: 45%;
            background: linear-gradient(135deg, #DA70D6, #FF69B4);
            animation-delay: 3s;
        }

        .music {
            top: 50%;
            right: 8%;
            background: linear-gradient(135deg, #9370DB, #BA55D3);
            animation-delay: 4s;
        }

        /* Food Elements */
        .thali {
            top: 75%;
            right: 15%;
            background: linear-gradient(135deg, #FF8C00, #FFA500);
            animation-delay: 5s;
        }

        .spices {
            top: 40%;
            left: 10%;
            background: linear-gradient(135deg, #DC143C, #FF6347);
            animation-delay: 1.5s;
        }

        /* Festival Elements */
        .diya {
            top: 55%;
            left: 50%;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            animation-delay: 2.5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            25% {
                transform: translateY(-10px) rotate(90deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.9;
            }
            75% {
                transform: translateY(-10px) rotate(270deg);
                opacity: 0.8;
            }
        }

        /* Main Container */
        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            z-index: 10;
        }

        /* Form Card */
        .form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
            position: relative;
        }

        .form-title {
            text-align: center;
            color: #333;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #0056b3);
            border-radius: 2px;
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafafa;
            color: #333;
        }

        .form-input:focus {
            outline: none;
            border-color: #007bff;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
            transform: translateY(-1px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        /* Star Rating */
        .star-rating-group {
            margin: 25px 0;
            text-align: center;
        }

        .star-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 10px;
        }

        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            user-select: none;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .star:hover {
            color: #FFD700;
            transform: scale(1.2);
            text-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
        }

        .star.active {
            color: #FFD700;
            transform: scale(1.1);
            text-shadow: 0 4px 8px rgba(255, 215, 0, 0.6);
        }

        /* Share Experience Section */
        .share-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
        }

        .share-title {
            color: #555;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .share-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .share-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .instagram-link {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }

        .instagram-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(188, 24, 136, 0.3);
        }

        .email-link {
            background: #007bff;
            color: white;
        }

        .email-link:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            margin: 20px;
            text-align: center;
            transform: scale(0.7) translateY(50px);
            transition: all 0.4s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .popup-overlay.show .popup-card {
            transform: scale(1) translateY(0);
        }

        .popup-message {
            color: #333;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .popup-close {
            background: #007bff;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .popup-close:hover {
            background: #0056b3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        /* Error Styling */
        .form-input.error {
            border-color: #dc3545;
            background: #fff5f5;
        }

        .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .form-card {
                padding: 30px 20px;
                margin: 10px;
            }

            .form-title {
                font-size: 24px;
            }

            .bg-element {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .star {
                font-size: 1.8rem;
            }

            .share-links {
                flex-direction: column;
                align-items: center;
            }

            .popup-card {
                padding: 30px 20px;
                margin: 15px;
            }

            .popup-message {
                font-size: 16px;
            }
        }

        /* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu,
  .nav-buttons {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #000; /* Dark background */
    width: 100%;
    padding: 1rem;
    z-index: 100;
  }

  .nav-menu.active,
  .nav-buttons.active {
    display: flex;
  }

  .nav-menu li,
  .nav-buttons a {
    margin: 0.5rem 0;
    color: white;
  }
}


        @media (max-width: 480px) {
            .form-card {
                padding: 25px 15px;
            }

            .form-title {
                font-size: 22px;
            }

            .star {
                font-size: 1.6rem;
            }

            .star-rating {
                gap: 3px;
            }

            .bg-element {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

