* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0f172a;
    color: white;
}

/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #333;
    border-top: 6px solid #00c3ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 12px 0;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.container {
    width: 90%;
    margin: auto;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    transition: 0.3s;
}

    .logo-img:hover {
        transform: scale(1.1);
    }

.logo-text {
    color: #00c3ff;
    font-size: 22px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

    nav a::after {
        content: "";
        width: 0;
        height: 2px;
        background: #00c3ff;
        position: absolute;
        bottom: -5px;
        left: 0;
        transition: 0.3s;
    }

    nav a:hover::after {
        width: 100%;
    }

/* HERO */
.hero {
    height: 100vh;
background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/anasayfares.jpeg');    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: fade 1.5s ease-out;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 50px;
    transition: 0.3s;
}

    .hero h1:hover {
        transform: scale(1.03);
    }

.hero p {
    margin-top: 12px;
    font-size: 18px;
    color: #ccc;
}

/* SLIDER */
.slider {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

    .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 1s ease-in-out;
    }

/* COUNTER */
.counter {
    padding: 80px 20px;
    background: #020617;
}

.counter-box {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.counter h1 {
    color: #00c3ff;
    font-size: 42px;
}

/* SERVICES */
.services {
    padding: 100px 20px;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
}

    .card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 0 25px rgba(0,195,255,0.5);
    }

    .card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s;
    }

    .card:hover img {
        transform: scale(1.05);
    }

    .card h3 {
        padding: 15px;
    }

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* GALLERY */
.gallery {
    padding: 100px 20px;
    text-align: center;
}

.gallery-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

    .gallery-box img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
        cursor: pointer;
        transition: 0.4s;
    }

        .gallery-box img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px white;
        }

/* LIGHTBOX */
#lightbox {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    #lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        transition: transform 0.3s;
    }

/* CONTACT */
.contact {
    padding: 100px 20px;
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-top: 12px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

    input:focus, textarea:focus {
        outline: none;
        transform: scale(1.02);
    }

button {
    margin-top: 12px;
    padding: 15px;
    width: 100%;
    border: none;
    background: #00c3ff;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    button:hover {
        transform: scale(1.03);
        background: #0099cc;
    }

/* WHATSAPP */
.wp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

    .wp:hover {
        transform: scale(1.1);
    }

/* DROPDOWN MENU */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #1e293b;
    min-width: 220px;
    box-shadow: 0 0 10px black;
    z-index: 10;
}

    .dropdown-content a {
        display: block;
        padding: 12px;
    }

        .dropdown-content a:hover {
            background: #00c3ff;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* FOOTER */
.footer {
    background: #020617;
    padding: 60px 20px;
    margin-top: 50px;
}

.footer-box {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    color: #00c3ff;
    margin-bottom: 15px;
}

.footer p {
    color: #ccc;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* INSTAGRAM BUTTON */
.social {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.insta {
    background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045);
}

    .insta:hover {
        transform: scale(1.05);
    }

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

@media(max-width:800px) {
    .cards, .gallery-box, .counter-box {
        flex-direction: column;
        gap: 25px;
    }

    .hero h1 {
        font-size: 30px;
    }

    nav {
        display: none;
        flex-direction: column;
        background: black;
        padding: 20px;
    }

        nav.active {
            display: flex;
        }

    .footer-box {
        flex-direction: column;
        text-align: center;
    }
}

/* SLIDER */
.slider {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

    .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        .slider img.active {
            opacity: 1;
        }


/* SLIDER */
.slider {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.slide-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

    .slide-wrapper .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        .slide-wrapper .slide.active {
            opacity: 1;
            z-index: 1;
        }
