*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    
}

header {
    display: flex;
    height: 10vh;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: white;
    padding: 20px;
}

.logo {
  font-family: "Share Tech", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4vh;
}



nav {
    display:flex;
    justify-content:right;
    align-items:center;
}

nav ul {
    display: flex;
    list-style: none;
    display: flex;
    gap: 20px;
}


nav ul li {
    margin-left: 20px;
}
nav a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #f4a261;
}

.hero h1{
    height: 10vh;
    background: linear-gradient(to right, #004e92,#000428);
    color: white;
    display: flex;
    justify-content:center;
    padding: 20px;
}

.hero p{
    height: 40vh;
    background: linear-gradient(to right, #004e92,#000428);
    color: white;
    display: flex;
    justify-content:center;
    padding: 20px;
}

.btn{
    margin: 50px;
    padding: 12px;
    border: none;
    background: white;
    color:#004e92 ;
    cursor: pointer;
    transition: 0.4s;
   
}
.btn:hover {
        background: #e76f51;
}

#about {
    padding: 60px;
}

#about h1 {
    text-align: center;
    margin-bottom: 20px;
}

#about p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.6;
}

#about ul {
    text-align: left;
    margin-left: 40px;
    margin-bottom: 20px;
}

#services {
    padding: 60px 20px;
    background: #f9f9f9;
}

.service-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    background: linear-gradient(to right, #c1e0fb,#c2c8f9);
    color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0,.1);
    flex: 1;
    transition:0.4s;
}

.card:hover {
    transform: translate(-5px);
}
#gallery{
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
}

#contact {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#contact h3 {
    text-align: center;
    margin-bottom: 20px;

}
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    padding:10px;
    margin-bottom: 15px;
    border-radius:5px;
    border:1px solid #ccc;
}

form button {
    padding: 12px;
    border: none;
    background: #004e92;
    color: white;
    cursor: pointer;
    transition: 0.4s;
}

#contact p {
    text-align: left;
   
    
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}


@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}