@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    margin:0; 
    font-family:'Poppins', sans-serif;
    background:#f7f7f7;
    color:#333;
    line-height:1.6;
}
header {
    background:white;
    padding:18px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid #e5e5e5;
    position:sticky;
    top:0;
    z-index:999;
}

.brand {
    font-size:22px;
    font-weight:600;
    letter-spacing:0.5px;
    color:#222;
}

nav a {
    margin-left:20px;
    text-decoration:none;
    font-weight:500;
    color:#444;
    padding:8px 14px;
    border-radius:8px;
    transition:0.3s;
}

nav a:hover {
    background:#efefef;
    color:black;
}
/*NEW HEADER ENDS HERE*/

/* HERO */
.hero {
    height:340px;
    position:relative;
    overflow:hidden;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
}

.slide {
    position:absolute;
    width:100%;
    height:100%;
    background-position:center;
    background-size:cover;
    filter:brightness(70%);
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active {
    opacity:1;
}

.hero-text {
    position:absolute;
    bottom:30px;
    left:40px;
    color:#fff;
    z-index:3;
}

.hero-text h2 {
    font-size:34px;
    font-weight:600;
}

.hero-text p {
    font-size:18px;
    opacity:0.9;
}

.card {
    background:white;
    padding:25px;
    border-radius:18px;
    margin-bottom:22px;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform:translateY(-3px);
    box-shadow:0 7px 22px rgba(0,0,0,0.12);
}


/* MAIN */
.container { max-width:1100px; margin:auto; padding:20px; }
.card {
    background:white;
    padding:20px;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

.grid {
    display:grid;
    gap:25px;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}


/* FORM */
input, textarea {
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:8px;
}
button {
    background:black;
    color:white;
    padding:12px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
button:hover { background:#444; }

/* FOOTER */
footer {
    background:white;
    padding:20px;
    text-align:center;
    margin-top:40px;
}
/* LOGO + HEADER LAYOUT */
.logo-area {
    display:flex;
    align-items:center;
}

.logo {
    height:55px;
    width:auto;
    margin-right:15px;
}

@media (max-width:700px) {
    .logo {
        height:45px;
    }

    header {
        flex-direction:column;
        text-align:center;
    }

    nav {
        margin-top:10px;
    }
}
/* WhatsApp Floating Button (Smaller Version) */
.whatsapp-float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    padding: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 12px rgba(0,0,0,0.35);
}

/*BUTTON*/
button {
    background:#000;
    color:white;
    padding:14px 24px;
    border:none;
    border-radius:12px;
    font-size:15px;
    cursor:pointer;
    font-weight:500;
    transition:0.2s;
}

button:hover {
    background:#333;
    transform:translateY(-2px);
}

/*INPUT FORM*/

input, textarea {
    width:100%;
    padding:14px;
    margin:10px 0;
    border:1px solid #ccc;
    border-radius:12px;
    font-size:15px;
    transition:0.2s;
}

input:focus, textarea:focus {
    border-color:black;
    outline:none;
    box-shadow:0 0 0 3px rgba(0,0,0,0.15);
}

footer {
    background:white;
    padding:25px;
    text-align:center;
    margin-top:50px;
    border-top:1px solid #e5e5e5;
    font-size:14px;
    color:#777;
}
#loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #ddd;
    border-top: 6px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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