html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======== Navbar ======== */
.navbar {
    /* width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0px;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0 40px;
    height: 70px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 200px;

}

.navbar .lang {
    padding-right: 40px;
}

.navbar .lang i {
    margin-left: 5px;
}

.navbar .lang img {
    width: 60px;
    height: 20px;
}

.navbar .lang span {
    font-size: 18px;
    color: #646766;

}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.navbar ul li a {
    color: #646766;
    font-weight: 500;
    transition: 0.3s;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #d29b6f;
}

.lang {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.lang img {
    width: 20px;
    border-radius: 3px;
}

/* ======== Hero Section ======== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("images/image 19.png");
    border-radius: 50px;
    margin: 40px;
    background-color: white;
    margin-top: 30px;
    overflow: hidden; /* Add this to contain the zooming background */
    /* Remove the animation from here */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/image 19.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    animation: zoomIn 10s ease-in-out forwards; /* Move animation to pseudo-element */
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to Right,
            rgba(0, 0, 0, 0.8) 0%,
            /* تعتيم من فوق */
            rgba(0, 0, 0, 0.7) 40%,
            /* ناعم في النص */
            rgba(0, 0, 0, 0.5) 80%,
            /* أخف لتحت */
            rgba(0, 0, 0, 0) 100%
            /* شفاف في النهاية */
        );
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    width: 400px;
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    color: #fff;
    z-index: 2; /* Increase z-index to ensure it's above the pseudo-elements */
    max-width: 430px;

}


.hero-content h1 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: sans-serif;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
}

.hero-content .btn {
    background-color: #ea8f4d;
    opacity: 75%;
    color: #fff;
    z-index: 1;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;


}

.hero-content .btn:hover {
    background-color: #ea8f4d;
    opacity: 100%;
}

.hero-content i {
    margin-left: 10px;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.about {
    background: url('images/about.jpg') no-repeat center center/cover;

    background-image: url('images/Frame٢.png');
    height: 100vh;
    color: white;
}

.overlay {

    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-bottom: 20px;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            /* تعتيم من فوق */
            rgba(0, 0, 0, 0.7) 5%,
            /* ناعم في النص */
            rgba(200, 210, 222, 0.6) 95%,
            /* أخف لتحت */
            rgba(200, 210, 222, 0) 95%
            /* شفاف في النهاية */
        );
    width: 950px;

}

.overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            /* تعتيم من فوق */
            rgba(0, 0, 0, 0.7)10%,
            /* ناعم في النص */
            rgba(83, 106, 139, 0.5) 100%,
            /* أخف لتحت */
            rgba(180, 163, 163, 0) 100%
            /* شفاف في النهاية */
        );
    border-radius: 15px;
    width: 700px;
    height: 700px;
    margin-top: 85px;
    margin-left: 30px;


}


.sidebar {
    width: 50px;
    height: 55%;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 30px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: slideIn 1s ease forwards;
    z-index: 1;
    border: 2px solid #E38541;
    /* border بسيط أبيض شفاف */
}

.sidebar ul {
    list-style: none;

}

.sidebar li {
    margin: 25px 0;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: rgb(255, 255, 255) 80%;
}

.content {
    z-index: 1;
    margin-left: 600px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: contentFade 1.5s ease forwards;
    animation-delay: 1s;
    margin-top: 10px;
}

.content h3 {
    font-size: 35px;
    color: #E38541;
    font-weight: 500;
    margin-bottom: 20px;

}


.content h3::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 150px;
    width: 100px;
    height: 2px;
    background-color: #E38541;
    transform: translateY(-50%);
}
.content h1 {
    color: #71B2F0;
    font-weight: 500;

    margin-bottom: 30px;
    font-size: 45px;

}

.content p {
    font-size: 22px;
    font-weight: 300;
    max-width: 400px;
    margin-top: 20px;

}

button {
    background: transparent;
    border: 1px solid #E38541;
    border-right: none;
    color: #E38541;
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 50px;
    font-size: 20px;
    margin-top: 30px;

}

.content i {
    color: #E38541;
}

button:hover {
    background: #E38541;
    color: #fff;
}

/* أنيميشن */
@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes contentFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.services {
    display: flex;
    background-color: #DDE5F0;

}

/* Sidebar */
.sidebar1 {
    width: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}


.sidebar1 a {
    width: 45px;
    height: 45px;
    border: 1.5px solid #c67a2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c67a2c;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar1 a:hover {
    background-color: #c67a2c;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px #c67a2c;
}

.icon.active {
    background-color: #f29f05;
    color: white;
    border-radius: 10px;
    padding: 5px;
}

/* Main Content */
.content {
    flex: 1;
    margin: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    margin-top: 35px;
    margin: 80px auto;
}

.content h3::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 480px;
    width: 170px;
    height: 1px;
    background-color: #000000;
    transform: translateY(-50%);
}


.header h3 {
    color: #b66526;
    margin-left: 430px;

}

.header h2 {
    color: #003366;
    text-align: center;
    margin-right: 65px;
    margin-top: 5px;
}

/* Cards */
.cards-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    height: 450px;

}


.card {
    flex: 0 0 480px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    transition: transform 0.5s ease;
    max-width: 350px;
}

.card:hover {
    transform: translateY(-4px);
}

.card img {
    width: 90%;
    height: 200px;
    border-radius: 25px 25px 25px 25px;
    object-fit: cover;
    margin-left: 15px;
    margin-top: 15px;

}

.card h4 {
    margin-left: 15px;
    margin-top: 20px;
    color: #000000;
    font-size: 15px;
}

.card p {
    font-size: 14px;
    color: #555;
    margin-left: 15px;
    max-width: 290px;
}



.why-section {
    max-width: 800px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.why-section h2 {
    color: #c26b35;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.why-section h2::before,
.why-section h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #999;
}

.why-section h2::before {
    right: 100%;
    margin-right: 15px;
}

.why-section h2::after {
    left: 100%;
    margin-left: 15px;
}

.why-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: center;
    background-color: #e9edf3;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.why-card img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.why-card h4 {
    text-align: left;
    color: #0d1b2a;
    font-size: 17px;
    font-weight: 600;

}

.why-card p {
    margin: 5px 0 0 0;
    color: rgb(0, 0, 0, 50%);
    font-size: 16px;
}

@media (max-width: 600px) {
    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-card img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}




.landmark-section {
    width: 100%;
    background: linear-gradient(to bottom, #e4ebf6, #202b46);
    min-height: 90vh;

    color: #333;


    backdrop-filter: blur(12px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    overflow: hidden;
    animation: fadeInLandmark 1.2s ease forwards;
}

/* ===== Sidebar (Inside Same Section) ===== */
.landmark-side {
    width: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.landmark-side a {
    width: 45px;
    height: 45px;
    border: 1.5px solid #c67a2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c67a2c;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landmark-side a:hover {
    background-color: #c67a2c;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px #c67a2c;
}

/* ===== Main Content ===== */
.landmark-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landmark-header {
    text-align: center;
    margin-bottom: 50px;
    color: #b35a10;
}

.landmark-header h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.landmark-header p {
    font-size: 1rem;
    color: rgb(102, 100, 100);
    opacity: 0.8;
}

/* ===== Cards Section ===== */
.landmark-cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.landmark-card {
    width: 330px;
    height: 470px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #000;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUpLandmark 1s ease forwards;
}

.landmark-card:nth-child(2) {
    animation-delay: 0.3s;
}

.landmark-card:nth-child(3) {
    animation-delay: 0.5s;
}

.landmark-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landmark-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.5);
}

.landmark-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
}

.landmark-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.landmark-info p {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 5px;
}

.landmark-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 7px 18px;
    border: 1px solid #c67a2c;
    border-radius: 20px;
    color: #c67a2c;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landmark-btn:hover {
    background-color: #c67a2c;
    color: #fff;
    box-shadow: 0 0 10px #c67a2c;
}

/* ===== Animations ===== */
@keyframes fadeUpLandmark {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLandmark {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .landmark-section {
        flex-direction: column;
    }

    .landmark-side {
        flex-direction: row;
        width: 100%;
        height: 70px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .landmark-content {
        padding: 30px;
    }
}
.reachus-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    padding: 40px 60px;
}

.reachus-wrapper .sidebar {
    width: 55px;
    height: 65%;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 30px;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: slideIn 1s ease forwards;
    z-index: 1;
    border: 2px solid #DB7125;
    margin-top: 100px;
    /* border بسيط أبيض شفاف */
}

.reachus-wrapper .sidebar ul {
    list-style: none;

}

.reachus-wrapper .sidebar li {
    margin: 25px 0;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: rgb(255, 255, 255) 80%;
}
.reachus-icon {
    font-size: 18px;
    color: #1f2a44;
}

.reachus-form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 80px;
}

.reachus-heading {
    color: #c36b29;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
}

.reachus-divider {
    width: 80px;
    height: 2px;
    background-color: #c36b29;
    margin: 0 auto 25px;
}

.reachus-form-box {
    background: #e8eff8;
    border: 1px solid #c7d1e0;
    border-radius: 14px;
    padding: 30px 40px;
   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.reachus-subtitle {
    text-align: center;
    color: #1f2a44;
    font-size: 25px;
    margin-bottom: 4px;
    font-weight: 400;
}

.reachus-description {
    text-align: center;
    color: #7d7f85;
    font-size: 16px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 400px;
}

.reachus-names {
    display: flex;
    gap: 10px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #bfc8d6;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    color: #1f2a44;
    background-color: #fff;
}

.reachus-phone {
    display: flex;
    gap: 5px;
}

textarea {
    border-radius: 15px;
    resize: none;
    height: 100px;
}

.form button {
    width: 100%;
    background: #c36b29;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 6px rgba(195, 107, 41, 0.3);
}

.form button:hover {
    background: #a4581f;
}

.reachus-terms {
    text-align: center;
    font-size: 12px;
    color: #4a566e;
    margin-top: 10px;
}

.reachus-terms a {
    color: #1f2a44;
    font-weight: 500;
    text-decoration: none;
}

.reachus-terms a:hover {
    text-decoration: underline;
}

/*
.update-banner-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(195, 107, 41, 0.95);
    color: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 10px 0;
    z-index: 10000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: fadeDown 0.8s ease;
}
*/
/* أنيميشن لطيف عند التحميل */
@keyframes fadeDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* علشان ميغطيش أول عنصر في الصفحة */
body {
    padding-top: 45px;
}

/* ======== Hamburger Menu ======== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #646766;
    transition: 0.3s;
}

/* ======== Fix Base Responsive Issues ======== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

* {
    max-width: 100vw;
    box-sizing: border-box;
}

/* ======== Mobile Responsive Styles (991px and below) ======== */
@media (max-width: 991px) {
    
    /* Navbar Mobile */
    .navbar {
        padding: 0 20px;
        justify-content: space-between;
        position: relative;
    }

    .navbar ul {
        display: flex;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100vh;
        width: 250px;
        background-color: white;
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        gap: 20px;
    }

    .navbar ul.show {
        right: 0;
    }

    .navbar ul li {
        margin: 10px 0;
        width: 100%;
    }

    .navbar ul li a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .hamburger {
        display: flex;
        order: -1;
    }

    .navbar .lang {
        display: none;
    }

    .navbar .logo img {
        width: 150px;
    }

    /* Hero Section Mobile */
    .hero {
        margin: 10px;
        height: 60vh;
        border-radius: 20px;
        background-size: cover;
        background-position: center;
    }

    .hero::after {
        width: 100%;
        border-radius: 20px;
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
        max-width: calc(60% - 40px);
        text-align: left;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* About Section Mobile */
    .about {
        height: auto;
        min-height: 80vh;
        background-size: cover;
        background-position: center;
    }

    .overlay {
        width: 100% !important;
        max-width: 100vw;
        flex-direction: column;
        padding: 40px 20px;
        background: rgba(0, 0, 0, 0.8);
    }

    .overlay::after {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .content h3::after {
        display: none;
    }

    .content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.6;
    }

    button {
        font-size: 16px;
        padding: 12px 24px;
        margin-top: 20px;
    }

    /* Services Section Mobile */
    .services {
        flex-direction: column;
        background-color: #DDE5F0;
        padding: 20px 0;
    }

    .sidebar1 {
        display: none;
    }

    .services .content {
        margin: 0;
        padding: 20px;
        max-width: 100%;
    }

    .content h3::after {
        display: none;
    }

    .header h3 {
        margin-left: 0;
        text-align: center;
        font-size: 18px;
    }

    .header h2 {
        margin-right: 0;
        text-align: center;
        font-size: 24px;
    }

    .cards-container {
        overflow-x: hidden;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .card {
        flex: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0;
    }

    .card img {
        width: 90%;
        height: 180px;
        margin: 10px auto;
        display: block;
    }

    .card h4 {
        font-size: 16px;
        margin: 15px;
    }

    .card p {
        font-size: 14px;
        margin: 15px;
        max-width: calc(100% - 30px);
    }

    /* Why Section Mobile */
    .why-section {
        margin: 30px auto;
        padding: 0 20px;
        max-width: 100%;
    }

    .why-section h2 {
        font-size: 24px;
    }

    .why-section h2::before,
    .why-section h2::after {
        width: 30px;
    }

    .why-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-cards {
        gap: 15px;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .why-card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .why-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* Landmark Section Mobile */
    .landmark-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }

    .landmark-side {
        display: none;
    }

    .landmark-content {
        padding: 40px 20px;
        width: 100%;
    }

    .landmark-header h2 {
        font-size: 24px;
    }

    .landmark-header p {
        font-size: 14px;
    }

    .landmark-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .landmark-card {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }

    .landmark-info h3 {
        font-size: 18px;
    }

    .landmark-info p {
        font-size: 14px;
    }

    .landmark-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Contact Section Mobile */
    .reachus-wrapper {
        flex-direction: column;
        padding: 20px;
        height: auto;
        gap: 0;
    }

    .reachus-wrapper .sidebar {
        display: none;
    }

    .reachus-form-area {
        margin-right: 0;
        width: 100%;
        margin-top: 20px;
    }

    .reachus-heading {
        font-size: 24px;
    }

    .reachus-form-box {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .reachus-subtitle {
        font-size: 20px;
    }

    .reachus-description {
        font-size: 14px;
    }

    form {
        width: 100%;
        max-width: 100%;
    }

    .reachus-names {
        flex-direction: column;
        gap: 15px;
    }

    .reachus-names input {
        width: 100%;
    }

    .reachus-phone {
        flex-direction: column;
        gap: 15px;
    }

    .reachus-phone select,
    .reachus-phone input {
        width: 100%;
    }

    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    /* Update Banner Mobile */
    .update-banner-fixed {
        font-size: 12px;
        padding: 8px 0;
    }

    body {
        padding-top: 40px;
    }
}

/* Extra Small Screens (480px and below) */
@media (max-width: 480px) {
    .navbar .logo img {
        width: 130px;
    }

    .hero {
        height: 50vh;
        margin: 5px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .content h3 {
        font-size: 18px;
    }

    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 14px;
    }

    .header h2 {
        font-size: 20px;
    }

    .header h3 {
        font-size: 16px;
    }

    .why-section h2 {
        font-size: 20px;
    }

    .why-card h4 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 13px;
    }

    .landmark-header h2 {
        font-size: 20px;
    }

    .landmark-card {
        max-width: 280px;
        height: 350px;
    }

    .reachus-heading {
        font-size: 20px;
    }

    .reachus-subtitle {
        font-size: 18px;
    }

    .reachus-form-box {
        padding: 20px 15px;
    }
}

/* Tablet Styles (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content h3 {
        font-size: 24px;
    }

    .cards-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        flex: 0 0 calc(50% - 20px);
        max-width: 300px;
    }

    .landmark-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .landmark-card {
        flex: 0 0 calc(50% - 20px);
        max-width: 300px;
    }
}