/* style.css */

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

body{
  font-family: 'Poppins', sans-serif;
  background: #f5f9ff;
  color: #222;
  line-height: 1.7;
  margin-top:70px;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section{
  padding: 100px 0;
}

.section-title{
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2{
  font-size: 2.5rem;
  color: #0056ff;
  font-weight: 700;
}

/* Header */

.header{
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(63, 49, 49, 0.08);
  top: 0;
}

.navbar{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo{
  width:120px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0056ff;
}
.logo img{
  width:100%;
  height:100%;
  object-fit: contain;
}

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

.nav-links a{
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover{
  color: #0056ff;
}
.menu{
  display: flex;
  width:10px;
  font-size: 22px;
  color: #0056ff;
}
 .menu i{
  display: none;
  width:100%;
  height:100%;
  }

.btn{
  background: #0056ff;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover{
  background: #003ecb;
}

/* FADE ANIMATION */
.fade-up{
    opacity: 0;
    transform: translateY(140px);
    animation: fadeUp 1s ease forwards;
}

.delay-1{
    animation-delay: 0.2s;
}

.delay-2{
    animation-delay: 0.6s;
}

.delay-3{
    animation-delay: 1s;
}

@keyframes fadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero */


.hero{
  min-height: 100vh;
  background:
  linear-gradient(rgba(0,86,255,0.8),
  rgba(0,86,255,0.8)),
  url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1400&auto=format&fit=crop')
  center/cover no-repeat;

  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 120px 20px;
}

.hero-content{
  max-width: 850px;
  margin: auto;
}

.hero h1{
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero p{
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn{
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn{
  background: #fff;
  color: #0056ff;
}

.secondary-btn{
  border: 2px solid #fff;
  color: #fff;
}

.primary-btn:hover{
  transform: translateY(-3px);
}

.secondary-btn:hover{
  background: #fff;
  color: #0056ff;
}

/* About */

.about p{
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.05rem;
}

/* Services */

.services{
  background: #fff;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-card{
  background: #f5f9ff;
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.3s;
  text-align: center;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card i{
  font-size: 2.5rem;
  color: #0056ff;
  margin-bottom: 20px;
}

.service-card h3{
  margin-bottom: 15px;
}

/* Projects */

.project-list{
  display: grid;
  gap: 20px;
}

.project-item{
  background: #fff;
  padding: 25px;
  border-left: 5px solid #0056ff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}


/* brands */
.brands-section{
    padding:80px 5%;
    background:#f5f5f5;
    overflow:hidden;
}

.brands-section p{
    text-align:center;
    margin-bottom:60px;
}
.brands-section h2{
    text-align:center;
    font-size:3rem;
    margin-bottom:60px;
}

.brands-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.brands-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;

    animation: scroll 25s linear infinite;
}

.brands-track img{
    width:140px;
    object-fit:contain;
    transition:0.3s;
    filter:grayscale(100%);
}

.brands-track img:hover{
    filter:grayscale(0%);
    transform:scale(1.05);
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* TABLET */

@media(max-width:768px){

    .brands-section h2{
        font-size:2rem;
    }

    .brands-track{
        gap:50px;
    }

    .brands-track img{
        width:100px;
    }
}

/* MOBILE */

@media(max-width:480px){

    .brands-track{
        gap:35px;
    }

    .brands-track img{
        width:80px;
    }
}

/* Contact */

.contact{
  background: #0056ff;
  color: #fff;
  text-align: center;
}

.contact .section-title h2{
  color: #fff;
}

.contact-text{
  max-width: 700px;
  margin: auto auto 30px;
  font-size: 1.1rem;
}

/* Footer */

.footer{
  background: #001845;
  color: #fff;
  padding-top: 70px;
}

.footer-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
}

.footer-box h3{
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.footer-box a{
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-box a:hover{
  color: #fff;
}

.footer-box p{
  color: #ccc;
  margin-bottom: 10px;
}

.social-icons{
  margin-top: 20px;
}

.social-icons a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #0056ff;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover{
  transform: translateY(-5px);
}

.footer-bottom{
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  margin-top: 50px;
  color: #ccc;
}

/* Responsive */

@media(max-width: 900px){
  .nav-links{
    position: absolute;
    top:-550px;
    left:0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    padding:20px;
    padding-left: 70px;
    transition: 0.5s;
  }

  .nav-links.active{
    top: 68px;
  }

  .navbar{
    gap: 10px;
  }
  .menu{
    width:120px; 
  }
  .menu i{
  display: block;
  margin-left: 50px
  }

  .logo{
  width:120px;
  height:50px;
 }


  .hero h1{
    font-size: 2.7rem;
  }
}

@media(max-width: 600px){

  .hero h1{
    font-size: 2.1rem;
  }

  .section-title h2{
    font-size: 2rem;
  }

  .nav-links{
    gap: 15px;
  }
}

/* Mobile Responsive */
@media(max-width: 768px){


}