* {
    box-sizing: border-box;
}
body {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url("images/gd.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    font-family: Arial, sans-serif;
}


.navbar {
    display: flex;
    align-items: center;

}

.nav-links {
    display: flex;
    list-style: none;  
    margin-left: auto;
    gap: 20px;
}

.hero{
    height:40vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.buttons{

    display:flex;
    gap:10px;
    justify-content:center;
}
.buttons button{
    background:transparent;
    color:white;
    font-size: 20px;
    padding: 10px 20px;
    border: 2px solid rgb(203, 200, 200);
    border-radius: 4px;
}
.logo h1{
    font-family: 'Arial', sans-serif;
    color:white;
    font-size: 30px;
    margin-left: 20px;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


.heros h1{
    font-family: 'Arial', sans-serif;
    color:rgb(7, 7, 7);
    font-size: 50px;
}
.hero h1{
    font-family: 'Arial', sans-serif;
    color:white;
    font-size: 80px;
}
.heros p{
    font-family: verdana, sans-serif;
    color:rgb(36, 36, 36);
    font-size: 15px;
}
.hero p{
    font-family: verdana, sans-serif;
    color:white;
    font-size: 15px;
}
.application-form {
    width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgb(220, 220, 220);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.application-form h1 {
    text-align: center;
    color: #100f0f;
    font-size: 35px;
    margin-bottom: 10px;
}
.application-form p {
    text-align: center;
    color: rgb(13, 13, 13);
    margin-bottom: 20px;
}
.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #1f1e1e;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}
.application-form button {
    width: 100%;
    padding: 15px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;

}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 20px; /* space between columns */
    margin-bottom: 15px;
}

/* Mobile Application Form */
@media (max-width: 768px) {

    .application-form {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
        border-radius: 12px;
    }

    .application-form h1 {
        font-size: 26px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .application-form input,
    .application-form select,
    .application-form textarea {
        width: 100%;
        font-size: 16px;
        padding: 12px;
    }

    .application-form button {
        font-size: 16px;
        padding: 14px;
    }

}






/* we offer */

.offers {
    padding: 50px;
    background: #f5f7fa;
}

.offers h2 {
    text-align: center;
    font-size: 40px;
    color: #003366;
    margin-bottom: 40px;
}


.offer-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


.offer-card img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}


.offer-text h3 {
    font-size: 28px;
    color: #003366;
}


.offer-text p {
    font-size: 18px;
    color: #555;
}


.offer-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 25px;
}


.offer-btn:hover {
    background: #0056b3;
}








/* TESTIMONIALS */

.testimonials{
    width:92%;
    max-width:1200px;
    margin:40px auto;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.testimonial-card{
    background:#c8c8c8;
    border:1px solid #e5e5e5;
    border-radius:20px;
    padding:25px;
    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.testimonial-img{
    width:100px;
    height:100px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:15px;

    border:3px solid #000;
}

.testimonial-card h3{
    margin-bottom:10px;
}

.testimonial-card p{
    color:#666;
    line-height:1.7;
}
/* contact */
.contact-section {
    padding: 20px 10%;
    background: #f7f9fc;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left side */
.contact-info h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555555;
    line-height: 1.6;
}

.info-box {
    margin-top: 20px;
}

/* Right side */
.contact-form {
    background: rgb(228, 228, 228);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bcb8b8;
    border-radius: 4px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #004dcc;
}


/* Mobile Responsive */
@media(max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

















/* What We Offer */
.offer-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.offer-card {
    width: 320px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.offer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.offer-card h3 {
    margin: 15px 0;
}

.offer-card p {
    line-height: 1.6;
}

/* Mobile - What We Offer */
@media (max-width: 768px) {

    .offers {
        padding: 30px 20px;
    }

    .offers h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }

    .offer-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .offer-cards img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .offer-texts {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .offer-texts h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .offer-texts p {
        font-size: 16px;
        line-height: 1.6;
    }

}


/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    font-family: Arial, sans-serif;
    animation: footerMove 1s ease;
}

footer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

footer hr {
    width: 80%;
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

/* Footer Animation */
@keyframes footerMove {
    from {
        transform: translateY(80px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {

    footer {
        padding: 25px 15px;
        margin-top: 30px;
    }

    footer p {
        font-size: 14px;
    }

    footer hr {
        width: 90%;
    }
}



















@media (max-width: 768px) {

    .navbar {
        flex-direction: row;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
        background: rgba(108, 106, 106, 0.9);
        width: 35px;
        padding: 2px;
        border-radius: 5px;
        flex-direction: column;
        text-align: center;
        margin-left: auto;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }

    .nav-links {
       display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(255, 253, 253, 0.9);
        padding: 20px;
        border-radius: 10px;
        flex-direction: column;
    }
    .nav-links li a {
    color: rgb(15, 15, 15);
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s ease;
}

    .nav-links.active {
        display: flex;
    }

    .heros h1 {
        font-size: 40px;
        text-align: center;
        padding: 40px;
    }

    .heros p {
        font-size: 18px;
        text-align: center;
        padding: 1px;
    }
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .buttons button {
        width: 200px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }
}