

/* ===== GLOBAL PROFESSIONAL FONT ===== */
body{
  font-family: 'Inter', sans-serif;
  font-size:16px;
  color:#374151;   /* professional dark gray */
  line-height:1.6;
}
/* Headings like Apple/Microsoft */
h1,h2,h3,h4{
  font-weight:600;
  color:#111827;
  letter-spacing:-0.3px;
}


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI', sans-serif;
}

html{ scroll-behavior:smooth; }
section{ scroll-margin-top:100px; }

body{
background:#f8fafc;
color:#1f2933;
}

h1,h2,h3{
letter-spacing:-.5px;
}

/* ================= NAVBAR ================= */

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 50px;
background:white;
box-shadow:0 4px 18px rgba(0,0,0,.06);
position:sticky;
top:0;
z-index:1000;
}

.logo{ font-size:22px; font-weight:800; }
.logo .green{ color:#2ecc71; }

.nav a{
margin:0 14px;
text-decoration:none;
color:#374151;
font-weight:600;
position:relative;
}

.nav a:hover{
color:#2ecc71;
}

.menu-btn{
display:none;
font-size:26px;
cursor:pointer;
}

/* ================= HERO ================= */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 80px;
gap:60px;
}

.hero-left{ flex:1; }

.welcome{
color:#2ecc71;
font-weight:700;
letter-spacing:1.5px;
margin-bottom:15px;
}

.hero-left h1{
font-size:56px;
line-height:1.08;
color:#1f2937;
margin-bottom:22px;
}

.subtext{
color:#6b7280;
font-size:18px;
max-width:520px;
margin-bottom:34px;
line-height:1.6;
}



/* ===== PREMIUM BUTTONS ===== */

.cta,
.outline-btn,
.contact-form button{
padding:14px 32px;
border-radius:14px;
font-weight:700;
font-size:15px;
cursor:pointer;
transition:.25s ease;
letter-spacing:.3px;
}

/* primary */
.cta,
.contact-form button{
background:linear-gradient(135deg,#2ecc71,#27ae60);
color:white;
border:none;
box-shadow:0 14px 32px rgba(46,204,113,.28);
}

.cta:hover,
.contact-form button:hover{
transform:translateY(-3px);
box-shadow:0 20px 46px rgba(46,204,113,.38);
}

/* outline (READ MORE) */
.outline-btn{
border:2px solid #2ecc71;
background:white;
color:#27ae60;
}

.outline-btn:hover{
background:#2ecc71;
color:white;
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(46,204,113,.30);
}

/* ================= HERO IMAGE ================= */

.hero-right{
flex:1;
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.hero-right::before{
content:"";
position:absolute;
width:720px;
height:520px;
background:#e6f4ee;
border-radius:80px 220px 80px 220px;
z-index:-1;
}

.image-shape{
width:680px;
height:460px;
border-radius:70px 200px 70px 200px;
overflow:hidden;
box-shadow:0 40px 90px rgba(0,0,0,.18);
transition:.4s;
}

.image-shape:hover{
transform:scale(1.03);
}

.image-shape img{
width:100%;
height:100%;
object-fit:cover;
}

/* ================= ABOUT ================= */

.about2{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
padding:110px 80px;
position:relative;
}

.about2::before{
content:"";
position:absolute;
left:-80px;
top:80px;
width:260px;
height:260px;
background:#e6f4ee;
border-radius:50%;
}

.about2-left{
flex:1;
display:flex;
justify-content:center;
position:relative;
}

.phone-mock{
width:300px;
height:580px;
border-radius:40px;
overflow:hidden;
background:black;
padding:8px;
box-shadow:0 30px 70px rgba(0,0,0,.18);
}

.phone-mock img{
width:100%;
height:100%;
object-fit:cover;
border-radius:32px;
}

.float-card{
position:absolute;
right:-10px;
top:140px;
background:white;
padding:18px;
border-radius:18px;
box-shadow:0 18px 45px rgba(0,0,0,.12);
width:180px;
font-size:14px;
}

.about2-right{ flex:1; max-width:620px; }

.tag{
color:#2ecc71;
font-weight:700;
letter-spacing:1.4px;
margin-bottom:14px;
}

.about2-right h2{
font-size:42px;
line-height:1.15;
margin-bottom:22px;
color:#1f2937;
}

.about-desc{
font-size:17px;
color:#64748b;
line-height:1.7;
margin-bottom:16px;
}

.about-desc.bold{
font-weight:600;
color:#1f2937;
}

/* ================= SERVICES ================= */
/* Service page hero heading */
.service-hero h1{
  color: #ffffff;
}


.services{
padding:110px 80px;
background:white;
}

.services-head{
text-align:center;
margin-bottom:60px;
}

.services-head h2{
font-size:40px;
color:#1f2937;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:#f8fafc;
padding:34px 28px;
border-radius:20px;
box-shadow:0 14px 34px rgba(0,0,0,.06);
transition:.35s;
position:relative;
}

.service-card::before{
content:"";
position:absolute;
top:0;
width:100%;
height:4px;
background:#2ecc71;
border-radius:20px 20px 0 0;
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 28px 70px rgba(0,0,0,.15);
background:white;
}

.icon{
width:60px;
height:60px;
border-radius:50%;
background:#e8f6ef;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
margin-bottom:18px;
}

/* ================= STATS ================= */

.stats{
padding:110px 80px;
background:linear-gradient(135deg,#2ecc71,#27ae60);
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
color:white;
}

.stat-box{
background:rgba(255,255,255,.14);
padding:42px 20px;
border-radius:20px;
backdrop-filter:blur(6px);
transition:.3s;
}

.stat-box:hover{
transform:translateY(-8px);
}

.stat-box h3{
font-size:44px;
margin-bottom:10px;
}

/* ================= PROJECTS ================= */

.projects{
padding:120px 80px;
}

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.project-card{
background:white;
border-radius:22px;
overflow:hidden;
box-shadow:0 22px 60px rgba(0,0,0,.08);
transition:.35s;
}

.project-card:hover{
transform:translateY(-12px);
box-shadow:0 32px 80px rgba(0,0,0,.15);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
}

.project-body{
padding:28px;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
padding:120px 80px;
background:#f8fafc;
text-align:center;
position:relative;
}

.test-slider{
position:relative;
max-width:900px;
margin:60px auto 0;
overflow:hidden;
}

.test-track{
display:flex;
transition:transform .5s ease;
}

.test-card{
min-width:100%;
max-width:720px;
margin:auto;
background:white;
padding:56px 64px;
border-radius:24px;
box-shadow:0 30px 80px rgba(0,0,0,.08);
line-height:1.7;
}

.test-card p{
font-size:18px;
color:#475569;
margin:18px 0;
}

.test-card strong{
font-size:18px;
color:#111827;
}

.stars{
font-size:20px;
letter-spacing:4px;
margin-bottom:18px;
color:#f1c40f;
}

.test-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:46px;
height:46px;
border-radius:50%;
border:none;
background:white;
box-shadow:0 12px 28px rgba(0,0,0,.18);
cursor:pointer;
font-size:18px;
transition:.25s;
z-index:5;
}

.test-btn:hover{
background:#2ecc71;
color:white;
transform:translateY(-50%) scale(1.1);
}

.test-btn.left{ left:120px; }
.test-btn.right{ right:120px; }

/* ================= CONTACT — HIGH FI UI ================= */
/* Contact page hero heading */
.contact-hero h1{
  color: #ffffff;
}

.contact{
padding:130px 90px;
display:flex;
gap:80px;
background:
linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 100%);
position:relative;
}

.contact-left{
flex:1;
max-width:560px;
}

.contact-left .tag{
font-size:14px;
letter-spacing:2px;
margin-bottom:18px;
}

.contact-left h2{
font-size:44px;
line-height:1.1;
margin-bottom:18px;
color:#0f172a;
}

.contact-text{
font-size:18px;
color:#64748b;
margin-bottom:28px;
line-height:1.7;
}

/* contact info rows */

.contact-info{
display:flex;
flex-direction:column;
gap:14px;
margin-top:10px;
}

.contact-info p{
font-size:16px;
color:#334155;
display:flex;
align-items:center;
gap:10px;
background:white;
padding:12px 16px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,.05);
transition:.25s;
}

.contact-info p:hover{
transform:translateX(6px);
box-shadow:0 14px 28px rgba(0,0,0,.08);
}

/* ===== FORM SIDE ===== */

.contact-right{
flex:1;
display:flex;
justify-content:center;
}

/* glass form card */

.contact-form{
width:100%;
max-width:560px;

display:grid;
grid-template-columns:1fr 1fr;
gap:18px;

padding:46px;
border-radius:26px;

background:rgba(255,255,255,.75);
backdrop-filter: blur(12px);

box-shadow:
0 30px 80px rgba(0,0,0,.10),
inset 0 1px 0 rgba(255,255,255,.6);

border:1px solid rgba(255,255,255,.6);
}

/* inputs */

.contact-form input,
.contact-form textarea{
padding:16px 18px;
border-radius:14px;
border:1px solid #e5e7eb;
font-size:15px;
background:white;
transition:.25s;
color:#0f172a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
color:#94a3b8;
}

/* focus high-fi glow */

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#2ecc71;
box-shadow:
0 0 0 4px rgba(46,204,113,.18),
0 8px 20px rgba(46,204,113,.15);
transform:translateY(-1px);
}

/* textarea full width */

.contact-form textarea{
grid-column:1/-1;
min-height:160px;
resize:vertical;
}

/* premium button */

.contact-form button{
grid-column:1/-1;
margin-top:12px;

padding:16px;
border-radius:16px;
border:none;

font-size:17px;
font-weight:800;
letter-spacing:.4px;

background:linear-gradient(135deg,#2ecc71,#27ae60);
color:white;

box-shadow:
0 18px 40px rgba(46,204,113,.35);
transition:.25s;
}

.contact-form button:hover{
transform:translateY(-3px);
box-shadow:
0 28px 60px rgba(46,204,113,.45);
}

.contact-form button:active{
transform:translateY(-1px);
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.contact{
flex-direction:column;
padding:90px 20px;
gap:50px;
}

.contact-form{
grid-template-columns:1fr;
padding:28px;
}

.contact-left h2{
font-size:34px;
}

}

/* ================= FOOTER ================= */
.footer{
  font-family:'Inter', sans-serif;
}

.footer h3,
.footer h4{
  font-weight:600;
  font-size:18px;
}

.footer p,
.footer a{
  font-size:15px;
  color:#d1d5db;
}
.footer-grid{
  letter-spacing:0.2px;
}

.footer a{
  transition:0.2s;
}

.footer a:hover{
  color:#22c55e;
}





















.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);
  font-size:14px;
  color:#d1d5db;
}


.footer{
background:#0f172a;
color:#cbd5e1;
padding:80px 80px 30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:50px;
margin-bottom:40px;
}

.footer h3{
color:white;
margin-bottom:14px;
}

.footer a{
color:#cbd5e1;
text-decoration:none;
margin-bottom:8px;
display:block;
transition:.2s;
}

.footer a:hover{
color:#2ecc71;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

.menu-btn{ display:block; }

.nav{
display:none;
flex-direction:column;
position:absolute;
left:20px;
right:20px;
top:70px;
background:white;
padding:20px;
border-radius:14px;
box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.hero,
.about2,
.contact{
flex-direction:column;
padding:70px 20px;
}

.services,
.stats,
.projects,
.testimonials{
padding:80px 20px;
}

.test-btn.left{ left:10px; }
.test-btn.right{ right:10px; }

.contact-form{
grid-template-columns:1fr;
}

}




/* ================= GLOBAL UI POLISH ================= */

section{
position:relative;
}

section::after{
content:"";
position:absolute;
left:0;
right:0;
bottom:0;
height:1px;
background:linear-gradient(to right, transparent, #e5e7eb, transparent);
opacity:.5;
}

/* ================= NAVBAR PREMIUM ================= */

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#2ecc71;
transition:.25s;
}

.nav a:hover::after{
width:100%;
}

/* ================= BUTTON HIGH-FI ================= */
.cta-box h2{
  color: #ffffff;
}


.cta,
.outline-btn,
.contact-form button{
position:relative;
overflow:hidden;
}

.cta::after,
.contact-form button::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
120deg,
transparent 20%,
rgba(255,255,255,.35),
transparent 80%
);
opacity:0;
transition:.4s;
}

.cta:hover::after,
.contact-form button:hover::after{
opacity:1;
transform:translateX(40%);
}

/* ================= READ MORE BUTTON FIX ================= */

.outline-btn{
font-size:15px;
padding:14px 34px;
border-radius:999px;
box-shadow:0 6px 16px rgba(0,0,0,.06);
}

.outline-btn:hover{
box-shadow:0 14px 34px rgba(46,204,113,.25);
}

/* ================= TESTIMONIALS HIGH DEPTH ================= */

.testimonials{
background:
linear-gradient(to bottom,#f8fafc,#eef2f7);
}

.test-card{
border:1px solid #eef2f7;
}

.test-card::before{
content:"";
position:absolute;
inset:-1px;
border-radius:24px;
background:linear-gradient(120deg, transparent, rgba(46,204,113,.15), transparent);
opacity:.4;
pointer-events:none;
}

/* subtle quote mark */

.test-card{
position:relative;
}

.test-card::after{
content:"“";
position:absolute;
top:18px;
left:26px;
font-size:60px;
color:#e5e7eb;
font-weight:900;
}

/* ================= CONTACT EXTRA GLASS ================= */

.contact-form{
background:linear-gradient(
180deg,
rgba(255,255,255,.85),
rgba(255,255,255,.65)
);
}

/* floating label feel spacing */

.contact-form input,
.contact-form textarea{
padding-top:18px;
padding-bottom:18px;
}

/* ================= CONTACT LEFT TITLE BALANCE ================= */

.contact-left h2{
letter-spacing:-1px;
}

/* ================= PROJECT CARD DEPTH ================= */

.project-card{
border:1px solid #f1f5f9;
}

.project-card:hover{
border-color:#e2e8f0;
}

/* ================= SERVICE CARD MICRO-ANIMATION ================= */

.service-card{
will-change:transform;
}

.service-card:hover .icon{
transform:scale(1.08);
transition:.3s;
}

/* ================= FOOTER ENTERPRISE LOOK ================= */

.footer{
background:
linear-gradient(180deg,#0f172a,#020617);
}

.footer-grid h4{
color:#e2e8f0;
letter-spacing:.4px;
margin-bottom:16px;
}

/* footer bottom line */

.footer::before{
content:"";
display:block;
height:1px;
background:#1f2937;
margin-bottom:40px;
opacity:.6;
}

/* ================= SCROLL FEEL ================= */

html{
scroll-padding-top:110px;
}

/* ================= MOBILE EXTRA POLISH ================= */

@media(max-width:900px){

.test-card{
padding:40px 26px;
}

.contact-info p{
font-size:15px;
}

.hero-left h1{
font-size:40px;
}

.dropdown-menu{
position:static;
opacity:1;
visibility:visible;
transform:none;
box-shadow:none;
padding:10px 0;
}

.dropdown-menu::before{
display:none;
}

.dropdown{
width:100%;
}

}


/* ================= PRODUCT LEVEL ANIMATION SYSTEM ================= */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all .7s cubic-bezier(.2,.65,.2,1);
}

.reveal.show{
opacity:1;
transform:translateY(0);
}

/* stagger effect */

.reveal.delay-1{ transition-delay:.08s; }
.reveal.delay-2{ transition-delay:.16s; }
.reveal.delay-3{ transition-delay:.24s; }
.reveal.delay-4{ transition-delay:.32s; }

/* ================= HERO ENTRY ================= */

.hero-left h1,
.hero-left .subtext,
.hero-left .cta{
animation:heroFade .9s ease forwards;
opacity:0;
}

.hero-left h1{ animation-delay:.1s; }
.hero-left .subtext{ animation-delay:.3s; }
.hero-left .cta{ animation-delay:.5s; }

@keyframes heroFade{
to{
opacity:1;
transform:translateY(0);
}
from{
opacity:0;
transform:translateY(30px);
}
}

/* ================= FLOATING LABEL INPUT ================= */

.field{
position:relative;
}

.field input,
.field textarea{
width:100%;
}

.field label{
position:absolute;
left:16px;
top:14px;
font-size:14px;
color:#94a3b8;
pointer-events:none;
transition:.2s;
background:white;
padding:0 6px;
border-radius:6px;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label{
top:-8px;
font-size:12px;
color:#2ecc71;
}

/* ================= CARD HOVER DEPTH ================= */

.service-card,
.project-card,
.test-card{
transition:transform .35s, box-shadow .35s;
}

.service-card:hover,
.project-card:hover{
transform:translateY(-14px) scale(1.01);
}

/* ================= TESTIMONIAL AUTO SLIDER DOTS ================= */

.test-dots{
display:flex;
justify-content:center;
gap:10px;
margin-top:26px;
}

.test-dots span{
width:10px;
height:10px;
border-radius:50%;
background:#cbd5e1;
cursor:pointer;
transition:.25s;
}

.test-dots span.active{
background:#2ecc71;
transform:scale(1.3);
}

/* ================= BUTTON PRESS FEEL ================= */

button:active{
transform:translateY(1px) scale(.99);
}

/* ================= IMAGE HOVER PARALLAX ================= */

.image-shape:hover img{
transform:scale(1.06);
transition:transform .6s ease;
}

/* ================= SCROLLBAR (DESKTOP POLISH) ================= */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#cbd5e1;
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:#94a3b8;
}





.hero-typing{
min-height: 140px;   /* lock height → no layout shift */
line-height:1.08;
}

/* ===== TYPEWRITER — NO LAYOUT SHIFT ===== */

.hero-title{
  line-height:1.05;
}

/* fixed typing box so height never changes */
.type-wrap{
  display:inline-block;
  min-width:220px;   /* adjust if needed */
  height:1.2em;
  position:relative;
  vertical-align:bottom;
}

/* typed text layer */
#typeText{
  position:absolute;
  left:0;
  top:0;
  white-space:nowrap;
}

/* blinking cursor */
#typeText::after{
  content:"";
  display:inline-block;
  width:3px;
  height:1.1em;
  margin-left:6px;
  background:#2ecc71;
  border-radius:2px;
  animation:cursorBlink 1s infinite;
}

@keyframes cursorBlink{
  0%,50%,100%{ opacity:1; }
  25%,75%{ opacity:0; }
}


#heroLine1::after,
#heroLine2::after{
content:"|";
margin-left:4px;
animation:blink 1s infinite;
color:#2ecc71;
}

@keyframes blink{
0%{opacity:1}
50%{opacity:0}
100%{opacity:1}
}













/* ================= NAVBAR DROPDOWN — ENTERPRISE UI ================= */

.nav{
display:flex;
align-items:center;
gap:18px;
}

/* dropdown wrapper */
.dropdown{
position:relative;
}

/* dropdown trigger link */
.dropdown > a{
display:flex;
align-items:center;
gap:6px;
}

/* dropdown card */
.dropdown-menu{
position:absolute;
top:44px;
left:0;

min-width:260px;
padding:18px 0;

background:white;
border-radius:16px;

box-shadow:
0 30px 70px rgba(0,0,0,.15),
0 2px 8px rgba(0,0,0,.06);

opacity:0;
visibility:hidden;
transform:translateY(10px) scale(.98);

transition:.22s ease;

z-index:999;
}

/* arrow pointer */
.dropdown-menu::before{
content:"";
position:absolute;
top:-8px;
left:26px;

width:16px;
height:16px;

background:white;
transform:rotate(45deg);
box-shadow:-3px -3px 8px rgba(0,0,0,.04);
}

/* dropdown items */
.dropdown-menu a{
display:block;
padding:12px 22px;
font-size:15px;
font-weight:600;

color:#475569;
text-decoration:none;

transition:.18s;
}

/* hover item */
.dropdown-menu a:hover{
background:#f1f5f9;
color:#2ecc71;
padding-left:28px;
}

/* show on hover */
.dropdown:hover .dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0) scale(1);
}

/* ================= NAV ACTIVE COLOR ================= */

.nav > a:hover,
.dropdown > a:hover{
color:#2ecc71;
}


/* ================= ABOUT PAGE HERO ================= */

.about-hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
padding:110px 80px;
background:#f8fafc;
}

.about-hero-left{
flex:1;
max-width:620px;
}

.about-hero-left h1{
font-size:54px;
line-height:1.08;
color:#1f2937;
margin-bottom:22px;
letter-spacing:-1px;
}

.about-hero-text{
font-size:18px;
color:#64748b;
line-height:1.7;
margin-bottom:16px;
}

.about-hero-text.strong{
font-weight:600;
color:#111827;
}

/* right image shape */

.about-hero-right{
flex:1;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.about-hero-shape{
width:720px;
height:480px;
border-radius:90px 220px 90px 220px;
overflow:hidden;
box-shadow:0 40px 90px rgba(0,0,0,.15);
background:#e6f4ee;
padding:14px;
}

.about-hero-shape img{
width:100%;
height:100%;
object-fit:cover;
border-radius:70px 200px 70px 200px;
transition:.5s;
}

.about-hero-shape:hover img{
transform:scale(1.05);
}

/* mobile */

@media(max-width:900px){
.about-hero{
flex-direction:column;
padding:70px 20px;
}

.about-hero-left h1{
font-size:38px;
}

.about-hero-shape{
width:100%;
height:360px;
}
}












.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  background: #f5f7f9;
  gap: 60px;
}

.about-image-box {
  border-radius: 40px;
  overflow: hidden;
  width: 520px;
  height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  padding: 70px 8%;
  background: linear-gradient(135deg,#22c55e,#16a34a);
}

.value-card {
  background: rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 18px;
  color: white;
  backdrop-filter: blur(6px);
}








.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: #22c55e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #16a34a;
}


.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(34,197,94,0.35);
}







/* ===== SERVICE HERO ===== */

.service-hero{
  height: 380px;
  background: url('/images/mobile-app.jpg') center/cover no-repeat;
  position: relative;
}

.service-hero-overlay{
  height: 100%;
  background: rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  color:white;
}

.service-hero h1{
  font-size:42px;
  margin-bottom:12px;
}

.service-hero p{
  font-size:18px;
  max-width:700px;
}


/* ===== SERVICE CONTENT ===== */

.service-content{
  padding:80px 0;
}

.service-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:50px;
}

.service-img{
  width:100%;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}


/* ===== FEATURES ===== */

.service-features{
  background:#f7fafc;
  padding:70px 0;
}

.feature-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:25px;
}

.feature-card{
  background:white;
  padding:28px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.feature-card h4{
  margin-bottom:10px;
}


/* ===== BUTTON ===== */

.btn-primary{
  display:inline-block;
  margin-top:18px;
  padding:14px 26px;
  background:#22c55e;
  color:white;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
}

.btn-primary:hover{
  background:#16a34a;
}




/* ===== LOGO COLORS ===== */

.logo{
font-size:22px;
font-weight:800;
letter-spacing:1px;
}

.logo-blue{
color:#1e40af;   /* Blue */
}

.logo-green{
color:#22c55e;   /* Green */
}


/* ===== LOGO WITH TEXT ===== */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:22px;
font-weight:700;
}

.logo-img{
height:40px;
width:auto;
}

.green{
color:#22c55e;
}


/* ===== SIDE PANEL ===== */
/* ===== SIDE PANEL PROFESSIONAL STYLE ===== */

.side-panel,
.mobile-menu,
.drawer,
.offcanvas{
  font-family: 'Inter', sans-serif;
  color:#374151;
  line-height:1.7;
}

/* Company name */
.side-panel h3,
.side-panel .logo-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:-0.3px;
  color:#111827;
}

/* Description text */
.side-panel p{
  font-size:15px;
  font-weight:400;
  color:#6b7280;
}

/* Section title like "Contacts" */
.side-panel h4{
  font-size:16px;
  font-weight:600;
  margin-top:25px;
  color:#111827;
}

/* Contact text */
.side-panel .contact-item{
  font-size:14px;
  font-weight:400;
  color:#374151;
  margin:10px 0;
}

/* Input field */
.side-panel input{
  font-family:'Inter', sans-serif;
  font-size:14px;
  padding:12px 14px;
  border-radius:8px;
}

/* Button */
.side-panel button{
  font-size:14px;
  font-weight:500;
  letter-spacing:0.3px;
  border-radius:8px;
}





.side-panel{
position:fixed;
top:0;
right:-400px;
width:340px;
height:100%;
background:white;
padding:40px 30px;
box-shadow:-10px 0 40px rgba(0,0,0,.1);
transition:.4s;
z-index:9999;
}

.side-panel.active{
right:0;
}

.panel-logo{
width:180px;
margin-bottom:20px;
}

.panel-text{
color:#555;
margin-bottom:30px;
}

.close-btn{
position:absolute;
top:20px;
right:25px;
font-size:24px;
cursor:pointer;
}

.newsletter{
display:flex;
margin-top:20px;
}

.newsletter input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px 0 0 8px;
}

.newsletter button{
background:linear-gradient(90deg,#6366f1,#8b5cf6);
color:white;
border:none;
padding:12px 20px;
border-radius:0 8px 8px 0;
cursor:pointer;
}

/* OVERLAY */
.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.4);
display:none;
z-index:9998;
}

.overlay.active{
display:block;
}

/* HAMBURGER MENU */
.menu-btn{
display:flex;   /* change from none → flex */
flex-direction:column;
gap:5px;
cursor:pointer;
margin-left:20px;
}

.menu-btn span{
width:25px;
height:3px;
background:#1f2937;
display:block;
border-radius:5px;
}


/* MOBILE VIEW */
@media (max-width:768px){

.nav{
display:none;
position:absolute;
top:70px;
right:20px;
background:white;
width:220px;
flex-direction:column;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
border-radius:12px;
}

.nav.show{
display:flex;
}

.menu-btn{
display:block;
}

}



/* ===== CLEAN PROFESSIONAL HEADER ===== */

.header{
  height:55px;
  padding:0 60px;              /* more side control */
  background:#fff;
  display:flex;
  align-items:center;
  border-bottom:1px solid #eee;
}

/* push menu to right */
.nav{
  margin-left:auto;            /* IMPORTANT → moves menu right */
  display:flex;
  gap:8px;
  align-items:center;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:600;
}


/* NAV CONTAINER */


/* NAV LINKS — darker professional color */
.nav a{
  font-size:14px;
  font-weight:500;        /* slightly stronger */
  color:#374151;          /* dark gray professional */
  text-decoration:none;
  transition:0.25s;
}

/* HOVER */
.nav a:hover{
  color:#4f46e5; /* professional blue */
}


/* ACTIVE LINK */
.nav a.active{
  color:#16a34a;
  font-weight:500;
}

/* MENU ICON */
.menu-btn{
  font-size:20px;
}


.enterprise-hero{
  position:relative;
  color:white;
}

.enterprise-hero h1{
  color:#ffffff;
  font-size:42px;
}

.enterprise-hero p{
  color:#e5e7eb;
}


/* ===== DIGITAL MARKETING HERO ===== */
.dm-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading white */
.dm-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description light white */
.dm-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}



/* ===== RESOURCE AUGMENTATION HERO ===== */

.ra-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading white */
.ra-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description light white */
.ra-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}



/* ===== ERP HERO ===== */

.erp-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading white */
.erp-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description text */
.erp-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}



/* ===== HRMS HERO ===== */

.hr-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading white */
.hr-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description text */
.hr-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}



/* ===== LOGISTICS HERO ===== */

.log-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading white */
.log-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description text */
.log-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}


/* ===== CRM HERO ===== */

.crm-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading */
.crm-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.crm-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}


/* ===== RETAIL HERO ===== */

.retail-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
  color:white;
}

/* heading */
.retail-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.retail-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:680px;
}


/* ===== WHAT WE DO HERO ===== */

.work-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
}


/* keep text above overlay */
.work-hero .container{
  position:relative;
  z-index:2;
}

/* heading */
.work-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.work-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}


/* ===== HOW WE DO HERO ===== */

.how-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
}

/* heading */
.how-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.how-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:720px;
}


/* ===== PORTFOLIO HERO ===== */

.port-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
}

/* heading */
.port-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.port-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:720px;
}


/* ===== DESKTOP APP HERO ===== */

.desktop-hero{
  height:380px;
  position:relative;
  display:flex;
  align-items:center;
}

/* heading */
.desktop-hero h1{
  color:#ffffff;
  font-size:42px;
}

/* description */
.desktop-hero p{
  color:#e5e7eb;
  font-size:18px;
  max-width:700px;
}



/* remove bottom left mail icon */
.ri-mail-unread-line {
  display: none !important;
}


/* ================================
   MOBILE NAVBAR FIX
================================ */

@media (max-width:900px){

/* header fix */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
}

/* prevent content going under header */
body{
  padding-top:70px;
}

/* mobile menu full width */
.nav{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  background:white;
  flex-direction:column;
  align-items:center;
  padding:30px 0;
  gap:20px;
  border-radius:0;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/* hide by default */
.nav{
  display:none;
}

/* show when active */
.nav.active{
  display:flex;
}

/* center menu items */
.nav a{
  width:100%;
  text-align:center;
  padding:12px;
}

/* hamburger always visible */
.menu-btn{
  display:block;
  cursor:pointer;
}

}
/* prevent mobile right gap */
html, body{
  overflow-x:hidden;
}

/* container always responsive */
.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}
@media (max-width:900px){

.services-grid,
.projects-grid,
.grid-2{
  display:grid;
  grid-template-columns:1fr;
  gap:25px;
}

.hero,
.about2,
.contact{
  flex-direction:column;
  text-align:center;
}

}


/* ===============================
   MOBILE HEADER FIX
================================*/

@media (max-width:768px){

  /* header layout */
  .header{
    height:auto;
    padding:12px 16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* logo size control */
  .logo{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:14px;
  }

  .logo-img{
    height:32px;
  }

  .logo-blue,
  .logo-green{
    font-size:14px;
  }

  /* hide desktop nav */
  .nav{
    display:none;
  }

  /* show hamburger */
  .menu-btn{
    display:block;
    font-size:22px;
  }

}

/* prevent page overflow */
html,body{
  overflow-x:hidden;
}

/* container responsive */
.container{
  width:100%;
  padding:0 16px;
}

/* ===============================
   HERO MOBILE FIX
================================*/

@media (max-width:768px){

  .hero{
    flex-direction:column;
    padding:60px 20px;
    text-align:center;
  }

  .hero-left h1{
    font-size:28px;
    line-height:1.3;
  }

  .hero-right{
    width:100%;
  }

  .image-shape{
    width:100%;
    height:auto;
  }

}


