/* =========================
   ORBITMARKETINGS 2026
   MODERN STARTUP THEME
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#1e293b;
overflow-x:hidden;
line-height:1.7;
}

/* =========================
   CONTAINER
========================= */

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* =========================
   NAVBAR
========================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
height:85px;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 6%;
z-index:9999;
box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.logo{
text-decoration:none;
font-size:32px;
font-weight:800;
display:flex;
align-items:center;
}

.logo span:first-child{
color:#0f172a;
}

.logo span:last-child{
color:#6366f1;
}

nav{
display:flex;
align-items:center;
gap:30px;
}

nav a{
text-decoration:none;
color:#334155;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#6366f1;
}

.nav-btn{
background:#6366f1;
color:white;
padding:12px 24px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.nav-btn:hover{
transform:translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:150px 8% 80px;
background:
linear-gradient(
135deg,
#eef2ff,
#ffffff,
#f8fafc
);
text-align:center;
}

.hero-content{
max-width:900px;
}

.tag{
display:inline-block;
padding:10px 20px;
background:#e0e7ff;
color:#4338ca;
border-radius:50px;
font-weight:600;
margin-bottom:25px;
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:1.1;
margin-bottom:25px;
color:#0f172a;
}

.hero p{
font-size:20px;
color:#475569;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.primary-btn{
display:inline-block;
background:#6366f1;
color:white;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
border:none;
cursor:pointer;
transition:.3s;
}

.primary-btn:hover{
transform:translateY(-3px);
}

.secondary-btn{
display:inline-block;
background:white;
border:2px solid #6366f1;
color:#6366f1;
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.secondary-btn:hover{
background:#6366f1;
color:white;
}

/* =========================
   COMMON SECTION
========================= */

section{
padding:100px 8%;
}

section h2{
font-size:48px;
text-align:center;
margin-bottom:50px;
color:#0f172a;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

.navbar{
padding:0 20px;
}

nav{
display:none;
}

.logo{
font-size:24px;
}

.hero{
padding-top:130px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

section{
padding:70px 20px;
}

section h2{
font-size:32px;
}

}
/* =========================
   STATS SECTION
========================= */

.stats-section{
background:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.stat-card{
background:white;
padding:40px 30px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.3s;
border:1px solid #e2e8f0;
}

.stat-card:hover{
transform:translateY(-10px);
}

.stat-card h3{
font-size:48px;
color:#6366f1;
margin-bottom:10px;
}

.stat-card p{
color:#64748b;
font-size:17px;
}

/* =========================
   SERVICES PAGE
========================= */

.services{
background:#f8fafc;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:35px;
border-radius:25px;
text-decoration:none;
color:#1e293b;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.35s;
position:relative;
overflow:hidden;
border:1px solid #e2e8f0;
}

.service-card:hover{
transform:translateY(-12px);
}

.service-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(
90deg,
#6366f1,
#8b5cf6
);
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
color:#0f172a;
}

.service-card p{
color:#64748b;
}

/* =========================
   ABOUT PAGE
========================= */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about p{
font-size:18px;
color:#475569;
margin-bottom:20px;
}

.why-box{
background:white;
padding:40px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.why-box h3{
font-size:28px;
margin-bottom:25px;
color:#0f172a;
}

.why-box ul{
list-style:none;
}

.why-box li{
padding:12px 0;
border-bottom:1px solid #e2e8f0;
color:#475569;
}

/* =========================
   BRANCHES
========================= */

.branch-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.branch-card{
background:white;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.06);
transition:.3s;
}

.branch-card:hover{
transform:translateY(-10px);
}

.branch-card h3{
font-size:28px;
margin-bottom:15px;
color:#6366f1;
}

.branch-card p{
color:#64748b;
}

/* =========================
   CONTACT SECTION
========================= */

.contact{
background:white;
}

.contact-sub{
text-align:center;
max-width:700px;
margin:0 auto 40px;
color:#64748b;
font-size:18px;
}

.contact form{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact input,
.contact textarea{
padding:18px 22px;
border:1px solid #e2e8f0;
border-radius:18px;
font-size:16px;
outline:none;
transition:.3s;
background:#f8fafc;
}

.contact input:focus,
.contact textarea:focus{
border-color:#6366f1;
background:white;
}

.contact textarea{
height:180px;
resize:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

.about{
grid-template-columns:1fr;
}

.service-grid{
grid-template-columns:1fr;
}

.branch-grid{
grid-template-columns:1fr;
}

.stat-card h3{
font-size:36px;
}

.service-card h3{
font-size:20px;
}

}
/* ===================================

=================================== */

/* =====================================
SERVICE PAGE FINAL FIX
===================================== */

.service-hero{
min-height:100vh;
padding:140px 8% 80px;
display:flex;
align-items:center;
justify-content:center;
}

.hero-overlay{
width:100%;
background:rgba(255,255,255,.92);
padding:50px;
border-radius:30px;
backdrop-filter:blur(8px);
}

.service-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
max-width:1300px;
margin:auto;
}

.service-left h1{
font-size:60px;
line-height:1.1;
margin-bottom:25px;
font-weight:800;
color:#0f172a;
}

.service-left p{
font-size:18px;
line-height:1.8;
margin-bottom:20px;
color:#475569;
}

.service-right{
display:flex;
justify-content:center;
align-items:center;
}

.service-right img{
width:100%;
max-width:550px;
height:auto;
display:block;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* FEATURES */

.features-section{
padding:100px 8%;
background:white;
}

.features-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.feature-card{
background:#f8fafc;
padding:35px;
border-radius:20px;
transition:.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

/* BENEFITS */

.benefits{
padding:100px 8%;
background:#f8fafc;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.benefit-box{
background:white;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* CTA */

.service-cta{
padding:100px 8%;
text-align:center;
background:#0f172a;
color:white;
}

.service-cta h2{
color:white;
font-size:48px;
margin-bottom:20px;
}

/* PAGE BACKGROUNDS */

.website-bg{
background:linear-gradient(135deg,#eef2ff,#ffffff);
}

.software-bg{
background:linear-gradient(135deg,#f1f5f9,#e2e8f0);
}

.app-bg{
background:linear-gradient(135deg,#ecfeff,#cffafe);
}

.google-bg{
background:linear-gradient(135deg,#fff7ed,#fed7aa);
}

.meta-bg{
background:linear-gradient(135deg,#f5f3ff,#ddd6fe);
}

.social-bg{
background:linear-gradient(135deg,#fdf2f8,#fbcfe8);
}

.seo-bg{
background:linear-gradient(135deg,#ecfccb,#d9f99d);
}

/* MOBILE */

@media(max-width:1000px){

.service-container{
grid-template-columns:1fr;
text-align:center;
}

.service-left h1{
font-size:42px;
}

.hero-overlay{
padding:30px;
}

.service-right img{
max-width:100%;
}

}

@media(max-width:768px){

.service-left h1{
font-size:34px;
}

.service-left p{
font-size:16px;
}

}
===================================== */

.service-container{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:60px !important;
align-items:center !important;
width:100% !important;
}

.service-right{
display:flex !important;
justify-content:center !important;
align-items:center !important;
width:100% !important;
}

.service-right img{
width:100% !important;
max-width:550px !important;
height:450px !important;
object-fit:cover !important;
display:block !important;
border-radius:25px !important;
box-shadow:0 20px 50px rgba(0,0,0,.15) !important;
}

@media(max-width:1000px){

.service-container{
grid-template-columns:1fr !important;
}

.service-right img{
max-width:100% !important;
height:auto !important;
}

}
/* HOMEPAGE IMAGE FIX */

.hero-right img{
max-width:600px !important;
height:auto !important;
}
/* =====================================
MOVING GOOGLE STYLE REVIEWS
===================================== */

.review-slider{
overflow:hidden;
position:relative;
width:100%;
margin-top:40px;
}

.review-track{
display:flex;
gap:25px;
width:max-content;
animation:scrollReviews 25s linear infinite;
}

.review-box{
min-width:350px;
max-width:350px;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-box h3{
margin:15px 0;
color:#0f172a;
}

@keyframes scrollReviews{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.review-track:hover{
animation-play-state:paused;
}
/* ===== PREMIUM UPGRADE PACK ===== */

.feature-grid,
.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.feature-box,
.process-box{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
border:1px solid #eef2f7;
transition:.35s;
}

.feature-box:hover,
.process-box:hover{
transform:translateY(-10px);
}

.feature-box h3,
.process-box h3{
font-size:24px;
margin-bottom:15px;
}

.process-box span{
display:inline-flex;
width:70px;
height:70px;
align-items:center;
justify-content:center;
border-radius:50%;
background:linear-gradient(135deg,#6366f1,#8b5cf6);
color:white;
font-size:24px;
font-weight:700;
margin-bottom:20px;
}

footer{
background:#0f172a;
padding:90px 8%;
text-align:center;
color:white;
}

.footer-content{
max-width:700px;
margin:auto;
}

.footer-content h3{
font-size:38px;
margin-bottom:20px;
}

.footer-content p{
margin:12px 0;
font-size:17px;
opacity:.9;
}

footer p{
opacity:.9;
margin:10px 0;
}

.contact-form{
max-width:850px;
margin:auto;
background:white;
padding:50px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
width:100%;
margin-bottom:18px;
}

.review-box{
background:white;
border:1px solid #eef2f7;
}

.hero-right img{
max-width:700px !important;
height:500px !important;
object-fit:cover !important;
border-radius:30px !important;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

@media(max-width:900px){

.hero-right img{
height:auto !important;
}

.contact-form{
padding:25px;
}

}
#hero-slider{
transition:opacity .5s ease;
}
/* SHOWCASE IMAGES */

.showcase-section{
background:white;
text-align:center;
}

.showcase-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.showcase-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:25px;
box-shadow:0 20px 40px rgba(0,0,0,.12);
transition:.4s;
}

.showcase-grid img:hover{
transform:translateY(-10px);
}

@media(max-width:900px){

.showcase-grid{
grid-template-columns:1fr;
}

.showcase-grid img{
height:250px;
}

}
.contact-form{
background:white;
padding:60px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
padding:18px;
border-radius:15px;
border:1px solid #e2e8f0;
font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#6366f1;
outline:none;
}
.team-section{
background:white;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:40px;
}

.team-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.team-icon{
font-size:70px;
margin-bottom:15px;
}
.locations{
padding:80px 20px;
background:#f8fafc;
text-align:center;
}

.location-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.location-card{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.location-card:hover{
transform:translateY(-5px);
}

.location-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:15px;
}

.location-card h3{
margin-bottom:10px;
font-size:22px;
}

.location-card p{
line-height:1.6;
color:#666;
}
.google-stars{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:8px;
}

.google-stars img{
width:16px;
height:16px;
object-fit:contain;
}

.review-box{
padding:20px;
}
/* TEAM SECTION */

.team-section{
padding:80px 20px;
background:#f8fafc;
text-align:center;
}

.team-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.team-card{
position:relative;
overflow:hidden;
background:#fff;
padding:40px 20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gender-bg{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:80px;
opacity:.08;
pointer-events:none;
z-index:1;
}

.team-card h3,
.team-card p{
position:relative;
z-index:2;
}

.male .gender-bg{
color:#2563eb;
}

.female .gender-bg{
color:#ec4899;
}