/* ===================================================
   MATRIIX IT MASTER STYLESHEET V3.0
   PART 1 / 5
   ROOT • RESET • TYPOGRAPHY • HEADER
=================================================== */

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ROOT VARIABLES */
:root{

--primary:#0F172A;
--secondary:#1E293B;
--accent:#F97316;

--dark:#0F172A;
--dark-light:#334155;

--light:#F8FAFC;
--white:#FFFFFF;

--border:#E2E8F0;
--text:#64748B;

--shadow:
0 10px 30px rgba(15,23,42,.08);

--shadow-hover:
0 20px 50px rgba(15,23,42,.15);

--radius:20px;
--transition:.35s ease;

}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
font-size:16px;
line-height:1.7;
color:var(--dark);
background:#fff;
overflow-x:hidden;
opacity:0;
transition:.5s ease;
}

body.loaded{
opacity:1;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
transition:var(--transition);
}

ul{
list-style:none;
}

section{
position:relative;
}

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* TYPOGRAPHY */

h1,h2,h3,h4,h5,h6{
font-weight:700;
color:var(--dark);
line-height:1.2;
}

h1{
font-size:64px;
}

h2{
font-size:42px;
}

h3{
font-size:24px;
}

p{
color:var(--text);
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
margin-bottom:15px;
}

.section-title p{
max-width:700px;
margin:auto;
}

/* BUTTONS */

.btn-primary{
display:inline-block;
padding:15px 32px;
background:var(--accent);
color:white;
border-radius:50px;
font-weight:600;
transition:var(--transition);
box-shadow:
0 10px 25px rgba(249,115,22,.25);
}

.btn-primary:hover{
transform:translateY(-4px);
box-shadow:var(--shadow-hover);
}

.btn-outline{
display:inline-block;
padding:15px 32px;
border:2px solid var(--accent);
color:var(--accent);
border-radius:50px;
font-weight:600;
transition:var(--transition);
}

.btn-outline:hover{
background:var(--accent);
color:white;
}

.btn-secondary{
display:inline-block;
padding:15px 32px;
border:2px solid white;
color:white;
border-radius:50px;
font-weight:600;
transition:var(--transition);
}

.btn-secondary:hover{
background:white;
color:var(--primary);
}

.center-btn{
text-align:center;
margin-top:40px;
}

/* HEADER */

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(255,255,255,.90);
backdrop-filter:blur(15px);
box-shadow:
0 5px 25px rgba(0,0,0,.05);
}

.main-header.scrolled{
background:rgba(255,255,255,.98);
backdrop-filter:blur(20px);
box-shadow:
0 15px 35px rgba(15,23,42,.08);
}

.navbar{
height:85px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:34px;
font-weight:800;
}

.logo-blue{
color:#0F172A;
}

.logo-yellow{
color:#F97316;
}

.nav-links{
display:flex;
gap:35px;
align-items:center;
}

.nav-links a{
font-weight:600;
color:var(--dark);
position:relative;
}

.nav-links a:hover{
color:var(--accent);
}

.active-link{
color:var(--accent)!important;
}

.active-link::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:100%;
height:3px;
background:var(--accent);
border-radius:20px;
}

.call-btn{
background:var(--accent);
color:white;
padding:12px 25px;
border-radius:50px;
font-weight:600;
}

.call-btn:hover{
transform:translateY(-3px);
}

/* MOBILE NAV */

.mobile-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* UTILITIES */

.text-center{
text-align:center;
}

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
/* ===================================================
   PART 2 / 5
   HERO • HOMEPAGE SECTIONS
=================================================== */

/* HERO VIDEO */

.hero-video{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
}

.hero-video-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
linear-gradient(
to bottom,
rgba(0,0,0,.15),
rgba(0,0,0,.35)
);
z-index:2;
}

.hero-content-wrapper{
position:relative;
z-index:3;
width:100%;
}

.hero-content{
max-width:700px;
color:white;
}

.hero-content h5{
color:#CBD5E1;
font-size:16px;
letter-spacing:2px;
margin-bottom:20px;
}

.hero-content h1{
color:white;
margin-bottom:25px;
}

.hero-content p{
color:rgba(255,255,255,.9);
font-size:20px;
margin-bottom:35px;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

/* PAGE HERO */

.page-hero{
padding:180px 0 120px;
background:#0F172A;
text-align:center;
color:white;
overflow:hidden;
isolation:isolate;
}

.page-hero::before{
content:"";
position:absolute;
inset:0;
z-index:-2;
background:
linear-gradient(135deg,rgba(15,23,42,.92),rgba(15,23,42,.72)),
var(--page-hero-image,none) center/cover no-repeat;
transform:scale(1.02);
}

.page-hero::after{
content:"";
position:absolute;
inset:auto 0 0;
height:42%;
z-index:-1;
background:linear-gradient(0deg,rgba(15,23,42,.42),transparent);
}

.services-hero{
--page-hero-image:url("../images/infourge.jpg");
}

.about-hero,
.contact-hero{
--page-hero-image:url("../images/about-company.jpg");
}

.portfolio-hero{
--page-hero-image:url("../images/curveandedges.jpg");
}

.page-hero h1{
color:white;
margin-bottom:15px;
}

.page-hero p{
color:rgba(255,255,255,.9);
font-size:20px;
}

/* CORPORATE INTRO */

.corporate-intro{
padding:100px 0;
background:#ffffff;
}

.intro-content{
max-width:950px;
margin:auto;
text-align:center;
}

.intro-content h1{
font-size:64px;
font-weight:800;
color:#111827;
margin-bottom:25px;
}

.intro-content p{
font-size:22px;
line-height:1.8;
max-width:850px;
margin:0 auto 40px;
}

.intro-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* SERVICES */

.services-home{
padding:100px 0;
background:#fff;
}

.home-service-feature{
display:grid;
grid-template-columns:1.25fr .75fr;
gap:28px;
align-items:stretch;
margin-bottom:38px;
}

.home-service-photo{
min-height:280px;
border-radius:20px;
background:
linear-gradient(135deg,rgba(15,23,42,.25),rgba(15,23,42,.05)),
url("../images/infourge.jpg") center/cover no-repeat;
box-shadow:var(--shadow);
}

.home-service-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
}

.home-service-points div{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
min-height:130px;
padding:22px;
border-radius:18px;
background:#FFF7ED;
border:1px solid rgba(249,115,22,.14);
box-shadow:var(--shadow);
font-weight:700;
color:var(--dark);
}

.home-service-points i{
font-size:32px;
color:var(--accent);
}

.services-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:40px 30px;
border-radius:20px;
box-shadow:var(--shadow);
border:1px solid var(--border);
transition:.35s;
text-align:center;
}

.service-card:hover{
transform:translateY(-10px);
border-color:#F97316;
box-shadow:
0 20px 50px rgba(15,23,42,.12);
}

.service-card i{
font-size:55px;
color:#F97316;
margin-bottom:25px;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
font-size:15px;
}

.service-section{
padding:96px 0;
background:#fff;
}

.gray-section{
background:var(--light);
}

.service-section + .service-section,
.service-section + .process-premium{
margin-top:0;
}

.service-showcase{
display:grid;
grid-template-columns:1.15fr .85fr;
gap:30px;
align-items:center;
min-height:230px;
margin:0 0 42px;
padding:38px;
border-radius:20px;
overflow:hidden;
background:
linear-gradient(135deg,rgba(15,23,42,.94),rgba(30,41,59,.88)),
radial-gradient(circle at 82% 20%,rgba(249,115,22,.35),transparent 34%);
box-shadow:var(--shadow);
}

.gray-section .service-showcase{
background:
linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,247,237,.92)),
radial-gradient(circle at 82% 20%,rgba(249,115,22,.22),transparent 36%);
border:1px solid rgba(249,115,22,.14);
}

.showcase-copy span{
display:inline-flex;
align-items:center;
padding:8px 14px;
margin-bottom:18px;
border-radius:999px;
background:rgba(249,115,22,.16);
color:#FDBA74;
font-weight:700;
font-size:13px;
text-transform:uppercase;
letter-spacing:1px;
}

.gray-section .showcase-copy span{
background:#FFF7ED;
color:var(--accent);
}

.showcase-copy h3{
max-width:620px;
color:white;
font-size:30px;
line-height:1.35;
}

.gray-section .showcase-copy h3{
color:var(--dark);
}

.showcase-visual{
position:relative;
display:grid;
grid-template-columns:repeat(3,86px);
gap:16px;
justify-content:end;
align-items:center;
}

.showcase-visual::before{
content:"";
position:absolute;
inset:-28px -30px -28px auto;
width:74%;
border-radius:28px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
}

.gray-section .showcase-visual::before{
background:rgba(255,255,255,.7);
border-color:rgba(249,115,22,.12);
}

.showcase-visual i{
position:relative;
z-index:1;
width:86px;
height:86px;
display:flex;
align-items:center;
justify-content:center;
border-radius:18px;
background:rgba(255,255,255,.13);
color:white;
font-size:35px;
box-shadow:0 18px 38px rgba(15,23,42,.18);
}

.gray-section .showcase-visual i{
background:white;
color:var(--accent);
}

.showcase-visual i:nth-child(2){
transform:translateY(-18px);
background:var(--accent);
color:white;
}

.web-showcase{
background:
linear-gradient(135deg,rgba(15,23,42,.92),rgba(30,64,175,.72)),
radial-gradient(circle at 82% 20%,rgba(56,189,248,.26),transparent 35%);
}

.marketing-showcase .showcase-visual i:nth-child(2){
background:#22C55E;
}

/* PROCESS */

.process-premium{
padding:100px 0;
background:
linear-gradient(180deg,#fff 0%,#F8FAFC 100%);
overflow:hidden;
}

.timeline-process{
position:relative;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:26px;
}

.timeline-process::before{
content:"";
position:absolute;
top:42px;
left:12%;
right:12%;
height:2px;
background:linear-gradient(90deg,rgba(249,115,22,.12),rgba(249,115,22,.75),rgba(249,115,22,.12));
}

.timeline-step{
position:relative;
z-index:1;
background:white;
border:1px solid var(--border);
border-radius:16px;
padding:32px 26px 30px;
box-shadow:var(--shadow);
transition:var(--transition);
}

.timeline-step:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-hover);
border-color:rgba(249,115,22,.35);
}

.step-circle{
width:64px;
height:64px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 0 26px;
background:#fff;
border:2px solid rgba(249,115,22,.35);
color:var(--accent);
font-weight:800;
font-size:18px;
box-shadow:0 12px 28px rgba(249,115,22,.16);
}

.timeline-step h3{
margin-bottom:12px;
font-size:22px;
}

.timeline-step p{
font-size:15px;
line-height:1.75;
}

/* STATS SECTION */

.stats-section{
padding:100px 0;
background:#0F172A;
}

.stats-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.stat-box{
text-align:center;
padding:30px;
}

.stat-box h2{
font-size:58px;
color:white;
margin-bottom:10px;
}

.stat-box p{
color:rgba(255,255,255,.9);
font-size:18px;
}

/* WHY CHOOSE US */

.why-us{
padding:100px 0;
background:var(--light);
}

.why-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.why-card{
background:white;
padding:35px;
border-radius:var(--radius);
box-shadow:var(--shadow);
transition:var(--transition);
text-align:center;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card i{
font-size:50px;
color:#F97316;
margin-bottom:20px;
}

.why-card h3{
margin-bottom:15px;
}

/* INDUSTRIES */

.industries-section{
padding:100px 0;
background:#f8fafc;
}

.industries-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.industry-card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:var(--shadow);
transition:.3s;
}

.industry-card:hover{
transform:translateY(-8px);
border-bottom:4px solid #F97316;
}

.industry-card i{
font-size:50px;
color:#F97316;
margin-bottom:20px;
}

/* FEATURED PROJECTS */

.featured-projects{
padding:100px 0;
background:#fff;
}

.project-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.project-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:var(--shadow);
transition:var(--transition);
}

.project-card:hover{
transform:translateY(-10px);
box-shadow:var(--shadow-hover);
}

.project-card img{
width:100%;
height:260px;
object-fit:cover;
}

.project-card h3{
padding:25px;
text-align:center;
}

/* HOME CTA */

.home-cta{
padding:100px 0;
text-align:center;
background:#0F172A;
}

.home-cta h2{
color:white;
margin-bottom:20px;
}

.home-cta p{
color:rgba(255,255,255,.9);
font-size:18px;
max-width:700px;
margin:0 auto 35px;
}
/* ===================================================
   PART 3 / 5
   ABOUT PAGE
=================================================== */

/* ABOUT SECTION */

.about-section{
padding:100px 0;
background:#fff;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image{
width:100%;
border-radius:25px;
box-shadow:var(--shadow);
}

.section-tag{
display:inline-block;
padding:10px 18px;
background:#FFF7ED;
color:#F97316;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.about-grid h2{
margin-bottom:25px;
}

.about-grid p{
margin-bottom:20px;
line-height:1.9;
}

/* FOUNDER SECTION */

.founder-section{
padding:100px 0;
background:var(--light);
}

.founder-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.founder-image{
width:100%;
border-radius:25px;
box-shadow:var(--shadow);
}

.founder-grid h2{
margin:20px 0;
}

/* ACHIEVEMENTS */

.achievement-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:35px;
}

.achievement-box{
background:white;
padding:18px;
border-radius:15px;
box-shadow:var(--shadow);
font-weight:600;
display:flex;
align-items:center;
gap:12px;
}

.achievement-box i{
color:#F97316;
font-size:22px;
}

/* QUALIFICATIONS */

.qualification-section{
padding:100px 0;
background:white;
}

.qualification-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.qualification-card{
background:white;
padding:25px;
border-radius:18px;
text-align:center;
font-weight:600;
box-shadow:var(--shadow);
transition:var(--transition);
}

.qualification-card:hover{
transform:translateY(-6px);
box-shadow:var(--shadow-hover);
}

/* MISSION & VISION */

.mission-section{
padding:100px 0;
background:var(--light);
}

.mission-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));
gap:30px;
}

.mission-card{
background:white;
padding:45px;
text-align:center;
border-radius:25px;
box-shadow:var(--shadow);
transition:var(--transition);
}

.mission-card:hover{
transform:translateY(-8px);
}

.mission-card i{
font-size:60px;
color:#F97316;
margin-bottom:25px;
}

.mission-card h3{
margin-bottom:20px;
}

/* TIMELINE */

.timeline-section{
padding:100px 0;
background:white;
}

.timeline-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.timeline-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);
text-align:center;
transition:var(--transition);
}

.timeline-card:hover{
transform:translateY(-8px);
}

.timeline-card h3{
font-size:36px;
color:#F97316;
margin-bottom:15px;
}

/* ABOUT CTA */

.about-cta{
padding:100px 0;
text-align:center;
background:var(--light);
}

.about-cta h2{
margin-bottom:20px;
}

.about-cta p{
max-width:700px;
margin:auto auto 30px;
}
/* ===================================================
   PART 4 / 5
   PORTFOLIO + EXPERTISE
=================================================== */

/* PORTFOLIO INTRO */

.portfolio-intro{
padding:80px 0 20px;
background:#fff;
}

/* PORTFOLIO SECTION */

.portfolio-section{
padding:40px 0 100px;
background:#fff;
}

.portfolio-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));
gap:35px;
}

.portfolio-card{
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:var(--shadow);
transition:var(--transition);
}

.portfolio-card:hover{
transform:translateY(-12px);
box-shadow:
0 25px 60px rgba(0,0,0,.16);
}

.portfolio-card img{
width:100%;
height:260px;
object-fit:cover;
}

.portfolio-content{
padding:30px;
}

.portfolio-content h3{
margin-bottom:15px;
}

.portfolio-content p{
margin-bottom:20px;
line-height:1.8;
}

.project-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
}

.project-tags span{
padding:8px 15px;
border-radius:30px;
background:#FFF7ED;
color:#F97316;
font-size:14px;
font-weight:600;
}

/* =====================================
   PREMIUM EXPERTISE SECTION
===================================== */

.expertise-section{
padding:120px 0;
background:
linear-gradient(
135deg,
#0F172A 0%,
#1E293B 100%
);
position:relative;
overflow:hidden;
}

.expertise-section::before{
content:"";
position:absolute;
top:-150px;
right:-150px;
width:400px;
height:400px;
background:
rgba(249,115,22,.08);
border-radius:50%;
filter:blur(80px);
}

.light-title h2{
color:#ffffff;
}

.light-title p{
color:#CBD5E1;
}

.expertise-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:60px;
}

.expertise-card{
background:
rgba(255,255,255,.05);
border:
1px solid rgba(255,255,255,.08);
backdrop-filter:blur(15px);
padding:40px;
border-radius:24px;
transition:.4s ease;
position:relative;
overflow:hidden;
}

.expertise-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#F97316;
transform:scaleX(0);
transform-origin:left;
transition:.4s ease;
}

.expertise-card:hover::before{
transform:scaleX(1);
}

.expertise-card:hover{
transform:translateY(-12px);
background:
rgba(255,255,255,.08);
box-shadow:
0 20px 60px rgba(0,0,0,.35);
}

.expertise-icon{
width:80px;
height:80px;
display:flex;
align-items:center;
justify-content:center;
border-radius:20px;
margin-bottom:25px;
background:
linear-gradient(
135deg,
#F97316,
#fb923c
);
}

.expertise-icon i{
font-size:34px;
color:#ffffff;
}

.expertise-card h3{
color:#ffffff;
font-size:24px;
margin-bottom:18px;
font-weight:700;
}

.expertise-card p{
color:#CBD5E1;
line-height:1.8;
font-size:15px;
}

/* CLIENT SECTION */

.client-section{
padding:100px 0;
background:#fff;
}

.client-logos{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(180px,1fr));
gap:25px;
}

.client-logos div{
padding:30px;
text-align:center;
font-weight:700;
background:#f8fafc;
border-radius:15px;
box-shadow:var(--shadow);
transition:var(--transition);
}

.client-logos div:hover{
transform:translateY(-6px);
}

/* TESTIMONIALS */

.testimonial-section{
padding:100px 0;
background:#f8fafc;
}

.testimonial-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:var(--shadow);
transition:var(--transition);
}

.testimonial-card:hover{
transform:translateY(-8px);
}

.testimonial-card p{
font-style:italic;
margin-bottom:20px;
}

.testimonial-card h4{
color:#F97316;
}
/* ===================================================
   PART 5 / 5
   CONTACT • FOOTER • RESPONSIVE
=================================================== */

/* CONTACT SECTION */

.contact-section{
padding:100px 0;
background:#fff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-card{
display:flex;
align-items:center;
gap:20px;
margin-top:25px;
}

.contact-card i{
width:45px;
font-size:28px;
color:#F97316;
}

.contact-card h4{
margin-bottom:5px;
}

.business-hours{
margin-top:40px;
padding:25px;
background:var(--light);
border-radius:20px;
}

.business-hours h3{
margin-bottom:15px;
}

/* CONTACT FORM */

.contact-form-box{
background:white;
padding:40px;
border-radius:25px;
box-shadow:var(--shadow);
}

.contact-form-box h2{
margin-bottom:25px;
}

.form-group{
margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:16px;
border:1px solid var(--border);
border-radius:12px;
font-family:'Poppins',sans-serif;
font-size:15px;
transition:var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
outline:none;
border-color:var(--accent);
}

.submit-btn{
width:100%;
border:none;
cursor:pointer;
}

.map-section iframe{
width:100%;
height:500px;
border:none;
display:block;
}

/* FOOTER */

footer{
background:#0F172A;
padding-top:70px;
}

.footer-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:40px;
padding-bottom:50px;
}

.footer-grid h3{
color:white;
margin-bottom:20px;
}

.footer-grid p{
color:#CBD5E1;
margin-bottom:10px;
}

.footer-grid a{
color:#CBD5E1;
}

.footer-grid a:hover{
color:white;
}

.copyright{
padding:25px 0;
border-top:
1px solid rgba(255,255,255,.08);
text-align:center;
color:#CBD5E1;
}

/* WHATSAPP FLOAT */

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:32px;
z-index:999;
box-shadow:
0 10px 30px rgba(0,0,0,.2);
transition:var(--transition);
}

.whatsapp:hover{
transform:translateY(-5px);
}

/* BACK TO TOP */

.back-to-top{
position:fixed;
left:25px;
bottom:25px;
width:55px;
height:55px;
background:var(--accent);
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
cursor:pointer;
opacity:0;
visibility:hidden;
transition:.3s;
z-index:999;
}

.back-to-top.show{
opacity:1;
visibility:visible;
}

/* REVEAL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:.8s ease;
}

.reveal.visible{
opacity:1;
transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:992px){

.mobile-toggle{
display:block;
}

.nav-links{
position:fixed;
top:85px;
right:-100%;
width:300px;
height:100vh;
background:white;
flex-direction:column;
align-items:flex-start;
padding:40px;
gap:25px;
transition:.4s;
box-shadow:
0 10px 40px rgba(0,0,0,.15);
}

.nav-links.show{
right:0;
}

.call-btn{
display:none;
}

.contact-grid,
.about-grid,
.founder-grid{
grid-template-columns:1fr;
}

.portfolio-grid{
grid-template-columns:1fr;
}

.home-service-feature{
grid-template-columns:1fr;
}

.service-showcase{
grid-template-columns:1fr;
}

.showcase-visual{
justify-content:start;
}

.timeline-process{
grid-template-columns:repeat(2,1fr);
}

.timeline-process::before{
display:none;
}

}

@media(max-width:768px){

h1{
font-size:42px;
}

h2{
font-size:32px;
}

.hero-video{
height:65vh;
}

.hero-content{
text-align:center;
margin:auto;
}

.hero-content p{
font-size:17px;
}

.hero-buttons,
.intro-buttons{
justify-content:center;
}

.page-hero{
padding:150px 0 90px;
}

.page-hero h1{
font-size:42px;
}

.section-title{
margin-bottom:42px;
}

.services-home,
.service-section,
.process-premium,
.featured-projects,
.why-us,
.industries-section,
.about-section,
.founder-section,
.qualification-section,
.mission-section,
.timeline-section,
.portfolio-section,
.contact-section,
.client-section,
.testimonial-section,
.expertise-section{
padding:70px 0;
}

.stat-box h2{
font-size:42px;
}

.project-card img,
.portfolio-card img{
height:220px;
}

.contact-form-box{
padding:30px;
}

.home-service-photo{
min-height:220px;
}

.service-showcase{
padding:30px;
margin-bottom:32px;
}

.showcase-copy h3{
font-size:24px;
}

.showcase-visual{
grid-template-columns:repeat(3,72px);
gap:12px;
}

.showcase-visual i{
width:72px;
height:72px;
font-size:28px;
border-radius:15px;
}

.achievement-grid{
grid-template-columns:1fr;
}

.mission-grid{
grid-template-columns:1fr;
}

.expertise-grid{
grid-template-columns:1fr;
gap:20px;
}

.timeline-process{
grid-template-columns:1fr;
gap:20px;
}

.timeline-step{
padding:28px 24px;
}

.step-circle{
margin-bottom:20px;
}

.whatsapp{
width:58px;
height:58px;
font-size:28px;
right:15px;
bottom:15px;
}

.back-to-top{
left:15px;
bottom:15px;
width:50px;
height:50px;
}

}

@media(max-width:576px){

.footer-grid{
text-align:center;
}

.service-showcase{
padding:26px;
}

.home-service-points{
grid-template-columns:1fr;
}

.home-service-points div{
min-height:96px;
}

.showcase-copy h3{
font-size:21px;
}

.showcase-visual{
grid-template-columns:repeat(3,1fr);
width:100%;
}

.showcase-visual i{
width:100%;
height:64px;
}

.contact-card{
align-items:flex-start;
}

.page-hero p{
font-size:16px;
}

}
