html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}


body{
    margin:0;
    padding:0;
}

.slider{
    margin:0;
}


/* =========================
   GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI', Arial, sans-serif;
}

body{
background:#f7f9fc;
color:#333;
}

/* =========================
   CONTAINER
========================= */

.container{
width:100%;
padding:60px 8%;
}

/* =========================
   NAVBAR
========================= */

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 8%;
background:#fff;
box-shadow:0 2px 12px rgba(0,0,0,.06);
position:sticky;
top:0;
z-index:999;
}

/* Logo */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:700;
color:#4e73df;
}

.logo img{
height:42px;
}



/* Language */

.nav .lang a{
margin-left:10px;
font-weight:600;
text-decoration:none;
color:#333;
}

/* =========================
   HERO SECTION
========================= */

.hero{
padding:90px 8%;
text-align:center;
background:linear-gradient(135deg,#4e73df,#224abe);
color:#fff;
}

.hero h1{
font-size:28px;
font-weight:700;
}

.hero p{
margin-top:12px;
font-size:20px;
opacity:.95;
}

/* =========================
   GRID / CARDS
========================= */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:40px;
}

.card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card h3{
padding:15px 15px 5px;
font-size:18px;
}

.card p{
padding:0 15px 15px;
color:#777;
font-size:14px;
}

.card a{
display:block;
margin:15px;
padding:12px;
text-align:center;
background:#4e73df;
color:#fff;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

/* =========================
   FOOTER
========================= */

footer{
background:#fff;
padding:25px 0;
text-align:center;
margin-top:60px;
box-shadow:0 -2px 10px rgba(0,0,0,.05);
}

/* =========================
   about us design
========================= */

.container h1{
margin-bottom:20px;
font-size:34px;
}

.container h2{
margin-top:30px;
color:#4e73df;
}

.container p{
margin-top:10px;
line-height:1.7;
max-width:900px;
}


/* FEEDBACK FORM */

.feedback-form {
    max-width: 600px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

.feedback-form textarea {
    min-height: 140px;
    resize: vertical;
}

.feedback-form button {
    padding: 14px 28px;
    background: #4e73df;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.feedback-form button:hover {
    background: #224abe;
}

/* SUCCESS ALERT */

.alert-success {
    background: #e6f9ed;
    color: #1e7e34;
    padding: 14px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ======================
   CONTACT PAGE
====================== */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
margin-top:40px;
}

.contact-card{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-logo{
height:70px;
margin-bottom:15px;
}

.contact-item{
margin-top:12px;
font-size:16px;
color:#444;
}

.contact-item a{
color:#4e73df;
text-decoration:none;
font-weight:600;
}

.contact-btn{
display:block;
margin-top:18px;
padding:14px;
text-align:center;
background:#4e73df;
color:#fff;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.contact-btn:hover{
background:#2e59d9;
}

.whatsapp{
background:#25D366;
}

.whatsapp:hover{
background:#1ebe5d;
}

/* MOBILE */

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}

/* PROFILE VIEW */

.profile-view {
    padding: 40px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #4e73df;
    text-decoration: none;
    font-weight: 600;
}

.profile-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.profile-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.profile-details h1 {
    margin-bottom: 15px;
}

.profile-details p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

/* MOBILE */

@media (max-width: 768px) {
    .profile-card {
        grid-template-columns: 1fr;
    }
}
 
.slider{
    width:100%;
    overflow:hidden;
}

.slides{
    display:flex;
    transition:transform 0.8s ease-in-out;
}

.slide{
    min-width:100%;
    position:relative;
}

.slide img{
    width:100%;
    height:auto;
    display:block;
}

/* Overlay */
.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    background:rgba(0,0,0,0.55);
    padding:15px 20px;
    border-radius:8px;
    width:90%;
    max-width:500px;
}

.slide-content h2{
    font-size:28px;
}

.slide-content p{
    font-size:16px;
}

@media(max-width:768px){

    .slide-content h2{
        font-size:18px;
    }

    .slide-content p{
        font-size:14px;
    }
}


.slider{
    width:100%;
    margin:0;
    padding:0;
}

.slide img{
    width:100%;
    height:auto;
    display:block;
}

/* ===== NAVBAR ===== */

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#fff;
    position:relative;
}

.nav-left{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
    margin:0;
    padding:0;
}

.nav-links li a{
    text-decoration:none;
    color:#333;
}

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .nav{
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:10px;
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .lang{
        margin-top:10px;
    }
}

/* ===== CLEAN NAVBAR ===== */

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 8%;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
    position:sticky;
    top:0;
    z-index:999;
    flex-wrap:wrap;
}

.nav-left{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        margin-top:15px;
    }

    .nav-links.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}


@media(max-width:768px){

    .hero{
        padding:20px 20px;   /* reduce from 90px */
    }

}
.hero{
    background:red;
}

img{
    max-width:100%;
    height:auto;
}

/* =========================
   FOOTER
========================= */
footer{
    background:#fff;
    padding:20px 0;
    text-align:center;
    margin-top:40px;
    box-shadow:0 -2px 10px rgba(0,0,0,.05);
}

.footer-inner{
    width:100%;
    padding:0 8%;
}

.footer-whatsapp{
    display:inline-block;
    margin-top:12px;
    padding:10px 18px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.footer-whatsapp:hover{
    background:#1ebe5d;
}
