/* GLOBAL */

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#0f0f0f;
    color:white;
    position:relative;
    line-height:1.6;
}

/* LOGO WATERMARK BACKGROUND */

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-image:url('../images/logo.png');
    background-repeat:no-repeat;
    background-position:center center;
    background-size:70%;
    opacity:0.08;
    pointer-events:none;
    z-index:-1;
}

/* HEADER */

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:black;
    border-bottom:2px solid #c0c0c0;
}

.logo img{
    width:200px;
    height:auto;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
    transition:0.3s;
}

nav a:hover{
    color:#c0c0c0;
}

/* HERO SECTION */

.hero{
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:800px;
    margin:0 auto;
}

/* BUTTONS */

.btn{
    display:inline-block;
    background:#c0c0c0;
    color:black;
    text-decoration:none;
    padding:14px 28px;
    margin:15px 10px;
    font-weight:bold;
    border-radius:4px;
    transition:0.3s;
}

.btn:hover{
    background:white;
}

/* EMERGENCY BAR */

.emergency{
    background:red;
    color:white;
    text-align:center;
    padding:12px;
    font-weight:bold;
}

/* PAGE CONTENT */

.page{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.page h1,
.page h2{
    font-size:42px;
    margin-bottom:30px;
}

/* SERVICE GRID */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:30px;
}

.card{
    background:#1b1b1b;
    border:1px solid #333;
    padding:25px;
    border-radius:8px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#c0c0c0;
}

/* GALLERY */

.gallery img{
    width:100%;
    border-radius:8px;
    border:2px solid #333;
}

/* CONTACT BOX */

.contact-box{
    background:#1b1b1b;
    padding:25px;
    border-radius:8px;
    max-width:600px;
    margin:0 auto 40px auto;
}

/* CONTACT FORM */

form{
    display:flex;
    flex-direction:column;
    max-width:600px;
    margin:auto;
}

input,
textarea{
    padding:14px;
    margin:10px 0;
    background:#222;
    color:white;
    border:1px solid #444;
    border-radius:4px;
    font-size:16px;
}

textarea{
    min-height:150px;
    resize:vertical;
}

button{
    padding:14px;
    background:#c0c0c0;
    color:black;
    border:none;
    border-radius:4px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:white;
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    background:black;
    margin-top:60px;
    border-top:2px solid #c0c0c0;
}

footer a{
    color:#c0c0c0;
    text-decoration:none;
}

footer a:hover{
    color:white;
}

/* FLOATING CALL BUTTON */

.call-now{
    position:fixed;
    bottom:20px;
    right:20px;
    background:red;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:bold;
    z-index:999;
    box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.call-now:hover{
    background:#cc0000;
}

/* ACCREDITATION STRIP */

.accreditation-strip{
    background:white;
    padding:10px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    border-bottom:2px solid #c0c0c0;
}

.accreditation-strip img{
    width:auto !important;
    height:25px !important;
    max-width:80px !important;
    object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

    header{
        flex-direction:column;
        padding:15px;
    }

    .logo img{
    width:300px;
    height:auto;
}
    nav{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:10px;
        margin-top:15px;
    }

    nav a{
        margin:0;
        font-size:18px;
    }

    .hero{
        padding:60px 15px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:18px;
    }

    .page{
        padding:40px 15px;
    }

    .page h1,
    .page h2{
        font-size:34px;
    }

    .page p{
        font-size:18px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .card{
        padding:30px;
        font-size:18px;
    }

    .card h3{
        font-size:22px;
    }

    .card p{
        font-size:17px;
    }

    .btn{
        display:block;
        width:80%;
        margin:15px auto;
        font-size:18px;
    }

    body::before{
        background-size:93%;
        opacity:0.60;
    }

    .call-now{
        bottom:15px;
        right:15px;
        padding:15px 20px;
        font-size:16px;
    }
.accreditation-strip{
    gap:15px;
    padding:10px;
}

.accreditation-strip img{
    height:45px;
    max-width:120px;
}
}