/* mobile1.css */

/* Make images and text scale properly */
img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
/* NAVBAR */
/* MOBILE NAVBAR */

#navbar{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    padding: 8px 12px;

    background: rgba(0,0,0,0.95);
    z-index: 9999;

    transition: transform 0.35s ease;
}

#logo{
    margin: 0;
}

#logo img{
    width: 45px;
    height: 45px;
    object-fit: contain;
}

#navbar ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2px;

    padding: 0;
    margin: 0;
}

#navbar ul li a{
    font-size: 0.75rem;
    padding: 6px 5px;
}

/* Logo */
#logo {
    margin: 10px 0;
}

/* Home Section */
/* HOME SECTION */
#home{
    height: auto;
    min-height: 100vh;
    padding-top: 90px;
}

.welcome {
    font-size: clamp(2.5rem, 7vw, 5.2rem);
}

#home h3{
    font-size: clamp(1.2rem, 4vw, 2.6rem);
}

#home .intro{
    font-size: 1.4rem;
    margin-top: 10px;
    font-style: normal;
    opacity: 0.9;
    max-width: 1100px;
    width: 90%;
    padding: 0;
}

#home .intro h2{
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn{
    width: auto;
    padding: 10px 20px;
}

/* Buttons */
.btn {
    width: 33%;
    font-size: 1.1rem;
    margin: 10px 0;
    padding: 10px 20px;
}

/* Heading Sizes */
.h-prim{
    font-size: 2rem;
    padding: 10px;
}

.h-sec{
    font-size: 1.5rem;
    padding: 8px;
}

/* Services */
.services-container {
    padding-top: 40px;
}
.allservices, .allservices1 {
    flex-direction: column;
    margin: 10px;
    padding: 10px;
}
.servicebox {
    width: 100%;
    font-size: 1.1rem;
}
.servicebox img {
    width: 100%;
    height: auto;
}

/* Clients */
#client {
    flex-direction: column;
}
.client-item {
    padding: 10px;
}
#client img {
    height: 60px;
}

/* Contact Form */
form{
    width:100%;
}

.formgrp{
    width:100%;
}

#contactbox{
    padding:20px;
}

#contactbox input,
#contactbox textarea{
    width:100%;
}
/* ABOUT US */

.about-container{
    flex-direction: column-reverse;
    gap: 20px;
}

.about-image{
    max-width: 180px;
    min-width: 180px;
    padding-top: 0;
}

.about-text{
    min-width: 100%;
    font-size: 1rem;
}

.about-text p{
    text-align: left;
}
