/* =========================
FILE: style.css
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#07111f;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  z-index:999;
  background:rgba(0,0,0,0.3);
  backdrop-filter:blur(10px);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:60px;
  height:60px;
  border-radius:50%;
}

.logo h2{
  font-size:22px;
  color:#49d6ff;
}

.logo span{
  font-size:12px;
  color:#8dc9ff;
  letter-spacing:3px;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  transition:0.3s;
  font-weight:500;
}

nav a:hover{
  color:#49d6ff;
}

.whatsapp-btn{
  background:linear-gradient(45deg,#00ffa3,#00c3ff);
  color:black;
  padding:12px 20px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
}

/* HERO */

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1974&auto=format&fit=crop') center/cover;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
}

.hero-content{
  max-width:900px;
  z-index:2;
}

.tag{
  color:#49d6ff;
  letter-spacing:4px;
  margin-bottom:20px;
}

.hero h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#49d6ff;
}

.hero-text{
  font-size:18px;
  line-height:1.8;
  color:#d2d2d2;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:0.4s;
}

.primary-btn{
  background:linear-gradient(45deg,#00ffa3,#00c3ff);
  color:black;
}

.secondary-btn{
  border:2px solid #49d6ff;
  color:white;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-5px);
}

/* SECTION */

.section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title p{
  color:#49d6ff;
  letter-spacing:3px;
  margin-bottom:10px;
}

.section-title h2{
  font-size:45px;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.about-card{
  background:#0e1c2d;
  padding:40px 30px;
  border-radius:25px;
  text-align:center;
  transition:0.4s;
}

.about-card:hover{
  transform:translateY(-10px);
  border:1px solid #49d6ff;
}

.about-card i{
  font-size:45px;
  color:#49d6ff;
  margin-bottom:20px;
}

.about-card h3{
  margin-bottom:15px;
}

/* BRANDS */

.brand-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.brand-card{
  background:#101f32;
  padding:40px 30px;
  border-radius:25px;
  position:relative;
  overflow:hidden;
  transition:0.4s;
}

.brand-card:hover{
  transform:translateY(-10px);
}

.icon-circle{
  width:80px;
  height:80px;
  border-radius:50%;
  background:linear-gradient(45deg,#00ffa3,#00c3ff);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.icon-circle i{
  color:black;
  font-size:30px;
}

.brand-card h3{
  margin-bottom:15px;
  color:#49d6ff;
}

.brand-card p{
  color:#c8c8c8;
  line-height:1.8;
  margin-bottom:25px;
}

.brand-card a{
  color:white;
  text-decoration:none;
  font-weight:700;
}

/* FUTURE */

.future{
  background:#08121f;
}

.future-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:50px;
  align-items:center;
}

.mini-title{
  color:#49d6ff;
  margin-bottom:15px;
}

.future-text h2{
  font-size:50px;
  margin-bottom:25px;
}

.future-text span{
  color:#49d6ff;
}

.future-text p{
  line-height:1.9;
  color:#d1d1d1;
}

.future-text ul{
  margin-top:25px;
}

.future-text ul li{
  list-style:none;
  margin-bottom:15px;
}

.future-text ul li i{
  color:#49d6ff;
  margin-right:10px;
}

.future-box{
  background:linear-gradient(145deg,#0e1c2d,#102944);
  padding:50px;
  border-radius:30px;
}

.future-box h3{
  font-size:35px;
  margin-bottom:20px;
}

.future-box p{
  line-height:1.8;
  margin-bottom:25px;
}

.future-box a{
  display:inline-block;
  background:linear-gradient(45deg,#00ffa3,#00c3ff);
  color:black;
  padding:15px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
}

/* CONTACT */

.contact-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.contact-card{
  background:#0f1d2f;
  padding:35px;
  border-radius:25px;
  text-align:center;
  transition:0.4s;
}

.contact-card:hover{
  transform:translateY(-8px);
}

.contact-card i{
  font-size:30px;
  margin-bottom:15px;
  color:#49d6ff;
}

.social-links{
  margin-top:50px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.social-links a{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#11253b;
  color:white;
  font-size:20px;
  transition:0.4s;
}

.social-links a:hover{
  background:#49d6ff;
  color:black;
}

/* FOOTER */

footer{
  text-align:center;
  padding:30px;
  background:#050b14;
  color:#aaa;
}

/* FLOAT WHATSAPP */

.floating-whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  color:white;
  font-size:32px;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* MOBILE */

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:50px;
  }

  .section-title h2{
    font-size:35px;
  }

  .future-text h2{
    font-size:38px;
  }
}