:root{

--colorbackends: rgb(0, 63, 122);

}

/* Modal overlay */
.status-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    text-align: center;
}
.status-modal.show {
    display: block;
}
.status-modal.success {
    border: 2px solid #28a745;
}
.status-modal.error {
    border: 2px solid #dc3545;
}
.backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
}
.backdrop.show {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 1.359rem + 2.735vw, 3rem);
    margin-bottom: 1rem;
}

.hero .highlight {
    color: #005aa9;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #f4f4f4;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 100px auto;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.sc-text {
    flex: 1;
    padding: 20px;
    text-align: left;
    min-width: 300px;
}

.sc-image {
    flex: 1;
    text-align: center;
}

.sc-image img {
    max-width: 100%;
    min-width: 150px;
    border-radius: 10px;
}

.sc-text h2 {
    font-size: clamp(2rem, 1.679rem + 1.368vw, 2.5rem);
}

.sc-text p {
    font-size: clamp(1.1rem, 0.715rem + 1.641vw, 1.7rem);
    max-width: 800px;
    word-wrap: break-word;
}


/* Email Form Section */
.fm-div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 80px 20px;
    background: #fff;
}

.fm-div form {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.fm-div label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.fm-div input[type="text"],
.fm-div input[type="email"],
.fm-div input[type="tel"],
.fm-div textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.fm-div textarea {
    resize: none;
}

.fm-div button {
    display: inline-block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    background: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fm-div button:hover {
    scale: 1.01;
    background: #d35400;
    transition: 100ms;
}