* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
    background:#111;
    overflow-x: hidden;

}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0px 60px;

background: #fff;

    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    
}

.logo img {
height: 200px;
width: 200px;

}





/* ===== MENU ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: black;
    padding: 5px 0;
    transition: 0.3s;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: black;
    transition: 0.3s;
}

.menu a:hover {
    color:  #ff6b00;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background:   #ff6b00;
    border-radius: 3px;
    transition: 0.3s;
}








.video-section{
position: relative;
width:100%;
height:500px;
overflow:hidden;
}

.bg-video{
width:100%;
height:100%;
object-fit:cover;
}

.video-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
animation:fadeIn 3s ease;
}

.video-text h1{
font-size:50px;
}


#typeText{
color:#ff7a00;

padding-right:5px;

}

@keyframes blink{
0%{border-color:transparent;}
50%{border-color:orange;}
100%{border-color:transparent;}
}

.video-text p{
font-size:20px;
margin-top:10px;
}

/* Animation */
@keyframes fadeIn{
0%{
opacity:0;
transform:translate(-50%,-20%);
}
100%{
opacity:1;
transform:translate(-50%,-50%);
}
}

.stats-container {
  width: 100%;
  overflow: hidden;       /* hide overflowing content */
  background: black;
  padding: 10px 0;
}

.stats-marquee {
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 20s linear infinite;
}

.stat {
  flex: 0 0 auto;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);       /* start from left 0 */
  }
  100% {
    transform: translateX(-50%);    /* scroll half width (first set) */
  }
}






.tech-section{
padding:100px 8%;
background:#111;
text-align:center;
}

.tech-title{
font-size:38px;
color:#fff;
margin-bottom:50px;
}

.slider{
overflow:hidden;
position:relative;
}

.slide-track{
display:flex;
width:calc(260px * 8);
animation:scroll 20s linear infinite;
}

.tech-card{
width:250px;
background:#1a1a1a;
border-radius:10px;
margin-right:20px;
padding:20px;
text-align:center;
color:white;
transition:0.4s;
}

.tech-card img{
width:100%;
height:150px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

.tech-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

/* animation */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}





.about-home{
padding:100px 8%;
background:#111;
color:white;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:10px;
transition:0.5s;
}

.about-image img:hover{
transform:scale(1.05);
}

.about-content h2{
font-size:36px;
margin-bottom:15px;
}

.about-content p{
color:#bbb;
margin-bottom:15px;
}

.about-list{
list-style:none;
padding:0;
margin-bottom:20px;
}

.about-list li{
margin-bottom:8px;
}

.about-btn{
display:inline-block;
padding:10px 25px;
background:#ff6b00;
color:white;
text-decoration:none;
border-radius:5px;
transition:0.3s;
}

.about-btn:hover{
background:#ff4500;
}

@media(max-width:768px){

.about-container{
grid-template-columns:1fr;
}

}



.why-choose{
padding:100px 8%;
background:#0b0b0b;
color:white;
}

.why-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.why-image img{
width:100%;
border-radius:10px;
}

.why-content h2{
font-size:38px;
margin-bottom:15px;
}

.why-content p{
color:#bbb;
margin-bottom:30px;
}

.why-box{
display:flex;
gap:15px;
margin-bottom:20px;
}

.why-box i{
font-size:22px;
color:#ff6b00;
margin-top:5px;
}

.why-box h3{
margin:0;
font-size:18px;
}

.why-box p{
margin:3px 0 0;
color:#aaa;
font-size:14px;
}

@media(max-width:768px){

.why-container{
grid-template-columns:1fr;
}

}











.footer {
    background: linear-gradient(135deg, #111111, #222222);
    color: #ffffff;
    padding: 80px 8% 20px;
    margin-top: 50px;
    
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: #EB7034;;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #EB7034;
}

.footer-col p,
.footer-col ul li a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #EB7034;;
    padding-left: 6px;
}
.last{
    border-top: 1px solid #e2dfdf;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}








@media (max-width:1024px){

.navbar{
padding:0 30px;
}

.menu{
gap:25px;
}

.video-text h1{
font-size:40px;
}

.video-text p{
font-size:18px;
}

.about-container{
gap:30px;
}

.why-container{
gap:30px;
}

.tech-card{
width:240px;
}

.slide-track{
width:calc(240px * 8);
}

}



@media (max-width:768px){

.navbar{
padding:0 20px;
}

/* mobile menu */

.menu{
position:absolute;
top:50px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
gap:25px;
padding:30px 0;
display:none;
}


.menu.active{
display:flex;
}

.hamburger{
display:flex;
}

/* hero */

.video-section{
height:420px;
}

.video-text h1{
font-size:32px;
}

.video-text p{
font-size:16px;
}

/* about */

.about-container{
grid-template-columns:1fr;
text-align:center;
overflow-x: hidden;
}

/* why choose */

.why-container{
grid-template-columns:1fr;
text-align:center;
overflow-x: hidden;
}

/* tech slider */

.tech-card{
width:250px;
}

.slide-track{
width:calc(250px * 8);
}
.footer{
padding:60px 6% 20px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}




}

@media (max-width:480px){

.navbar{
padding:0 15px;
}

.logo img{
height:170px;
width:180px;
}

/* hero */

.video-section{
height:350px;
}

.video-text h1{
font-size:26px;
}

.video-text p{
font-size:14px;
}

/* stats */

.stat{
font-size:16px;
padding:8px 15px;
}

/* sections */

.about-home{
padding:60px 20px;
}

.why-choose{
padding:60px 20px;
}

.tech-section{
padding:60px 20px;
}

.tech-title{
font-size:28px;
}

/* cards */

.tech-card{
width:220px;
}

.slide-track{
width:calc(220px * 8);
}

/* footer */
.footer{
padding:60px 6% 20px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}


}