body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    color: var(--white);
    overflow: hidden;
    padding-top: 70px; /* Offset for the navigation */
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--goldish-orange);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--goldish-orange);
    border: none;
    border-radius: 7px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--goldish-orange);
    border: 1px solid var(--goldish-orange);
}

/* Navigation Bar */
.hero-nav {
    position: absolute;
    top: 2%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 3;
}

.hero-logo {
    width: 220px; /* Adjust the size of the logo */
    height: auto;
}

.nav-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: #222;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.nav-menu a {
    position: relative;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
    z-index: 1;
}

.nav-menu span {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 100%;
    background: linear-gradient(45deg, #f28d1f, #1a1406);
    border-radius: 8px;
    transition: .5s ease;
}

.nav-menu a:nth-child(1):hover~span {
    left: 0;
}

.nav-menu a:nth-child(2):hover~span {
    left: 95px;
}

.nav-menu a:nth-child(3):hover~span {
    left: 189px;
    width: 110px;
}

.nav-menu a:nth-child(4):hover~span {
    left: 298px;
    width: 115px;
}

.nav-menu a:nth-child(5):hover~span {
    left: 413px;
    width: 110px;
}



main {
    padding: 2rem;
    background: #fff;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.container h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #000;
}
.container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}
p {
    margin-bottom: 1rem;
    color: #555;
}
form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form select, form textarea, form button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    background: #f28d1f;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

form button:hover {
    background: #d97718;
}
.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}
/* Disable submit button styles */
button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Visit Our Offices Section */
.visit-offices-section {
    background: #fff;
    padding: 4rem 1rem;
    text-align: center;
}

.visit-offices-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.office-locations {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.office-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(45% - 2rem);
    max-width: 500px;
    text-align: left;
}

.office-card h3 {
    color: #f28d1f;
    margin-bottom: 1rem;
}

.office-card p {
    margin: 0.5rem 0;
    color: #000000;
}

.office-card ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
    list-style: none;
    color: #000;
}

.office-card ul li {
    margin-bottom: 0.5rem;
}

.get-directions-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #f28d1f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.get-directions-btn:hover {
    background: #d97718;
}

.social-media-icons {
    margin-top: 1.5rem;
}

.social-media-icons a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: #f28d1f;
}

#form-success-message {
    color: green;
    font-weight: bold;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
