/* ================= GOOGLE FONTS ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* ================= ROOT COLORS ================= */

:root{

--primary:#0F172A;
--text:#0F172A;
--text-light:#64748B;

--background:#F1F5F9;
--surface:#FFFFFF;

--accent:#22C55E;

}


/* ================= RESET ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:var(--background);
color:var(--text);
line-height:1.6;
}


/* ================= CONTAINER ================= */

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* ================= HEADER ================= */

header{
background:var(--surface);
border-bottom:1px solid #E2E8F0;
position:sticky;
top:0;
z-index:1000;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0;
}

.logo{
display:flex;
align-items:center;
}


/* ================= NAVIGATION ================= */

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:var(--text-light);
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:var(--text);
}

.nav-toggle{
display:none;
font-size:26px;
cursor:pointer;
}
.logo img{
height:40px;
width:auto;
}
nav ul li a.active{
color:var(--accent);
}

/* ================= BUTTON ================= */

.btn{
background:var(--accent);
color:white;
padding:14px 26px;
border-radius:10px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:0.3s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}


/* ================= HERO ================= */

.hero{
padding:120px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-text h1{
font-size:48px;
margin-bottom:20px;
line-height:1.2;
}

.hero-subtitle{
font-size:20px;
color:var(--text-light);
margin-bottom:20px;
}

.hero-text p{
font-size:18px;
color:var(--text-light);
margin-bottom:30px;
}

.hero-image{
display:flex;
justify-content:center;
align-items:center;
}

.hero-image img{
width:100%;
max-width:520px;
border-radius:16px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}


/* ================= HERO STATS ================= */

.hero-stats{
display:flex;
gap:40px;
margin-top:40px;
}

.hero-stats h3{
font-size:24px;
}

.hero-stats p{
font-size:14px;
color:var(--text-light);
}


/* ================= TRUST SECTION ================= */

.trust-section{
padding:60px 0;
}

.trust-text{
text-align:center;
margin-bottom:30px;
color:var(--text-light);
}

.trust-logos-wrapper{
overflow:hidden;
position:relative;
}

.trust-logos{
display:flex;
align-items:center;
gap:60px;
width:max-content;
animation:scrollLogos 25s linear infinite;
}
@keyframes scrollLogos{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
.trust-logos:hover{
animation-play-state:paused;
}

.trust-logos img{
height:40px;
width:auto;
max-width:120px;
object-fit:contain;
filter:grayscale(100%);
opacity:0.7;
transition:0.3s;
}

.trust-logos img:hover{
filter:none;
opacity:1;
}


/* ================= SECTION ================= */

.section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:20px;
}


/* ================= SERVICES ================= */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
}

.service-card{
background:var(--surface);
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all 0.3s ease;
position:relative;
overflow:hidden;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.service-card h3{
margin-bottom:10px;
color:var(--primary);
}

.service-card p{
color:var(--text-light);
margin-bottom:15px;
}

.service-card ul{
padding-left:18px;
color:var(--text-light);
}

.service-card ul li{
margin-bottom:6px;
}


/* ================= PORTFOLIO ================= */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.portfolio-card{
background:var(--surface);
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all 0.3s ease;
cursor:pointer;
text-decoration:none;
color:inherit;
display:block;
}

.portfolio-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.portfolio-card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.3s;
display:block;
}

.portfolio-card:hover img{
transform:scale(1.05);
}

.portfolio-info{
padding:25px;
}

.portfolio-info h3{
color:var(--primary);
margin-bottom:10px;
}

.portfolio-info p{
color:var(--text-light);
font-size:15px;
}
.service-card:hover,
.portfolio-card:hover,
.testimonial-card:hover{
transform:translateY(-8px);
}


/* ================= WHY GRID ================= */

.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:50px;
text-align:center;
max-width:900px;
margin:auto;
}


/* ================= TESTIMONIALS ================= */

.testimonials-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.testimonial-card{
background:var(--surface);
padding:30px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
font-style:italic;
transition:0.3s;
}

.testimonial-card:hover{
transform:translateY(-6px);
}

.testimonial-card h4{
margin-top:15px;
font-size:16px;
font-weight:600;
}

.testimonial-card span{
font-size:14px;
color:var(--text-light);
}


/* ================= CONTACT FORM ================= */

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
margin-top:20px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #CBD5E1;
border-radius:8px;
font-family:inherit;
}


/* ================= CTA ================= */

.cta{
background:var(--accent);
color:white;
text-align:center;
padding:100px 20px;
border-radius:16px;
margin-top:80px;
}

.cta h2{
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
}



/* ================= FOOTER ================= */

footer{
background:var(--primary);
color:#fff;
padding-top:60px;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
align-items:flex-start;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
color:#CBD5E1;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#CBD5E1;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:var(--accent);
}

.footer-social{
margin-top:20px;
display:flex;
gap:15px;
flex-wrap:wrap;
}

.footer-social a{
font-size:14px;
color:#CBD5E1;
text-decoration:none;
border-bottom:1px solid transparent;
transition:0.3s;
}

.footer-social a:hover{
color:var(--accent);
border-bottom:1px solid var(--accent);
}


.footer-social a:hover{
color:var(--accent);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:20px 0;
font-size:14px;
color:#CBD5E1;
}
.footer-col{
text-align:left;
}
.footer-col ul li a{
color:#CBD5E1;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:var(--accent);
}

/* ================= ANIMATIONS ================= */

.fade-in,
.fade-left,
.fade-right{
opacity:0;
transition:0.8s ease;
}

.fade-in{
transform:translateY(30px);
}

.fade-left{
transform:translateX(-40px);
}

.fade-right{
transform:translateX(40px);
}

.appear{
opacity:1;
transform:translate(0,0);
}
/* CONTACT GRID */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-form-wrapper{
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.contact-info-wrapper{
display:grid;
gap:20px;
}

.contact-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-card h4{
margin-bottom:8px;
}


/* CONTACT MOBILE */

@media (max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

}
/* CONTACT SECTION IMPROVEMENT */

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
margin-top:40px;
}

.contact-form-wrapper{
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.contact-info-wrapper{
display:grid;
gap:20px;
}

.contact-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 15px 30px rgba(0,0,0,0.05);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
}
/* CONTACT HERO SECTION */

.contact-hero{
background:white;
padding:45px 35px;
border-radius:16px;
text-align:center;
box-shadow:0 20px 40px rgba(0,0,0,0.06);
max-width:850px;
margin:auto;
}
.contact-hero p{
margin-top:10px;
color:#64748B;
font-size:17px;
}
.contact-section{
background:#F8FAFC;
padding:80px 0 40px 0;
}
.portfolio-info .btn{
margin-top:10px;
padding:8px 16px;
font-size:14px;
}
/* WHY SECTION ICONS */

.why-card{
text-align:center;
padding:10px;
}

.why-icon{
width:60px;
height:60px;
margin:0 auto 15px auto;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:rgba(34,197,94,0.08);
color:var(--accent);
}

.why-icon svg{
width:28px;
height:28px;
}

.footer-social a:hover{
color:var(--accent);
}
/* SERVICE ICONS */

.service-icon{
width:60px;
height:60px;
margin-bottom:15px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background:rgba(34,197,94,0.08);
color:var(--accent);
}

.service-icon svg{
width:28px;
height:28px;
}
a{
text-decoration:none;
color:inherit;
}
img{
max-width:100%;
height:auto;
display:block;
}
html{
scroll-behavior:smooth;
}

