/* ===== PREMIUM GLOBAL ===== */
body{
font-family:'Poppins',sans-serif;
margin:0;
background:linear-gradient(120deg,#f5f7fb,#e3ecff);
scroll-behavior:smooth;
}
h2{
text-align:center;
font-size:32px;
margin-bottom:30px;
font-weight:600;
}
/* ===== ULTRA PREMIUM HEADER ===== */
.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 8px 25px rgba(0,0,0,0.3);
animation:fadeDown .8s ease;

background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('../images/banner.png');
background-size:cover;
background-position:center;
}

.footer{
text-align:center;
background:#0f4c81;
color:white;
padding:20px;
margin-top:50px;
}

/* LOGO AREA */
.logo{
display:flex;
align-items:center;
gap:12px;
}


.logo img{
height:100px;
width:100px;
border-radius:50%;
object-fit:cover;

padding:2px;
background:#000;
}

.logo img:hover{
transform:scale(1.05);
}
.logo span{
margin-left:10px;
font-size:18px;
font-weight:600;
color:white;
}

/* BRAND TEXT */
.brand h2{
margin:0;
font-size:22px;
font-weight:700;
letter-spacing:1px;
background:linear-gradient(45deg,#00c6ff,#0072ff);
-webkit-background-clip:text;
color:transparent;
}

.brand span{
font-size:12px;
color:#ccc;
}

/* NAVBAR */
.navbar a{
color:#eee;
margin-left:30px;
text-decoration:none;
font-weight:500;
position:relative;
transition:.3s;
}

/* HOVER EFFECT */
.navbar a:hover{
color:#00c6ff;
}

.navbar a::after{
content:'';
position:absolute;
bottom:-6px;
left:0;
width:0;
height:2px;
background:#00c6ff;
transition:.3s;
}

.navbar a:hover::after{
width:100%;
}

/* ===== HERO PREMIUM ===== */
.hero{ 
height:100vh; 
display:flex; 
flex-direction:column; 
justify-content:center; 
align-items:center; 
text-align:center; 
color:#000; 
/* COMBINED BACKGROUND */ 
background:
linear-gradient(120deg,#f8fbff,#dbe9ff),
url('logo.png');
background-size:100% 100%, 50px 50px, 50px 50px; 
position:relative; 
overflow:hidden; 
}

.hero::before{
content:'';
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(0,123,255,0.2),transparent 70%);
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index:0;
}

.hero *{
position:relative;
z-index:1;
}

.hero h1{
font-size:60px;
font-weight:700;
color:#111;
animation:fadeDown 1s ease;
}

.hero p{
font-size:18px;
color:#555;
margin-top:10px;
}

.hero button{
margin-top:30px;
background:linear-gradient(45deg,#ffc107,#ff9800);
padding:14px 40px;
border:none;
border-radius:30px;
font-size:18px;
cursor:pointer;
transition:.3s;
color:#000;
font-weight:600;
}

.hero button:hover{
transform:scale(1.08);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ===== SERVICES PREMIUM ===== */
.service-box{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);
border-radius:15px;
padding:30px;
transition:.4s;
border:1px solid rgba(255,255,255,0.3);
text-align:center;
}

.service-box:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}
.service-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:40px 8%;
}
/* ===== PORTFOLIO PREMIUM ===== */
.portfolio-box{
overflow:hidden;
border-radius:15px;
transition:.4s;
position:relative;
text-align:center;
}

.portfolio-box img{
width:100%;
height:200px;
object-fit:cover;
}

.portfolio-box:hover img{
transform:scale(1.1);
}

.portfolio-box::after{
content:'View Project';
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,0.6);
color:white;
padding:10px 20px;
border-radius:20px;
opacity:0;
transition:.3s;
}

.portfolio-box:hover::after{
opacity:1;
}

.portfolio-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
padding:40px 8%;
}

/* ===== CONTACT PREMIUM ===== */
.contact form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact input,
.contact textarea{
width:100%;
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

.contact button{
background:#0f4c81;
color:white;
padding:12px;
border:none;
border-radius:8px;
cursor:pointer;
}

/* ===== BUTTON EFFECT ===== */
button{
transition:.3s;
}

button:hover{
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* ===== ANIMATION ===== */
@keyframes fadeDown{
from{
opacity:0;
transform:translateY(-30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.badge{
background:white;
padding:6px 15px;
border-radius:20px;
font-size:12px;
margin-bottom:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.client-logos{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:30px;
padding:40px;
}

.client-logos div{
background:white;
padding:15px 25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
font-weight:500;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}