/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
line-height:1.6;
color:#334155;
background:#ffffff;
}

img{
max-width:100%;
display:block;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* NAVBAR */

.navbar{
background:#ffffff;
border-bottom:1px solid #e2e8f0;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.logo{
font-size:22px;
font-weight:800;
text-decoration:none;
color:#0f172a;
}

.logo span{
color:#6366f1;
}

.nav-links{
list-style:none;
display:flex;
gap:30px;
align-items:center;
}

.nav-links a{
text-decoration:none;
color:#334155;
font-weight:500;
}

.nav-links a:hover{
color:#6366f1;
}

/* BUTTON */

.btn{
padding:10px 20px;
border-radius:8px;
text-decoration:none;
font-weight:600;
display:inline-block;
}

.btn-primary{
background:#6366f1;
color:white;
}

.btn-primary:hover{
background:#4f46e5;
}

.btn-secondary{
background:#e2e8f0;
color:#0f172a;
}

/* HERO */

.hero{
padding:80px 0;
}

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:48px;
font-weight:800;
color:#0f172a;
margin-bottom:15px;
}

.hero h1 span{
color:#6366f1;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.hero-btns{
display:flex;
gap:15px;
}

.badge{
display:inline-block;
background:#e0e7ff;
color:#6366f1;
padding:6px 15px;
border-radius:20px;
font-size:14px;
margin-bottom:15px;
}

/* TRUSTPILOT */

.tp-section{
padding:30px 0;
background:#f8fafc;
}

/* SERVICES */

.services{
padding:80px 0;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header h2{
font-size:34px;
color:#0f172a;
margin-bottom:10px;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#f8fafc;
padding:25px;
border-radius:15px;
transition:0.3s;
text-align:center;
}

.service-card img{
border-radius:10px;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
color:#0f172a;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}

/* FOOTER */

.footer{
background:#0f172a;
color:white;
padding:60px 0;
margin-top:60px;
}

.footer h3{
margin-bottom:10px;
}

.footer h4{
margin-bottom:10px;
}

.footer ul{
list-style:none;
}

.footer ul li{
margin-bottom:8px;
}

.footer a{
color:#cbd5f5;
text-decoration:none;
}

.footer a:hover{
color:white;
}

.copyright{
text-align:center;
padding-top:30px;
border-top:1px solid #334155;
margin-top:30px;
font-size:14px;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:#0f172a;
}

/* MOBILE */

@media (max-width:900px){

.grid-2{
grid-template-columns:1fr;
text-align:center;
}

.hero-btns{
justify-content:center;
}

.grid-3{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE MENU */

@media (max-width:768px){

.nav-links{
position:fixed;
top:70px;
left:-100%;
width:100%;
height:100vh;
background:white;
flex-direction:column;
align-items:center;
padding-top:40px;
gap:25px;
transition:0.4s;
}

.nav-links.active{
left:0;
}

.hamburger{
display:flex;
}

.desktop-only{
display:none;
}

.mobile-only{
display:block;
}

.grid-3{
grid-template-columns:1fr;
}

.hero h1{
font-size:34px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.hero{
padding:50px 0;
}

.hero h1{
font-size:28px;
}

.section-header h2{
font-size:26px;
}

}
/* SOCIAL LINKS */

.social-proof{
padding:40px 0;
background:#f8fafc;
}

.social-icons{
display:flex;
justify-content:center;
gap:40px;
text-align:center;
}

.social-icons img{
width:45px;
margin:auto;
margin-bottom:8px;
transition:0.3s;
}

.social-icons a{
text-decoration:none;
color:#0f172a;
font-weight:600;
}

.social-icons a:hover img{
transform:scale(1.2);
}

/* POPUP */

.order-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
display:none;
}

.popup-box{
background:white;
padding:30px;
border-radius:12px;
max-width:400px;
text-align:center;
position:relative;
animation:popupAnim 0.4s ease;
}

.popup-box h3{
margin-bottom:10px;
color:#0f172a;
}

.popup-box p{
margin-bottom:20px;
}

.close-popup{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:18px;
}

@keyframes popupAnim{

from{
transform:scale(0.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

/* MOBILE */

@media(max-width:768px){

.social-icons{
flex-direction:column;
gap:20px;
}

.popup-box{
margin:20px;
}

}
/* Update the global background to create contrast */
body {
    background-color: #f1f5f9; /* Light grey background */
    font-family: 'Inter', sans-serif;
}

/* Update Service/Portfolio Cards */
.service-card, .project-card {
    background: #ffffff; /* Pure white cards */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0; /* Subtle border for separation */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Soft depth */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effect with depth */
.service-card:hover, .project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Cyan Blue Button Update */
.btn-cyan {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.btn-cyan:hover {
    background: #06b6d4 !important; /* Cyan Blue */
    color: #ffffff !important;
    border-color: #06b6d4;
}