@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

* {
    padding: 0px;
    margin: 0px;
    scroll-behavior: smooth;
    z-index: 1;
    font-family: "Cairo", sans-serif;


}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 999;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.navbar.scrolled {
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 130px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.navbar.scrolled .nav-links a {
    color: #817373;
}

.nav-links a:hover {
    color: #E9DB65;
}

.hero-banner {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('https://th.bing.com/th/id/R.5d7dd5dfa1f64f8af667e6422b29117d?rik=34MdlP5B%2bNkgKQ&riu=http%3a%2f%2fwis-consultancy.com%2fwp-content%2fuploads%2f2023%2f08%2fbusiness-meeting-saudi-arabia-1-1.webp&ehk=lOSZark41auMX6yLaU%2f0VHwvPRP%2faiOa%2fY8yHPdBUU8%3d&risl=&pid=ImgRaw&r=0') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content .brand {
    color: #E9DB65;
}

.hero-text {
    font-size: 22px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-btn {
    background: #E9DB65;
    color: #000;
    padding: 14px 35px;
    font-size: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #d4c44f;
}


.about-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.about-container {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #E9DB65;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #E9DB65;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.services-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.services-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: #f7f7f7;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.service-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.contact-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-container {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    padding: 15px;
    background: #00a8ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #0077c2;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #333;
}


.features-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.features-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-box span {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.why-us {
    padding: 80px 0;
    background: #f0f0f0;
    text-align: center;
}

.why-list {
    list-style: none;
    margin-top: 20px;
    font-size: 18px;
    line-height: 2;
}

.testimonials {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.testimonials-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background: #f7f7f7;
    padding: 25px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stars {
    color: #f4c430;
    font-size: 20px;
    margin-top: 8px;
    letter-spacing: 2px;
}

.steps-section {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.steps-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.step-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-box span {
    font-size: 35px;
    font-weight: bold;
    color: #E9DB65;
}


@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 80%;
    }

    .services-container,
    .features-container,
    .steps-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .why-list {
        font-size: 16px;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {

    .container {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 70%;
    }

    .services-container,
    .features-container,
    .steps-container,
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .container,
    .about-container,
    .contact-container {
        width: 92%;
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .logo img {
        width: 110px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.4;
    }

    .hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image img {
        width: 80%;
    }

    .services-container,
    .features-container,
    .steps-container,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .why-list {
        font-size: 16px;
        line-height: 1.8;
    }

    .contact-info {
        align-items: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .container {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-text {
        font-size: 18px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 70%;
    }

    .services-container,
    .features-container,
    .steps-container,
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        flex-direction: column;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: 0.3s ease;
    animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
    }
}

.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #E9DB65;
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #E9DB65;
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #E9DB65;
    font-size: 22px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===========================
   NAVBAR (DESKTOP)
=========================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 999;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.navbar.scrolled {
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 130px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.navbar.scrolled .nav-links a {
    color: #817373;
}

.nav-links a:hover {
    color: #E9DB65;
}

/* ===========================
   TOGGLE BUTTON (MOBILE)
=========================== */

.menu-toggle {
    display: none;
    font-size: 22px;
    /* smaller size */
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 5px 8px;
    margin-left: auto;
    /* pushes it to the RIGHT */
}

/* ===========================
   MOBILE MENU
=========================== */

@media (max-width: 768px) {

    /* Show toggle on mobile */
    .menu-toggle {
        display: block;
    }

    /* Hide desktop menu */
    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        right: 20px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        gap: 20px;
        width: 200px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Show when toggled */
    .nav-links.active {
        display: flex;
    }

    /* Ensure links stay white */
    .nav-links a {
        color: white;
    }
}