*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#f8fbff;
}

/* NAVBAR */

header{
position:fixed;
width:100%;
top:0;
background:white;
box-shadow:0 2px 12px rgba(0,0,0,0.05);
z-index:999;
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px;
}

.logo{
font-size:22px;
font-weight:600;
color:#2563eb;
}

.nav-links{
list-style:none;
display:flex;
}

.nav-links li{
margin-left:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

/* MOBILE MENU */

.menu-btn{
display:none;
font-size:22px;
}

/* HERO */

.hero{
height:90vh;
position:relative;
margin-top:70px;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:38px;
font-weight:600;
opacity:0;
transition:0.8s;
text-align:center;
padding:20px;
}

.slide.active{
opacity:1;
}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.5);
}

.slide h1{
z-index:2;
}

/* SLIDER CONTROLS */

.slider-controls span{
position:absolute;
top:50%;
font-size:35px;
color:white;
cursor:pointer;
padding:10px;
}

.slider-controls span:first-child{
left:20px;
}

.slider-controls span:last-child{
right:20px;
}

.dots{
position:absolute;
bottom:20px;
width:100%;
text-align:center;
}

.dot{
height:10px;
width:10px;
background:white;
display:inline-block;
border-radius:50%;
margin:0 5px;
opacity:0.4;
}

.dot.active{
opacity:1;
}

/* TAGLINE */

.tagline{
text-align:center;
padding:60px 20px;
font-size:24px;
}

/* SERVICES */

.services{
max-width:1200px;
margin:auto;
padding:50px 20px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
background:white;
padding:30px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.service-card i{
font-size:40px;
color:#2563eb;
margin-bottom:15px;
}

/* BUTTON */

.service-btn{
display:inline-block;
margin-top:15px;
padding:10px 25px;
background:linear-gradient(135deg,#2563eb,#1e40af);
color:white;
border-radius:30px;
text-decoration:none;
transition:0.3s;
}

.service-btn:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(37,99,235,0.5);
}

/* TRUST */

.trust{
display:flex;
justify-content:center;
padding:40px;
}

.badge{
background:#2563eb;
color:white;
padding:20px 35px;
border-radius:50px;
font-weight:500;
}

/* CONTACT */

.contact{
padding:60px 20px;
text-align:center;
}

.contact-form{
max-width:500px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ddd;
}

.send-btn{
background:#2563eb;
color:white;
border:none;
padding:12px 30px;
border-radius:30px;
cursor:pointer;
}

/* FOOTER */

footer{
background:#0f172a;
color:white;
text-align:center;
padding:20px;
}

/* WHATSAPP FLOAT */

.whatsapp-btn{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
padding:14px;
border-radius:50%;
font-size:24px;
}

/* ANIMATION */

.reveal{
opacity:0;
transform:translateY(30px);
transition:0.8s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:900px){
.services{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:650px){

.services{
grid-template-columns:1fr;
}

.nav-links{
position:absolute;
top:70px;
background:white;
width:100%;
flex-direction:column;
display:none;
}

.nav-links li{
padding:15px;
}

.menu-btn{
display:block;
}

.slide{
font-size:26px;
}

}
/* SERVICES PAGE HEADER */

.page-header{
margin-top:100px;
padding:50px 20px;
text-align:center;
background:linear-gradient(135deg,#eef4ff,#ffffff);
}

.page-header h1{
font-size:32px;
margin-bottom:10px;
}

/* SERVICES PAGE GRID FIX */

.services-page{
margin-top:30px;
}
/* PORTFOLIO PAGE FIX */

.portfolio-section{
padding:60px 20px;
background:#f8fbff;
}

/* Grid Layout */

.portfolio-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* Portfolio Card UI */

.portfolio-card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
border-left:5px solid #2563eb;
transition:0.3s ease;
}

/* Hover Effect */

.portfolio-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* Text Spacing */

.portfolio-card h3{
margin-bottom:10px;
color:#1e40af;
}

.portfolio-card p{
margin:6px 0;
font-size:14px;
color:#444;
}

/* FIX HEADER OVERLAP */

.page-header{
margin-top:90px;
padding:50px 20px;
background:linear-gradient(135deg,#eef4ff,#ffffff);
text-align:center;
}

/* RESPONSIVE FIX */

@media(max-width:900px){
.portfolio-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio-card{
padding:20px;
}
}
/* CONTACT PAGE LAYOUT */

.contact-page{
padding:60px 20px;
background:#f8fbff;
}

.contact-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

/* Contact Info Box */

.contact-info h2{
margin-bottom:10px;
}

.info-box{
display:flex;
align-items:center;
gap:12px;
margin:15px 0;
font-size:15px;
}

.info-box i{
color:#2563eb;
font-size:18px;
}

/* FORM BOX */

.contact-form-box{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box h2{
margin-bottom:15px;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ddd;
}

/* MAP */

.map-section iframe{
width:100%;
height:350px;
border:0;
}

/* MOBILE RESPONSIVE */

@media(max-width:900px){

.contact-container{
grid-template-columns:1fr;
}

}
/* CENTERED 4 CARD AUTO SLIDER */

.clients-section{
padding:60px 20px;
background:#f8fbff;
text-align:center;
}

.sub-text{
margin-bottom:30px;
color:#555;
font-size:14px;
}

/* Wrapper (controls visible area) */

.clients-wrapper{
max-width:1000px;
margin:auto;
overflow:hidden;
}

/* Track */

.clients-track{
display:flex;
gap:20px;
animation:clientScroll 20s linear infinite;
width:max-content;
}

/* Pause On Hover */

.clients-wrapper:hover .clients-track{
animation-play-state:paused;
}

/* Card Design */

.client-card{
min-width:230px;
background:white;
padding:18px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
border-top:4px solid #2563eb;
}

/* Text */

.client-card h4{
font-size:15px;
color:#1e40af;
margin-bottom:5px;
}

.client-card span{
font-size:13px;
color:#666;
}

/* Animation */

@keyframes clientScroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* TEAM PAGE */

.team-page{
padding:60px 20px;
background:#f8fbff;
}

/* GRID */

.team-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* CARD */

.team-card{
background:white;
padding:30px 20px;
border-radius:14px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s ease;
}

/* Hover */

.team-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* Avatar Icon */

.team-avatar{
width:90px;
height:90px;
margin:auto;
background:#2563eb;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:35px;
margin-bottom:15px;
}

/* Name */

.team-card h3{
color:#1e40af;
margin-bottom:5px;
}

/* Role */

.team-role{
display:block;
font-size:14px;
color:#555;
margin-bottom:10px;
}

/* Email */

.team-email{
font-size:14px;
color:#333;
}

/* Responsive */

@media(max-width:900px){
.team-container{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.team-container{
grid-template-columns:1fr;
}
}

/* RESPONSIVE FIX */

/* Tablet = 2 cards */

@media(max-width:900px){
.clients-wrapper{
max-width:520px;
}
}

/* Mobile = 1 card */

@media(max-width:600px){
.clients-wrapper{
max-width:260px;
}
}
/* NAV LINK HOVER EFFECT */

.nav-links li a{
position:relative;
padding:6px 4px;
font-weight:500;
transition:0.3s ease;
}

/* Text Color Change */

.nav-links li a:hover{
color:#2563eb;
}

/* Animated Underline */

.nav-links li a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0%;
height:2px;
background:#2563eb;
transition:0.3s ease;
}

/* Expand Underline On Hover */

.nav-links li a:hover::after{
width:100%;
}

/* Active Page Highlight (Optional) */

.nav-links li a.active{
color:#2563eb;
}

.nav-links li a.active::after{
width:100%;
}
/* FOOTER WITH SOCIAL ICONS */

.site-footer{
background:#0f172a;
color:white;
padding:25px 15px;
}

.footer-content{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:15px;
}

/* Social Icons */

.social-icons{
display:flex;
gap:15px;
}

.social-icons a{
color:white;
font-size:18px;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,0.08);
transition:0.3s ease;
}

/* Hover Animation */

.social-icons a:hover{
transform:translateY(-3px) scale(1.08);
}

/* Brand Hover Colors */

.social-icons a:hover .fa-youtube{
color:#FF0000;
}

.social-icons a:hover .fa-instagram{
color:#E1306C;
}

.social-icons a:hover .fa-facebook-f{
color:#1877F2;
}

.social-icons a:hover .fa-linkedin-in{
color:#0A66C2;
}

.social-icons a:hover .fa-x-twitter{
color:#000000;
background:white;
border-radius:50%;
}

/* Mobile Responsive */

@media(max-width:600px){

.footer-content{
flex-direction:column;
text-align:center;
}

}
/* WHO ARE WE SECTION */

.about-section{
max-width:1000px;
margin:auto;
padding:60px 20px;
text-align:center;
}

.about-section h2{
font-size:28px;
color:#1e40af;
margin-bottom:15px;
}

.about-section p{
font-size:15px;
line-height:1.7;
color:#444;
margin-bottom:15px;
}

/* Mobile Optimization */

@media(max-width:600px){

.about-section{
padding:40px 15px;
}

.about-section h2{
font-size:24px;
}

}
