/* Existing styles from your previous pages */
     
body {
    font-family: "Goldman", system-ui;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}




/* Header styles */
/* Header styles */
/* Header styles */
header {
display: flex; /* Use flexbox layout */
justify-content: space-between; /* Space between logo and nav links */
align-items: center; /* Align items vertically in the center */
padding:0px 30px;
font-size: 60px;
top: 0;
z-index: 1000;

}
li{

margin: 0;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
width: 90px;
height: auto;
margin-right: 10px;

}

.logo h1 {
    font-family: "Bungee Spice", sans-serif;
font-weight: 400;
font-style: normal;
margin: 0;
font-size: 24px;
color: #f6f5f5;
}

.nav-links {
display: flex; 
flex-direction: row; /* Align items horizontally */
align-items: center; /* Center items vertically */

}


.nav-links ul {
/* display: flex; Display links in a row */
list-style: none;
margin: 30px;
padding: 50px;


}

.nav-links ul li {
margin: 0 15px; /* Increase space between items */

}
.nav-links ul li button {
background: none; /* Remove background */
border: none; /* Remove border */
color: #fcfbfb; /* Text color */
font-size: 23px; /* Font size */
/* padding: 8px 12px; */
gap: 20px;
cursor: pointer;
}
#h{
    color: white;
}

/* Hamburger Menu Styles */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.hamburger div {
width: 25px;
height: 3px;
background-color: #fff;
margin: 4px 0;
transition: 0.4s;
}


/* Content styles */
.contact-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.contact-content h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-card {
background-color: #322f2f46;
border: none;
border-radius: 16px;
width: calc(33% - 30px); /* Adjust the width to make it bigger */
text-align: center;
padding: 30px 20px;
box-sizing: border-box;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Modern box-shadow */
}

.contact-card:hover {
transform: translateY(-10px); /* Adds a subtle lift on hover */
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhances shadow on hover */
}

.contact-card h3 {
margin: 15px 0 10px;
font-size: 22px; /* Slightly larger text for modern feel */
color: #f9f9f9;
}

.contact-card p {
margin: 8px 0;
font-size: 18px; /* Increase font size for better readability */
color: #ffffff;
}

footer {
    background-color: black;
    color: rgb(250, 250, 250);
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-left, .footer-right {
    width: 45%;
}
.footer-left h4, .footer-right h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: greenyellow;
}
.footer-left p, .footer-right p {
    margin: 5px 0;
    line-height: 1.6;
}
.footer-right p strong {
    color: #fbfbfb;
}
/* From Uiverse.io by asgardOP */ 
.ul {
width: fit-content;
height: fit-content;
background-color: transparent;
list-style: none;
}
.li {
margin-bottom: 0px;
}
.button {
background-color: transparent;
font-family: sans-serif;
color: rgb(255, 255, 255);
border: none;
font-size: 22px;
font-weight: 700;
padding: 10px 30px;
cursor: pointer;
position: relative;
padding-left: 11px;
text-align: center;
transition: 0.1s;
z-index: 1;
}

.p {
z-index: 2;
position: relative;
}

.button:hover {
color: rgb(172, 40, 0);
text-align: center;
}
.button:hover::before {
transform: rotate(0deg);
width: 100%;
height: 40px;
top: 2px;
border-radius: 3px;
background-color: rgb(255, 83, 53);
}
.button::before {
content: "";
border-radius: 1px;
position: absolute;
width: 6px;
height: 6px;
background-color: tomato;
left: -10px;
top: 19px;
cursor: pointer;
transform: rotate(225deg);
transition: 0.3s;
z-index: -1;
}

.button:active::before {
background-color: rgb(255, 38, 0);
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-card {
        width: calc(50% - 20px);
    }

    .footer-left, .footer-right {
        width: calc(100% - 40px);
    }

    .nav-links {
        display: none; /* Initially hidden on mobile screens */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
        position: fixed; /* Fixed position to overlay the entire screen */
        top: 0;
        right: 0;
        width: 100vw; /* Full width of the viewport */
        height: 100vh; /* Full height of the viewport */
        padding: 20px; /* Space around the content */
        box-sizing: border-box; /* Include padding in width and height */
        z-index: 1000; /* Ensure it's above other content */
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
        
    }

    .nav-links.active {
        display: inline-flex; /* Show menu when active class is added */
        
    }

    .nav-links ul {
        display: inline;
        margin: 0;
        padding: 0;
        list-style: none;
        width: auto;
    }

    /* .nav-links ul li {
         margin: 20px 0; 
    } */

    .nav-links ul li a {
        display: block; /* Make the links fill the width */
        padding: 15px 0;
        font-size: 24px; /* Larger text for better readability */
        color: #fff; /* White text color */
        text-align: center; /* Center text horizontally */
        text-decoration: none; /* Remove underline from links */
    }

    .nav-links ul li a:hover {
        background-color: #696565; /* Background color on hover */
    }

    .hamburger {
        display: flex;
    }

    header {
        position: relative;
    }
}

@media (max-width: 480px) {
    .contact-card {
        width: 100%;
    }
}
@media (min-width: 769px) {
.nav-links {
display: flex; /* Show menu on desktop screens */
flex-direction: row; /* Align items horizontally */
background-color: transparent; /* Transparent background for desktop */
position: static; /* Static position on desktop */
width: auto; /* Width adjusts to content */
height: auto; /* Height adjusts to content */
padding: 0; /* Remove padding on desktop */
box-sizing: content-box;
z-index: auto; /* Normal z-index */
justify-content: center; /* Center items horizontally */

}

.nav-links ul {
display: flex; /* Display links in a row */
list-style: none;
margin: 0;
padding: 0;
}


.nav-links ul li {
margin: 0; /* Remove margin for horizontal layout */
}

.nav-links ul li a {
padding: 8px 12px;
font-size: 18px; /* Font size for desktop */
color: #fcfbfb;
text-decoration: none;
}

}

/* Button styling with fonts */
.button {
background-color: transparent;
font-family: "Audiowide", sans-serif; /* Apply Audiowide font */
font-weight: 400;
font-style: normal;
color: #fff;
border: none;
font-size: 18px;
font-weight: 700;
padding: 10px 30px;
cursor: pointer;
position: relative;
text-align: center;
transition: 0.3s;
z-index: 1;
}

.p {
z-index: 2;
position: relative;
margin: 0;
}

/* Hover effects for buttons */
.button:hover {
color: rgb(172, 40, 0);
}

.button:hover::before {
transform: rotate(0deg);
width: 100%;
height: 40px;
top: 0;
border-radius: 3px;
background-color: rgb(255, 83, 53);
}

/* Background animation */
.button::before {
content: "";
position: absolute;
width: 6px;
height: 6px;
background-color: tomato;
left: -10px;
top: 19px;
cursor: pointer;
transform: rotate(225deg);
transition: 0.3s;
z-index: -1;
border-radius: 3px;
}

/* Active state of the button */
.button:active::before {
background-color: rgb(255, 38, 0);
}

/* header */

.nav-links {
    padding-bottom: 10px;
}

.ul {
    display: flex;
    
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.logo {
    padding-top: 2%;
}

.last {
    margin-left: auto;
}