html{
    scroll-behavior:smooth;
}
body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
}

nav{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    z-index:1000;

    box-sizing:border-box;
}

.hero{
    text-align:center;
    padding:60px 20px;
    background-color:#F5F7FA;
}

.hero img{
    width: 180px;
}

.hero h1{
    color:#949ec9;
}

button{
    background-color:#2F80FF;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}
.hero{
    background-image:
    linear-gradient(
        rgba(6,17,60,0.6),
        rgba(6,17,60,0.6)
    ),
    url("sumatrixteam.jpeg");

    background-size: cover;
    background-position: center top;
    color:white;
    text-align:center;
    padding:180px 20px 120px;

    transition: all 1.5s ease-in-out;
}

.hero h1{
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p{
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.whatsapp-btn{
    background-color: #25D366;
    margin-left: 10px;
}
.services{
    padding: 80px 20px;
    text-align: center;
}

.services h2{
    color:#06113C;
    margin-bottom:40px;
}

.services-container{
    display:flex;
    gap:20px;
}

.service-card{
    flex:1;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0px 4px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:#2F80FF;
}

@media(max-width:768px){

    .services-container{
        flex-direction:column;
    }

}
.about{
    background-color:#F5F7FA;
    padding:80px 20px;
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about h2{
    color:#06113C;
    margin-bottom:25px;
}

.about p{
    line-height:1.8;
    font-size:18px;
    margin-bottom:20px;
}
.why-us{
    padding:80px 20px;
    text-align:center;
}
.vision-mission{
    display:flex;
    gap:20px;
    padding:80px 20px;
    background-color:#F5F7FA;
}

.vm-card{
    flex:1;
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0px 4px 15px rgba(0,0,0,0.1);
}

.vm-card h2{
    color:#06113C;
}

@media(max-width:768px){

    .vision-mission{
        flex-direction:column;
    }

}
.contact{
    text-align:center;
    padding:80px 20px;
}

.contact h2{
    color:#06113C;
}
footer{
    background:#06113C;
    color:white;
    text-align:center;
    padding:25px;
}
.logo{
    width:140px;
    border-radius:18px;
    transition:0.3s;
}

.nav-links a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-weight:600;
}

.nav-links a:hover{
    color:#2F80FF;
}
section{
    padding: 100px 20px;
}

h1{
    font-size: 3.5rem;
}

h2{
    font-size: 2.2rem;
}

p{
    line-height: 1.8;
}
.values-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.value-card{
    background: white;
    width: 300px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    text-align: center;
}
.value-card h3{
    color: #007bff;
    margin-bottom: 15px;
}
.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section h2{
    color:white;
    font-size:1.2rem;
}
body{
    font-family: 'Poppins', sans-serif;
}
.clients{
    padding: 80px 20px;
    text-align: center;
    background-color: #F5F7FA;
}

.clients h2{
    color: #06113C;
    margin-bottom: 40px;
}

.clients-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.client-card{
    background: white;
    width: 280px;
    height: 180px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    transition: 0.3s;
}

.client-card:hover{
    transform: translateY(-8px);
}

.client-card img{
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}
.location{
    padding:80px 20px;
    text-align:center;
}

.location h2{
    margin-bottom:30px;
    color:#06113C;
}

.map-container iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:12px;
}
.floating-whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;

    background-color: #25D366;
    color: white;

    padding: 15px 20px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    box-shadow: 0 4px 15px rgba(0,0,0,0.3);

    z-index: 9999;
}

.floating-whatsapp:hover{
    transform: scale(1.05);
}