* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f5f5e9;
    overflow-x: hidden;
}

/* Navbar Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 1000;
    background: transparent;
    opacity: 0;
    transform: translateY(-20px);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: translateX(0);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link.active {
    border-bottom: 2px solid #FFFFFF;
}

/* Hero Section Styles */
/* Hero Section Styles */
.hero1 {
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}

.hero1-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
}


/* Form Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tabs {
    display: flex;
    margin-bottom: 30px;
    background: #f5f5f5;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
}

.tab {
    padding: 15px 20px;
    cursor: pointer;
    color: #666;
    transition: 0.3s;
}

.tab.active {
    background: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

button {
    background: #333;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    padding-top: 70px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ddd;
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #333;
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    margin-top: 60px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.map img {
    max-width: 1000px;
}
@media screen and (max-width: 768px) {
body {
overflow-x: hidden;
}

/* Navbar Responsive Styles */
.main-nav {
padding: 1rem 1.5rem;
flex-direction: column;
align-items: center;
background: rgba(0,0,0,0.8);
}

.logo {
margin-bottom: 1rem;
}

.nav-links {

gap: 0.5rem;
text-align: center;
width: 110%;
}

.nav-link {
display: block;
padding: 0.5rem 0;
}

/* Hero Section Responsive */
.hero1 {
height: 50vh;
margin-top: 30%;
}

.hero1-video {
transform: scale(1.5);
}

/* Container and Forms Responsive */
.container {
padding: 20px 10px;
}

.tabs {
flex-direction: column;
}

.tab {
text-align: center;
padding: 10px;
}

.form-container {
padding: 15px;
}

.form-group {
margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
padding: 10px;
font-size: 14px;
}

.radio-group {
flex-direction: column;
gap: 10px;
}

.radio-group label {
display: flex;
align-items: center;
gap: 10px;
}

/* Footer Responsive */
.footer .row {
flex-direction: column;
}

.footer-widget {
margin-bottom: 30px;
text-align: center;
}

.footer-widget ul {
display: flex;
flex-direction: column;
align-items: center;
}

.social-links {
display: flex;
justify-content: center;
gap: 15px;
}

/* Button Styles */
button {
width: 100%;
padding: 12px;
font-size: 14px;
}

/* Address and Map Section */
.map img {
width: 100%;
height: auto;
}

.address {
text-align: center;
}
}