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

body {
    font-family: 'Poppins', sans-serif;
}

/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #00c3ff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: white;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.logo {
    font-weight: 600;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #111;
}

/* SLIDER */
.slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
}

/* CARDS */
.services {
    padding: 100px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card i {
    font-size: 45px;
    color: #00c3ff;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.card p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

/* PARALLAX */
.parallax {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') center/cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    background: #111;
    color: white;
    padding: 80px;
}

/* SUCCESS */

.success {
    padding: 100px;
    text-align: center;
}

.success-subtitle {
    margin-top: 10px;
    color: #666;
}

.success-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.success-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    text-align: center;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.success-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.success-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.success-card p {
    font-size: 14px;
    color: #555;
    padding: 0 15px 20px;
}

/* CONTACT */
.contact {
    padding: 80px;
    text-align: center;
}

input, textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}
