/* GLOBAL */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f5f7fa;
    transition:0.3s;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    /* ================= HEADER ================= */
    
    header{
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    top:0;
    width:100%;
    height:70px;
    background:#0d47a1;
    padding:10px 15px;
    z-index:1000;
    }
    
    /* LOGO CONTAINER */
    
    .logo{
    display:flex;
    align-items:center;
    position:relative;
    width:100%;
    }
    
    /* LOGO IMAGE */
    
    .logo img{
    height:45px;
    width:45px;
    border-radius:50%;
    object-fit:cover;
    z-index:2;
    }
    
    /* TITLE (MAIN FIX) */
    
    .logo h2{
    position:absolute;
    left:50%;
    transform:translateX(-40%); /* 🔥 center + slight right */
    margin:0;
    font-size:16px;
    white-space:nowrap;
    color:white; /* 🔥 WHITE COLOR */
    text-align:center;
    }
    
    /* ================= NAV ================= */
    
    nav{
    display:flex;
    gap:10px;
    }
    
    nav a{
    color:white;
    text-decoration:none;
    font-size:14px;
    }
    
    /* ================= HAMBURGER ================= */
    
    .menu-toggle{
    display:none;
    }
    
    @media(max-width:768px){
    
    .menu-toggle{
    display:block;
    position:absolute;
    right:15px;
    top:20px;
    font-size:26px;
    color:white;
    z-index:1001;
    cursor:pointer;
    }
    
    }
    
    /* ================= MOBILE NAV ================= */
    
    @media(max-width:768px){
    
    nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#0d47a1;
    flex-direction:column;
    
    /* hidden */
    max-height:0;
    overflow:hidden;
    
    transition:max-height 0.4s ease-in-out;
    z-index:999;
    }
    
    nav.active{
    max-height:300px;
    }
    
    nav a{
    padding:12px;
    border-top:1px solid rgba(255,255,255,0.2);
    text-align:center;
    }
    
    }
    
    /* ================= HERO ================= */
    
    .hero{
    margin-top:70px;
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    position:relative;
    
    background-image:url("https://images.pexels.com/photos/21047659/pexels-photo-21047659.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size:cover;
    background-position:center;
    }
    
    /* OVERLAY */
    
    .hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    }
    
    .hero-content{
    position:relative;
    z-index:2;
    padding:20px;
    }
    
    .hero h1{
    font-size:36px;
    }
    
    .hero h2{
    font-size:22px;
    }
    
    /* BUTTONS */
    
    .btn{
    display:inline-block;
    padding:12px 20px;
    margin:10px;
    border-radius:5px;
    text-decoration:none;
    color:white;
    }
    
    .call{
    background:orange;
    }
    
    .whatsapp{
    background:#25D366;
    }
    
    /* ================= SECTIONS ================= */
    
    section{
    padding:60px 20px;
    text-align:center;
    }
    
    /* SERVICES */
    
    .services{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    }
    
    .card{
    background:white;
    padding:25px;
    width:220px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* WHY */
    
    .why-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    }
    
    .why-card{
    background:white;
    padding:20px;
    width:220px;
    border-radius:10px;
    }
    
    /* GALLERY */
    
    .slider{
    display:flex;
    overflow-x:auto;
    gap:10px;
    }
    
    .slider img{
    height:250px;
    border-radius:10px;
    }
    
    /* REVIEWS */
    
    .reviews{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    }
    
    .review{
    background:white;
    padding:20px;
    width:250px;
    border-radius:10px;
    }
    
    /* AREAS */
    
    #areas{
    background:#f9f9f9;
    }
    
    /* CONTACT */
    
    #contact p{
    margin:10px 0;
    }
    
    /* FOOTER */
    
    footer{
    background:#0d47a1;
    color:white;
    padding:20px;
    }
    
    /* FLOAT BUTTONS */
    
    .float-call{
    position:fixed;
    bottom:80px;
    right:20px;
    background:#ff9800;
    color:white;
    padding:15px;
    border-radius:50%;
    }
    
    .float-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px;
    border-radius:50%;
    }
    
    /* ================= MOBILE TITLE FIX ================= */
    
    @media(max-width:768px){
    
    header{
    flex-direction:column;
    height:auto;
    padding:10px;
    }
    
    /* STACK */
    .logo{
    flex-direction:column;
    align-items:center;
    }
    
    /* RESET POSITION */
    .logo h2{
    position:static;
    transform:none;
    white-space:normal;
    font-size:14px;
    margin-top:5px;
    text-align:center;
    }
    
    .hero{
    height:80vh;
    }
    
    .hero h1{
    font-size:24px;
    }
    
    .hero h2{
    font-size:18px;
    }
    
    .card,
    .review,
    .why-card{
    width:90%;
    }
    
    .btn{
    display:block;
    width:80%;
    margin:10px auto;
    }
    
    }
    form{
        display:flex;
        flex-direction:column;
        max-width:400px;
        margin:auto;
        gap:10px;
        }
        
        form input,
        form textarea{
        padding:10px;
        border-radius:5px;
        border:1px solid #ccc;
        font-size:14px;
        }
        
        form button{
        background:#0d47a1;
        color:white;
        padding:12px;
        border:none;
        border-radius:5px;
        cursor:pointer;
        }