html{
scroll-behavior:smooth;
}
/* NAVBAR */

.navbar{
position:fixed;
top:0;
width:100%;
z-index:1000;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(10px);
}

.nav-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LOGO */

.logo img{
height:60px;
}

/* NAV LINKS */

.nav-links{
display:flex;
gap:35px;
list-style:none;

}

.nav-links a{
text-decoration:none;
color:white;
font-size:18px;
position:relative;
transition:0.3s;
text-align: right;
}

/* HOVER EFFECT */

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#1275E1;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* ACTIVE LINK */

.nav-links a.active{
color:#1275E1;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:white;
margin:4px 0;
}

@media(max-width:768px){

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:black;
flex-direction:column;
align-items:center;
display:none;
padding:20px 0;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:flex;
}

}
/* CTA BUTTON */

.cta-btn{
padding:10px 22px;
background:linear-gradient(45deg,#1275E1,#214FD4);
color:white;
text-decoration:none;
border-radius:25px;
font-size:14px;
font-weight:500;
transition:0.3s;
margin-left:20px;
}

.cta-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px #214FD4;
}
@media(max-width:768px){

.cta-btn{
display:none;
}

}
/* HERO SECTION */
/* HERO SECTION */

.hero{
position:relative;
min-height:80vh;
display:flex;
align-items:center;
justify-content:center;
color:white;
overflow:hidden;
font-family:'Poppins',sans-serif;
padding:120px 20px 80px;
}

/* BACKGROUND VIDEO */

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* OVERLAY */

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:-1;
}

/* CONTAINER */

.hero-container{
max-width:1200px;
width:100%;
margin:auto;
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:center;
padding:0 20px;
}

/* TEXT */

.hero-text{
max-width:700px;
width:100%;
}

/* TITLE */

.hero h1{
font-size:56px;
font-weight:700;
margin-bottom:20px;
line-height:1.2;
animation:fadeUp 1s ease;
}

/* SUBTEXT */

.subtext{
font-size:20px;
line-height:1.7;
margin-bottom:35px;
opacity:0.9;
animation:fadeUp 1.3s ease;
}

/* BUTTONS */

.hero-buttons{
display:flex;
gap:16px;
margin-bottom:35px;
flex-wrap:wrap;
width:100%;
}

/* PRIMARY BUTTON */

.btn-primary{
background:#2563eb;
padding:14px 28px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:500;
font-size:15px;
transition:0.25s;
display:flex;
align-items:center;
justify-content:center;
}

/* HOVER */

.btn-primary:hover{
background:#1e4ed8;
}

/* SECONDARY */

.btn-secondary{
border:1px solid rgba(255,255,255,0.6);
padding:14px 28px;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:500;
font-size:15px;
transition:0.25s;
display:flex;
align-items:center;
justify-content:center;
}

.btn-secondary:hover{
background:rgba(255,255,255,0.1);
}

/* TECHNOLOGY SECTION */

.hero-tech{
width:100%;
margin-top:30px;
margin-bottom:35px;
}

.tech-title{
font-size:18px;
font-weight:500;
margin-bottom:15px;
opacity:0.9;
letter-spacing:1px;
}

/* KEYWORDS */
.hero-keywords{
width:170%;
overflow:hidden;
position:relative;
}

.keywords-track{
display:flex;
gap:40px;
width:max-content;   /* important */
animation:scrollKeywords 20s linear infinite;
}

.keywords-track span{
font-size:14px;
padding:8px 18px;
border-radius:20px;
background:rgba(255,255,255,0.1);
border:1px solid rgba(255,255,255,0.2);
white-space:nowrap;   /* important */
}

@keyframes scrollKeywords{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* TRUST BADGES */

.hero-trust{
display:flex;
gap:30px;
font-size:16px;
opacity:0.9;
flex-wrap:wrap;
}

/* ANIMATIONS */

@keyframes scrollKeywords{
0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(30px);
}

100%{
opacity:1;
transform:translateY(0);
}
}

/* TABLET */

@media (max-width:1024px){

.hero h1{
font-size:42px;
}

.subtext{
font-size:18px;
}

}

/* MOBILE */

@media (max-width:768px){

.hero{
padding:110px 20px 60px;
}

.hero h1{
font-size:30px;
line-height:1.3;
}

.subtext{
font-size:16px;
margin-bottom:25px;
}

/* FIXED BUTTONS */
@media (max-width:768px){

.hero-buttons{
flex-direction:column;
width:90%;
}

.btn-primary,
.btn-secondary{
width:90%;
display:block;
text-align:center;
}

}
/* TRUST */

.hero-trust{
flex-direction:column;
gap:10px;
font-size:14px;
}

/* KEYWORDS */

.keywords-track{
gap:20px;
}

.keywords-track span{
font-size:12px;
padding:6px 14px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.hero{
padding:100px 15px 50px;
}

.hero h1{
font-size:26px;
}

.subtext{
font-size:15px;
}

.keywords-track span{
font-size:11px;
}

}
.services{
padding:80px 10%;
background:#0b0b0b;
color:white;
text-align:center;
padding-top: 5px;
padding-bottom: 20px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}
.services-header{
margin-bottom:5px;
}

.services-header h2{
font-size:42px;
margin-bottom:1px;
}

.underline{
width:80px;
height:4px;
background:#1275E1;
margin:auto;
border-radius:3px;
}
.services-subtitle{
max-width:600px;
margin:auto;
margin-bottom:10px;
color:#bbb;
line-height:2.5;
padding-top: 5px;
font-size: 20px;
}

/* SERVICE CARD */

.service-card{
background:#121212;
padding:35px 30px;
border-radius:12px;
text-decoration:none;
color:white;
transition:0.4s;
position:relative;
display:flex;
flex-direction:column;
align-items:center;
}

.service-card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.5);
border:1px solid #1275E1;
}
.service-card:hover img{
transform:scale(1.1);
transition:0.3s;
}

/* ICON LEFT TOP */

.service-icon{
width:100%;
display:flex;
justify-content:flex-start;
margin-bottom:15px;

}

.service-icon img{
width:60px;
}

/* TITLE */

.service-card h3{
font-size:20px;
text-align:center;
margin-bottom:10px;
}

/* DESCRIPTION */

.service-card p{
font-size:14px;
text-align:center;
color:#ccc;
line-height:1.6;
margin-bottom:30px;
}

/* ARROW */

.arrow{
position:absolute;
bottom:20px;
right:20px;
font-size:22px;
transition:0.4s;
}

/* HOVER */

.service-card:hover .arrow{
transform:rotate(-45deg);
}

/* MOBILE */

@media(max-width:1000px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}
.service-card{
background:#121212;
padding:40px 30px;
border-radius:12px;
text-decoration:none;
color:white;
transition:0.4s;
position:relative;
display:flex;
flex-direction:column;
align-items:center;
}

/* LOGO TOP LEFT */

.service-icon{
width:100%;
display:flex;
justify-content:flex-start;
margin-bottom:10px;
}

.service-icon img{
width:45px;
}

/* ARROW TOP RIGHT */

.arrow{
position:absolute;
top:20px;
right:20px;
font-size:22px;
transition:0.4s;
}

/* TITLE */

.service-card h3{
text-align:center;
margin-top:10px;
margin-bottom:10px;
font-size:20px;
}

/* DESCRIPTION */

.service-card p{
text-align:center;
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* HOVER EFFECT */

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px #1275E1;
}

.service-card:hover .arrow{
transform:rotate(-18deg) translateX(5px);
color: #1275E1;
}
.service-card:hover,
.work-item:hover{

transform:translateY(-10px);

box-shadow:
0 0 20px rgba(58, 106, 217, 0.5),
0 0 40px rgba(72, 74, 222, 0.3);

transition:0.4s;

}
@media(max-width:768px){

.services{
padding:90px 20px;
}

.services-header h2{
font-size:32px;
}

}
/* MAIN SECTION */

.combined-section{
padding:80px 8%;
background:#0d0d0d;
color:white;
text-align:center;
padding-top: 15px;
padding-bottom: 15px;
}

/* BRAND INTRO */

.brand-intro{
max-width:700px;
margin:auto;
padding-bottom: 5px;
}

/* SECTION HEADING */

.section-title{
font-size:36px;
font-weight:600;
text-align:center;
color:white;
position:relative;
display:inline-block;
padding-bottom:20px;
}

/* underline */

.section-title::after{
content:"";
position:absolute;
left:50%;
bottom:-10px;
transform:translateX(-50%);
width:300px;
height:3px;
background:linear-gradient(90deg,#1275E1,#1275E1);
border-radius:3px;
}
.brand-subtitle{
font-size:18px;
color:#1275E1;
margin-bottom:15px;
}

.brand-intro p{
color:#bbb;
line-height:1.7;
}

/* PROCESS SECTION */
/* PROCESS CARD */
/* PROCESS CARD */
.process-card {
    position: relative;
    width: 80%;
    max-width: 250px;
    height: 180px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

/* CONTAINER */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 30px; /* spacing between steps */
    margin: 50px auto;
    width: 90%;
    max-width: 1200px;
    padding: 0; /* remove left padding for mobile */
}

/* HOVER FLIP */
.process-step:hover .process-card {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.process-front,
.process-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

/* FRONT */
.process-front {
    text-align: center;
}

/* BACK */
.process-back {
    transform: rotateY(180deg);
    text-align: left;
    padding: 10px;
}

/* ICON STYLE */
.process-icon {
    width: 90px;
    height: 90px;
    background: #151515;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid #1275E1;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* TEXT */
.process-back p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

/* HOVER ICON EFFECT */
.process-step:hover .process-icon {
    box-shadow: 0 0 25px #1275E1;
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .process-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .process-step {
        width: 100%;
        display: flex;
        justify-content: center; /* center each card */
    }

    .process-card {
        width: 90%;
        max-width: 300px;
    }
}
/* WHY CHOOSE US */

.why-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-card{
background:#141414;
padding:35px;
border-radius:10px;
transition:0.4s;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px #1275E1;
}

.why-icon{
font-size:40px;
margin-bottom:15px;
}

.why-card h3{
margin-bottom:10px;
}

.why-card p{
font-size:14px;
color:#bbb;
line-height:1.6;
}

/* MOBILE */

@media(max-width:900px){

.process-container{
flex-direction:column;
gap:60px;
}

.process-container::before{
display:none;
}

.process-step{
width:100%;
}

.why-container{
grid-template-columns:1fr;
}

}
/* OUR WORKS */

.works-section{
padding:80px 8%;
background:#0c0c0c;
color:white;
text-align:center;
padding-top: 5px;
}

.works-title{
font-size:36px;
font-weight:600;
text-align:center;
color:white;
position:relative;
display:inline-block;
margin-bottom:50px;
}
 
.works-title::after{
content:"";
position:absolute;
left:50%;
bottom:-10px;
transform:translateX(-50%);
width:80px;
height:3px;
background:linear-gradient(90deg,#1275E1,#1275E1);
border-radius:3px;
}


/* TYPE BUTTONS */
.type-btn{
padding:10px 22px;
margin:0 10px;
background:#1a1a1a;
border:none;
border-radius:20px;
color:white;
cursor:pointer;
transition:0.3s;
}

.type-btn.active{
background:#1275E1;
transform:scale(1.05);
}

.types{
margin-bottom:50px;
}


/* GRID */

.works-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.work-item{
display:none;
overflow:hidden;
border-radius:10px;
}

.work-item img,
.work-item video{
width:100%;
border-radius:10px;
display:block;
}

.work-item img:hover{
transform:scale(1.05);
transition:0.4s;
}
/* LIGHTBOX */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox-img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.works-grid{
grid-template-columns:1fr;
}

}
/* CTA SECTION */

.cta-section{
padding:80px 8%;
background:linear-gradient(135deg,#0c0c0c,#1a1a1a);
text-align:center;
color:white;
position:relative;
overflow:hidden;
padding-top: 5px;
padding-bottom: 10px;
}

/* GLOW EFFECT */

.cta-section::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,#1275E1,transparent 70%);
top:-150px;
left:-150px;
opacity:0.25;
filter:blur(120px);
}

.cta-container{
max-width:800px;
margin:auto;
position:relative;
z-index:2;
animation:fadeUp 1s ease;
}

.cta-title{
font-size:42px;
margin-bottom:25px;
}

.cta-text{
font-size:18px;
color:#bbb;
margin-bottom:40px;
line-height:1.6;
}

/* BUTTONS */

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.cta-btn{
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

/* PRIMARY */

.primary{
background:#1275E1;
color:white;
}

.primary:hover{
box-shadow:0 0 20px #1275E1;
transform:translateY(-3px);
}

/* SECONDARY */

.secondary{
border:2px solid #1275E1;
color:#1275E1;
}

.secondary:hover{
background:#1275E1;
color:white;
}

/* MOBILE */

@media(max-width:768px){

.cta-title{
font-size:32px;
}

.cta-buttons{
flex-direction:column;
}

}
/* CTA SECTION */

.cta-section{
  padding:80px 8%;
  background:linear-gradient(135deg,#0c0c0c,#1a1a1a);
  text-align:center;
  color:white;
  position:relative;
  overflow:hidden;
  padding-top: 5px;
}


.cta-container{
  max-width:800px;
  margin:auto;
  animation:fadeUp 1s ease;
}

.cta-title{
  font-size:42px;
  margin-bottom:20px;
}

.cta-text{
  color:#bdbdbd;
  margin-bottom:40px;
  line-height:1.6;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary{
  background:#1275E1;
  color:white;
}

.primary:hover{
  box-shadow:0 0 20px #000000;
  transform:translateY(-3px);
}

.secondary{
  border:2px solid #000000;
  color:white;
}

.secondary:hover{
  background:blue;
  color: white;
}

.cta-social{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
}

.cta-social a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:white;
color:#1275E1;
font-size:22px;
transition:0.3s;
}

.cta-social a:hover{
transform:scale(1.15);
box-shadow:0 0 15px #1275E1;
}
.footer{
background:#0a0a0a;
color:white;
padding:70px 10%;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3{
font-size:22px;
margin-bottom:15px;
color:#1275E1;
}

.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
color:#bbb;
line-height:1.6;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#bbb;
text-decoration:none;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#1275E1;
}

.footer-social{
display:flex;
gap:15px;
margin-top:15px;
}

.footer-social a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#1a1a1a;
color:white;
font-size:18px;
transition:0.3s;
}

.footer-social a:hover{
background:#1275E1;
transform:scale(1.1);
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #222;
padding-top:20px;
color:#888;
}
/* MOBILE RESPONSIVE */

@media(max-width:900px){
  .footer-container{
    flex-direction:column;
    gap:30px;
  }
}
