* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', 'Cairo', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: right;
    background: linear-gradient(135deg, #87ceeb, #f0e68c);
    color: #2c3e50;
    overflow-x: hidden;
}
/* navbar */
.header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 20px;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background: transparent;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}
nav ul li a:hover {
    color: #f1c40f;
    transform: translateY(-3px);
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #f1c40f;
    transition: width 0.3s ease;
}
nav ul li a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger .line {
    width: 30px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 6px auto;
    transition: all 0.3s ease-in-out;
}
.hamburger-active {
    transform: rotate(45deg);
}
.hamburger-active .line:nth-child(2) {
    width: 0;
}
.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}
.hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
}
.menubar {
    position: fixed;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: rgba(44, 62, 80, 0.95);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}
.menubar.active {
    left: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.menubar ul {
    padding: 0;
    list-style: none;
    text-align: center;
}
.menubar ul li {
    margin-bottom: 40px;
}
.menubar ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    display: block;
    background: rgba(255, 255, 255, 0.1);
}
.menubar ul li a:hover {
    background: #f1c40f;
    color: #2c3e50;
}
/* header */
header {
    background: linear-gradient(90deg, #2c3e50, #3498db);
    color: #fff;
    padding: 24px 10px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
/* hero */
.hero-content h1 {
    text-align: center;
    font-size: 50px;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.hero-banner a {
    color: #757575;
    text-decoration: none;
    transition: color 0.3s ease;
}
.hero-banner a:hover {
    color: #3498db;
}
.hero-content {
    margin-left: 20px;
    text-align: start;
    padding: 20px;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}
main {
    margin-left: 20px;
    text-align: start;
    line-height: 1;
    padding: 20px;
}
.container {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
h2 {
    color: #0e0e0e;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
/* contact form */
.contact-form {
    display: flex;
    /* flex-direction: row; */
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 70px;
}
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
form:hover {
    transform: translateY(-5px);
}
label {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #2c3e50;
}
input, textarea {
    margin: 10px 0;
    padding: 10px;
    width: 90%;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Cairo', 'Poppins', Arial, sans-serif;
    transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}
textarea {
    min-height: 150px;
    resize: vertical;
}
.btn {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.btn:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 91, 181, 0.5);
}
/* footer */
#cards {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    width: 20%;
    margin-top: 40px;
    transition: transform 0.3s ease;
}
#cards:hover {
    transform: translateY(-5px);
}
#cards h3 {
    text-align: start;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
#cards p {
    text-align: start;
    color: #666;
    font-size: 1rem;
}
#cards i {
    color: #211e1e;
}
#cards ul {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    text-align: start;
    padding: 0;
    list-style: none;
}
/* contact info */
.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    width: 96%;
}
.info-card {
    padding: 20px;
    border-radius: 10px;
    margin: auto;
    width: 80%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}
.info-card:hover {
    transform: scale(1.02);
}
/* map section */
.map-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.map-section:hover {
    transform: translateY(-5px);
}
.map-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
}
.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.contact-item {
    margin: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-5px);
}
.contact-item i {
    font-size: 24px;
    color: #0073e6;
    margin-bottom: 10px;
}
.footer {
    background: linear-gradient(90deg, #2c3e50, #34495e);

    color: #fff;
    padding: 60px 20px 20px;
    margin-top: 50px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}
.footer-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-align: center;
    color: #fff;
}
.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #4da8da;
}
.footer-column p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 16px;
    text-align: center;
}
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f1c40f;
    transform: rotate(360deg);
}
.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ccc;
}
.footer-contact i {
    margin-right: 15px;
    margin-top: 5px;
    color: #4da8da;
}
.footer-content span {
    line-height: 1.5;
    font-size: 15px;
    color: #ccc;
    text-align: center;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #999;
}
/* responsive design */
@media (min-width: 768px) {
    .contact-form {
        flex-direction: row;
        align-items: flex-start;
    }
    form {
        width: 65%;
    }
    #footer {
        width: 30%;
        margin: 0;
    }
    .contact-info {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 767px) {
    nav ul {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .info-card {
        margin: 0 auto;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    form, #footer {
        padding: 15px;
    }
    h2 {
        font-size: 22px;
    }
    .map-container {
        height: 250px;
    }
    .footer-column {
        min-width: 100%;
    }
}