* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #111;
    padding: 40px 5%;

}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    /* logo left, menu right */
    align-items: center;
    padding: 20px 50px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

/* LOGO */
.logo img {
    height: 45px;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 50px;
}

.menu li a {
    text-decoration: none;
    color: black;
    font-size: 23px;
    position: relative;
    padding-bottom: 5px;
}

/* Media query for smaller screens (phones) */
@media only screen and (max-device-width: 600px) {
    .menu li a {
        font-size: 30px;
        /* bigger font for mobile */
    }
}

/* HOVER EFFECT */
.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: blue;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.menu li a.active::after {
    width: 100%;
}

/* HERO */
.contact-hero {
    background: url('images/landing1.jpeg') center/cover no-repeat;
    height: 400px;
    border-radius: 25px;
    margin: 20px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 70px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
}

.small-title {
    text-transform: lowercase;
    color: #999;
}

.contact-left h2 {
    font-size: 40px;
    margin: 20px 0;
}

.contact-left p {
    color: #666;
    max-width: 500px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-grid h4 {
    margin-bottom: 8px;
}

.socials i {
    margin-right: 12px;
    cursor: pointer;
}

/* FORM */
.contact-form-box {
    background: #f3f3f3;
    border-radius: 25px;
    padding: 40px;
}

.contact-form-box h3 {
    font-size: 28px;
}

.contact-form-box form {
    margin-top: 25px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    padding: 14px 0;
    margin-bottom: 25px;
}

.contact-form-box button {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}


/* MAP */
.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    filter: grayscale(1);
    border-radius: 20px;

}

/* FOOTER */
.main-footer {
    padding: 10px;
    background: #fff;
}

.footer-box {
    background: #111;
    border-radius: 30px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    color: #fff;
}

.footer-left h2 {
    font-size: 38px;
    font-weight: 500;
}

.footer-left span {
    color: #5a8bff;
}

.footer-logo {
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-right {
    display: flex;
    gap: 130px;
}

.footer-column h4 {
    margin-bottom: 40px;

}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 18px;
}

.footer-column a:hover {
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    font-size: 17px;
    color: #666;
}

.footer-links a {
    margin-left: 20px;
    color: #666;
    text-decoration: none;
}