*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  background:#050505;
  color:white;
  font-family:'Outfit',sans-serif;
  overflow-x:hidden;
}

.section{
  padding:120px 8%;
  border-top:1px solid #151515;
}

/* NAVBAR */

.navbar{
  width:100%;
  height:90px;
  padding:0 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  background:#050505;
  border-bottom:1px solid #151515;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:1px;
}

.logo span{
  width:10px;
  height:10px;
  background:#ff2d2d;
}

.nav-links{
  display:flex;
  gap:45px;
  list-style:none;
}

.nav-links a{
  color:#8f8f8f;
  text-decoration:none;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:3px;
  transition:0.3s;
}

.nav-links a:hover{
  color:white;
}

.hire-btn{
  padding:14px 30px;
  background:#ff2d2d;
  color:white;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.menu-btn{
  display:none;
  font-size:28px;
}

/* HERO */

.hero{
  min-height:100vh;
  padding:160px 8% 100px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.small-title{
  color:#ff2d2d;
  letter-spacing:3px;
  margin-bottom:25px;
  font-size:13px;
}

.hero h1{
  font-size:90px;
  line-height:1;
  margin-bottom:30px;
  font-weight:800;
}

.hero h1 span{
  color:#ff2d2d;
}

.hero-desc{
  max-width:550px;
  color:#9b9b9b;
  line-height:1.8;
  margin-bottom:40px;
  font-size:18px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.main-btn,
.outline-btn{
  padding:16px 35px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.main-btn{
  background:#ff2d2d;
  color:white;
}

.outline-btn{
  border:1px solid #333;
  color:white;
}

.hero-right img{
  width:100%;
  height:500px;
  object-fit:cover;
  border:1px solid #1b1b1b;
}

.hero-box{
  font-size:140px;
  color:#ff2d2d;
  font-weight:900;
  margin-bottom:20px;
}

/* SECTION TOP */

.section-top{
  display:flex;
  justify-content:space-between;
  gap:60px;
  margin-bottom:70px;
}

.section-mini{
  color:#ff2d2d;
  letter-spacing:3px;
  font-size:13px;
  margin-bottom:20px;
}

.section-top h2{
  font-size:70px;
  line-height:1;
  max-width:700px;
}

.section-text{
  max-width:400px;
  color:#9f9f9f;
  line-height:1.8;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.about-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  border:1px solid #1a1a1a;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.info-card{
  border:1px solid #1a1a1a;
  padding:35px;
}

.info-card span{
  color:#777;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.info-card h3{
  margin-top:18px;
  font-size:30px;
}

/* SERVICES */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border:1px solid #1a1a1a;
}

.service-card{
  border:1px solid #1a1a1a;
  padding:45px;
  min-height:260px;
  transition:0.4s;
}

.service-card:hover{
  background:#0e0e0e;
}

.service-card.large{
  grid-column:span 2;
  min-height:400px;
  display:flex;
  flex-direction:column;
  justify-content:end;
}

.service-card i{
  color:#ff2d2d;
  font-size:30px;
  margin-bottom:30px;
}

.service-card h3{
  font-size:42px;
  margin-bottom:20px;
}

.service-card p{
  color:#999;
  line-height:1.7;
}

/* SKILLS */

.marquee{
  width:100%;
  overflow:hidden;
  border-top:1px solid #1a1a1a;
  border-bottom:1px solid #1a1a1a;
  padding:30px 0;
  margin:70px 0;
}

.track{
  white-space:nowrap;
  font-size:110px;
  font-weight:800;
  color:white;
  animation:move 15s linear infinite;
}

.track span{
  color:#ff2d2d;
}

@keyframes move{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.skill-boxes{
  display:grid;
  grid-template-columns:repeat(6,1fr);
}

.skill-box{
  border:1px solid #1a1a1a;
  padding:40px;
  font-size:28px;
  font-weight:600;
}

/* PROJECTS */

.project-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}

.project-card{
  border:1px solid #1a1a1a;
  overflow:hidden;
}

.project-card img{
  width:100%;
  height:450px;
  object-fit:cover;
  transition:0.5s;
}

.project-card:hover img{
  transform:scale(1.05);
}

.project-content{
  padding:35px;
}

.project-content h3{
  font-size:42px;
  margin-bottom:20px;
}

.project-content p{
  color:#999;
  line-height:1.8;
}

/* CONTACT */

.contact-title{
  font-size:180px;
  line-height:0.9;
  margin:40px 0 70px;
}

.contact-title span{
  color:#ff2d2d;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:80px;
}

.contact-left p{
  color:#999;
  line-height:1.8;
  margin-bottom:50px;
  max-width:600px;
}

.contact-item{
  border-top:1px solid #1a1a1a;
  padding:30px 0;
}

.contact-item span,
.contact-info span{
  color:#777;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.contact-item h3,
.contact-info h3{
  margin-top:15px;
  font-size:32px;
}

.contact-info{
  margin-bottom:50px;
}

.socials{
  display:flex;
  gap:15px;
}

.socials a{
  width:55px;
  height:55px;
  border:1px solid #1a1a1a;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  text-decoration:none;
}

/* FOOTER */

footer{
  border-top:1px solid #151515;
  padding:35px 8%;
  display:flex;
  justify-content:space-between;
  color:#666;
  font-size:12px;
  letter-spacing:2px;
}

/* MOBILE */

@media(max-width:991px){

  .menu-btn{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:90px;
    left:-100%;
    width:100%;
    background:#050505;
    flex-direction:column;
    padding:40px;
    transition:0.4s;
    border-top:1px solid #1a1a1a;
  }

  .nav-links.active{
    left:0;
  }

  .hire-btn{
    display:none;
  }

  .hero,
  .about-grid,
  .contact-grid,
  .project-grid{
    grid-template-columns:1fr;
  }

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

  .service-card.large{
    grid-column:span 1;
  }

  .skill-boxes{
    grid-template-columns:1fr 1fr;
  }

  .about-cards{
    grid-template-columns:1fr 1fr;
  }

  .section-top{
    flex-direction:column;
  }

  .hero h1{
    font-size:55px;
  }

  .section-top h2{
    font-size:45px;
  }

  .contact-title{
    font-size:90px;
  }

  .track{
    font-size:60px;
  }

}

/* FLOATING BUTTONS */

.floating-call,
.floating-whatsapp{
  position:fixed;
  right:25px;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:24px;
  text-decoration:none;
  z-index:9999;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.floating-call{
  bottom:100px;
  background:#ff2d2d;
}

.floating-whatsapp{
  bottom:25px;
  background:#25D366;
}

.floating-call:hover,
.floating-whatsapp:hover{
  transform:scale(1.12);
}

/* MOBILE */

@media(max-width:768px){

  .floating-call,
  .floating-whatsapp{
    width:55px;
    height:55px;
    font-size:22px;
    right:15px;
  }

  .floating-call{
    bottom:85px;
  }

  .floating-whatsapp{
    bottom:15px;
  }

}




/* =========================================
   FINAL MOBILE RESPONSIVE FIX
========================================= */

@media screen and (max-width: 991px){

  body{
    overflow-x:hidden;
  }

  .section{
    padding:70px 20px;
  }

  /* NAVBAR */

  .navbar{
    height:80px;
    padding:0 20px;
  }

  .logo{
    font-size:14px;
  }

  .logo span{
    width:8px;
    height:8px;
  }

  .menu-btn{
    display:block;
    font-size:24px;
    cursor:pointer;
  }

  .hire-btn{
    display:none;
  }

  .nav-links{
    position:absolute;
    top:80px;
    left:-100%;
    width:100%;
    background:#050505;
    flex-direction:column;
    gap:25px;
    padding:35px 25px;
    transition:0.4s;
    border-top:1px solid #1b1b1b;
    z-index:999;
  }

  .nav-links.active{
    left:0;
  }

  .nav-links a{
    font-size:13px;
    letter-spacing:2px;
  }

  /* HERO */

  .hero{
    min-height:auto;
    padding:130px 20px 70px;
    grid-template-columns:1fr;
    gap:50px;
  }

  .hero-left{
    order:2;
  }

  .hero-right{
    order:1;
  }

  .small-title{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:18px;
  }

  .hero h1{
    font-size:42px;
    line-height:1.1;
    margin-bottom:20px;
  }

  .hero-desc{
    font-size:15px;
    line-height:1.7;
    margin-bottom:30px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:15px;
  }

  .main-btn,
  .outline-btn{
    width:100%;
    text-align:center;
    padding:15px;
    font-size:11px;
  }

  .hero-box{
    font-size:80px;
    text-align:center;
    margin-bottom:15px;
  }

  .hero-right img{
    height:300px;
    width:100%;
  }

  /* SECTION TOP */

  .section-top{
    flex-direction:column;
    gap:25px;
    margin-bottom:45px;
  }

  .section-top h2{
    font-size:34px;
    line-height:1.15;
  }

  .section-text{
    max-width:100%;
    font-size:15px;
    line-height:1.9;
  }

  .section-mini{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:15px;
  }

  /* ABOUT */

  .about-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .about-image img{
    height:300px;
  }

  .about-cards{
    grid-template-columns:1fr 1fr;
    gap:0;
  }

  .info-card{
    padding:22px 18px;
  }

  .info-card h3{
    font-size:18px;
    margin-top:10px;
    line-height:1.3;
  }

  .info-card span{
    font-size:10px;
  }

  /* SERVICES */

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

  .service-card{
    min-height:auto;
    padding:35px 25px;
  }

  .service-card.large{
    grid-column:span 1;
    min-height:auto;
  }

  .service-card i{
    font-size:26px;
    margin-bottom:20px;
  }

  .service-card h3{
    font-size:28px;
    line-height:1.2;
    margin-bottom:15px;
  }

  .service-card p{
    font-size:14px;
    line-height:1.8;
  }

  /* SKILLS */

  .marquee{
    padding:18px 0;
    margin:40px 0;
  }

  .track{
    font-size:42px;
    line-height:1.2;
  }

  .skill-boxes{
    grid-template-columns:1fr 1fr;
  }

  .skill-box{
    padding:25px 15px;
    font-size:18px;
    text-align:center;
  }

  /* PROJECTS */

  .project-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .project-card{
    border:1px solid #1a1a1a;
  }

  .project-card img{
    height:240px;
  }

  .project-content{
    padding:25px 20px;
  }

  .project-content h3{
    font-size:26px;
    margin-bottom:12px;
    line-height:1.2;
  }

  .project-content p{
    font-size:14px;
    line-height:1.7;
  }

  /* CONTACT */

  .contact-title{
    font-size:58px;
    line-height:1;
    margin:25px 0 40px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-left p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:35px;
  }

  .contact-item{
    padding:20px 0;
  }

  .contact-item h3,
  .contact-info h3{
    font-size:20px;
    line-height:1.4;
    word-break:break-word;
  }

  .contact-item span,
  .contact-info span{
    font-size:10px;
  }

  .socials{
    margin-top:20px;
  }

  .socials a{
    width:48px;
    height:48px;
    font-size:18px;
  }

  /* FOOTER */

  footer{
    flex-direction:column;
    gap:12px;
    text-align:center;
    padding:25px 20px;
    font-size:10px;
    line-height:1.7;
  }

  /* FLOATING BUTTONS */

  .floating-call,
  .floating-whatsapp{
    width:52px;
    height:52px;
    right:15px;
    font-size:20px;
  }

  .floating-call{
    bottom:80px;
  }

  .floating-whatsapp{
    bottom:15px;
  }

}



/* EXTRA SMALL DEVICES */

@media screen and (max-width:480px){

  .hero h1{
    font-size:36px;
  }

  .section-top h2{
    font-size:30px;
  }

  .contact-title{
    font-size:48px;
  }

  .track{
    font-size:34px;
  }

  .skill-box{
    font-size:16px;
    padding:22px 10px;
  }

  .info-card h3{
    font-size:16px;
  }

}






/* =========================================
   FINAL PERFECT MOBILE FIX
   PASTE THIS AT VERY BOTTOM OF CSS
========================================= */

@media screen and (max-width:768px){

  html,
  body{
    overflow-x:hidden;
    width:100%;
  }

  *{
    max-width:100%;
  }

  .section{
    padding:70px 18px;
  }

  /* NAVBAR */

  .navbar{
    height:75px;
    padding:0 18px;
  }

  .logo{
    font-size:13px;
    letter-spacing:1px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:220px;
  }

  .menu-btn{
    display:block;
    font-size:30px;
    color:white;
    z-index:1001;
  }

  .hire-btn{
    display:none;
  }

  .nav-links{
    position:fixed;
    top:75px;
    left:-100%;
    width:100%;
    height:auto;
    background:#050505;
    flex-direction:column;
    gap:25px;
    padding:35px 25px;
    transition:0.4s;
    border-top:1px solid #1a1a1a;
    z-index:1000;
  }

  .nav-links.active{
    left:0;
  }

  /* HERO */

  .hero{
    display:flex;
    flex-direction:column;
    gap:40px;
    padding:110px 18px 60px;
  }

  .hero-left{
    order:2;
    width:100%;
  }

  .hero-right{
    order:1;
    width:100%;
  }

  .hero-box{
    font-size:95px;
    line-height:1;
    text-align:center;
    margin-bottom:20px;
    word-break:break-word;
  }

  .hero-right img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
  }

  .small-title{
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:15px;
  }

  .hero h1{
    font-size:34px;
    line-height:1.2;
    margin-bottom:18px;
    word-break:break-word;
  }

  .hero-desc{
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
  }

  .main-btn,
  .outline-btn{
    width:100%;
    text-align:center;
    padding:15px;
    font-size:11px;
  }

  /* SECTION TOP */

  .section-top{
    flex-direction:column;
    gap:20px;
    margin-bottom:40px;
  }

  .section-top h2{
    font-size:30px;
    line-height:1.2;
  }

  .section-text{
    font-size:14px;
    line-height:1.9;
  }

  /* ABOUT */

  .about-grid{
    display:flex;
    flex-direction:column;
    gap:25px;
  }

  .about-image img{
    width:100%;
    height:240px;
    object-fit:cover;
  }

  .about-cards{
    grid-template-columns:1fr 1fr;
  }

  .info-card{
    padding:20px 15px;
  }

  .info-card h3{
    font-size:17px;
    margin-top:10px;
  }

  /* SERVICES */

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

  .service-card{
    padding:30px 22px;
    min-height:auto;
  }

  .service-card.large{
    min-height:auto;
  }

  .service-card h3{
    font-size:24px;
    line-height:1.3;
  }

  .service-card p{
    font-size:14px;
  }

  /* SKILLS */

  .marquee{
    margin:35px 0;
    padding:16px 0;
  }

  .track{
    font-size:34px;
  }

  .skill-boxes{
    grid-template-columns:1fr 1fr;
  }

  .skill-box{
    padding:22px 10px;
    font-size:16px;
    text-align:center;
  }

  /* PROJECTS */

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

  .project-card{
    width:100%;
    overflow:hidden;
  }

  .project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
  }

  .project-content{
    padding:22px 18px;
  }

  .project-content h3{
    font-size:22px;
    line-height:1.3;
    margin-bottom:10px;
  }

  .project-content p{
    font-size:14px;
    line-height:1.7;
  }

  /* CONTACT */

  .contact-title{
    font-size:48px;
    line-height:1;
    margin:20px 0 35px;
  }

  .contact-grid{
    display:flex;
    flex-direction:column;
    gap:35px;
  }

  .contact-left p{
    font-size:14px;
    margin-bottom:30px;
  }

  .contact-item{
    padding:18px 0;
  }

  .contact-item h3,
  .contact-info h3{
    font-size:18px;
    line-height:1.5;
    word-break:break-word;
  }

  .socials{
    gap:12px;
  }

  .socials a{
    width:46px;
    height:46px;
  }

  /* FOOTER */

  footer{
    flex-direction:column;
    gap:10px;
    text-align:center;
    padding:25px 18px;
    font-size:10px;
    line-height:1.7;
  }

  /* FLOATING BUTTONS */

  .floating-call,
  .floating-whatsapp{
    width:50px;
    height:50px;
    font-size:18px;
    right:14px;
  }

  .floating-call{
    bottom:75px;
  }

  .floating-whatsapp{
    bottom:14px;
  }

}

