/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #f0a500;
}

/* Header Styling */
.hero {
    display: flex;
    justify-content: space-between;
    background-image: url("/assets/3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
    
    top: 0;
    z-index: 1000;
    
    color: #ffffff;
   
}

.overlay{
   
    padding:20px;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background:linear-gradient(rgba(0, 0, 0, 0.952), rgba(0, 0, 0, 0.6));
    width:100%;
    align-items: center;
 

}

.header h1 {
    font-size: 28px;
    color: #f0a500;
}

.navbar a {
    color: #bdbdbd;
    margin: 0 15px;
    font-size: 16px;
}

.navbar .cta {
    color: #ffffff;
    font-weight: bold;
}
/* Hero Section */


.hero h2 {
    font-size: 36px;
    color: #f0a500;
}

.hero p {
    color: #cccccc;
    font-size: 1.2em;
}

.hero-btn {
    background-color: #f0a500;
    color: #121212;
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(240, 165, 0, 0.5);
    transition: transform 0.2s;
    margin-bottom:50px;
}

.hero-btn:hover {
    transform: scale(1.1);
}

/* Packages Section */
.packages {
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #1a1a1a;
}

.packages h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.package {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 calc(33.333% - 40px);
    max-width: 300px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0; /* Start hidden for animation */
    transform: translateY(30px); /* Initial position for scroll animation */
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

/* Scroll Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package h3 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #f0a500;
    font-family: 'Brush Script MT', cursive;
    font-weight: bold;
    text-decoration:underline;
}

/* Enhancing .headings class */
.headings {
    padding: 20px;
    margin-bottom: -20px;
    justify-content: center;
    background: linear-gradient(135deg, #333333, #1a1a1a);
    text-align: center;
    color: #f0a500;
    font-size: 18px;
    font-family: 'Brush Script MT', cursive;
    font-weight: bold;
    
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.logo {
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Package Hover Effect */
.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
}

/* Package Content Styling */
.package ul {
    list-style: none;
    margin: 15px 0;
}

.package ul li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.package .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #f0a500;
}

/* Package Colors */
.bronze { border-left: 5px solid #cd7f32; box-shadow: 0 4px 8px #a46322; }
.silver { border-left: 5px solid #c0c0c0; box-shadow: 0 4px 8px #8f8e8e; }
.golden { border-left: 5px solid #ffd700; box-shadow: 0 4px 8px #c8a50a; }
.diamond { border-left: 5px solid #b9f2ff; box-shadow: 0 4px 8px #3fb9d5; }

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #121212;
}

.services h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #ffffff;
}

.service-category {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-category h3 {
    font-size: 24px;
    color: #f0a500;
    margin-bottom: 15px;
}

.service-category ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #bdbdbd;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #ffffff;
}

th {
    background-color: #333333;
    font-weight: bold;
    color: #f0a500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 360px;
        max-width:380px;
    }
    

    select{
        font-size:35px;
        color:#121212;
    }
}


/* Trigger animations on scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}




.popup .exit-button {
    background-color: #2a2a2a;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width:45px;
    height:auto;
}





.exit-button {
    position: absolute;
    top: 10px;
    right: 10px;

    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
   
    height:auto;
}
.exit-button:hover {
    color: #ff0000;
}





.popup {
    display: none;
    flex-direction: column;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0, 0, 0);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    animation: popupFadeIn 0.5s ease forwards;
    color:#fff;
}
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
.overlay-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.popup form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popup h2 {
    margin-bottom: 15px;
    text-align: center;
}
.popup input, .popup select, .popup textarea, .popup button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    
}
label{
    color:#8f8e8e;
}

select{
    font-size:20px;
    color:#121212;
    
}
input{
    font-size:20px;
}

input::placeholder{color:#767676;font-size:18px;}

textarea::placeholder{color:#767676;font-size:18px;}

#date::placeholder{color:#767676;}

.submitt{
    background-color: #f0a500;
    border-radius: 50px;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width:100%;
    height:auto;
    margin-top:40px;
    font-size:20px;
    padding:20px 0;
}

.popup button:hover {
    background-color: #0056b3;
}
.success-message, .error-message {
    display: none;
    text-align: center;
    padding: 10px;
    margin: 20px 0;
    border-radius: 5px;

}
.success-message {
    background-color: #d4edda;
    color: #155724;
    
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
}