/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        min-height: 100vh;
        background: #061224;
        overflow-x: hidden;
      }

      /* ================= NAVBAR ================= */

      .navbar {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 18px 7%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(5, 14, 28, 0.75);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: 0.4s;
      }

      .navbar::before {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        background: #0b5cff;
        filter: blur(120px);
        top: -180px;
        left: -100px;
        opacity: 0.5;
        z-index: -1;
        animation: moveGlow 5s infinite alternate;
      }

      @keyframes moveGlow {
        0% {
          transform: translateX(0px);
        }
        100% {
          transform: translateX(80px);
        }
      }

      /* LOGO */

      .logo {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 2px;
        position: relative;
        font-family: "Cinzel", serif;
      }

      .logo span {
        color: #0b5cff;
      }

      .logo::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background: #0b5cff;
        left: 0;
        bottom: -6px;
        transform: scaleX(0);
        transition: 0.4s;
        transform-origin: left;
      }

      .logo:hover::after {
        transform: scaleX(1);
      }

      /* NAV LINKS */

      .nav-links {
        display: flex;
        align-items: center;
        gap: 10px;
        list-style: none;
      }

      .nav-links li {
        position: relative;
      }

      .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 12px 10px;
        border-radius: 30px;
        transition: 0.4s;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .nav-links a::before {
        transition: 0.5s;
      }

      .nav-links a:hover::before {
        width: 100%;
      }

      .nav-links a:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(11, 92, 255, 0.35);
      }

      .nav-links a:hover i {
        transform: rotate(360deg);
      }

      /* BUTTON */

      .nav-btn {
        padding: 12px 24px;
        background: linear-gradient(135deg, #0b5cff, #1d8fff);
        color: #fff;
        border: none;
        border-radius: 40px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.4s;
        box-shadow: 0 10px 25px rgba(11, 92, 255, 0.35);
      }

      .nav-btn:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 15px 35px rgba(11, 92, 255, 0.5);
      }

      /* HAMBURGER */

      .menu-btn {
        display: none;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
      }

      /* MOBILE */

      @media (max-width: 950px) {
        .menu-btn {
          display: block;
        }

        .nav-links {
          position: absolute;
          top: 100%;
          right: -100%;
          width: 300px;
          height: 100vh;
          background: #08192f;
          flex-direction: column;
          align-items: flex-start;
          padding: 40px 25px;
          transition: 0.5s ease;
          border-left: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-links.active {
          right: 0;
        }

        .nav-links a {
          width: 100%;
        }

        .nav-btn {
          margin-top: 20px;
          width: 100%;
        }

        .hero h1 {
          font-size: 45px;
        }
      }/* ================= HERO SECTION ONLY ================= */
/* THIS CSS WILL NOT AFFECT YOUR NAVBAR */

.hero-section{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;

  /* IMPORTANT */
  margin-top:90px; /* navbar height */
}

/* VIDEO */

.hero-section video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
}

/* OVERLAY */

.hero-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    rgba(2,6,18,0.78),
    rgba(2,6,18,0.84)
  );
  z-index:-2;
}

/* GOLD BLUR */

.hero-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:#d4a44d;
  border-radius:50%;
  filter:blur(180px);
  opacity:0.18;
  top:-150px;
  right:-100px;
  animation:heroGlow 6s infinite alternate;
}

/* CONTAINER */

.hero-container{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 8%;
  position:relative;
  z-index:2;
}

/* CONTENT */

.hero-content{
  max-width:850px;
  animation:heroFadeUp 1.3s ease;
}

/* TAG */

.hero-tag{
  display:inline-block;
  padding:12px 26px;
  border-radius:50px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color: #0b5cff;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:28px;
  backdrop-filter:blur(10px);
}

/* HEADING */

.hero-content h1{
  font-family:'Cinzel',serif;
  font-size:82px;
  line-height:1.1;
  color:#fff;
  margin-bottom:24px;
  text-transform:uppercase;
  font-weight:700;
}

.hero-content h1 span{
  color:#d4a44d;
  font-size: 50px;
}

/* PARAGRAPH */

.hero-content p{
  color:#d8dce6;
  font-size:18px;
  line-height:1.9;
  margin-bottom:45px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.hero-buttons a{
  padding:16px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s ease;
}

/* PRIMARY BUTTON */

.hero-btn1{
  background:linear-gradient(135deg, #0b5cff,#5da4e7);
  color:#08111f;
  box-shadow:0 15px 35px rgba(212,164,77,0.35);
}

.hero-btn1:hover{
  transform:translateY(-6px);
}

/* SECONDARY BUTTON */

.hero-btn2{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
  color:#fff;
  backdrop-filter:blur(10px);
}

.hero-btn2:hover{
  background:#0b5cff;
  border-color:#0b5cff;
  transform:translateY(-6px);
}

/* ================= ANIMATIONS ================= */

@keyframes heroFadeUp{

  from{
    opacity:0;
    transform:translateY(70px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes heroGlow{

  0%{
    transform:translateY(0px);
  }

  100%{
    transform:translateY(40px);
  }

}


/* ================= LAPTOP ================= */

@media(max-width:1200px){

  .hero-content h1{
    font-size:68px;
  }

}

/* ================= TABLET ================= */

@media(max-width:992px){

  .hero-section{
    min-height:70vh;
  }

  .hero-content h1{
    font-size:56px;
  }

  .hero-content h1 span{
    font-size:24px;
  }

  .hero-content p{
    font-size:15px;
  }

}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .hero-section{
    margin-top:75px;
    height:50vh;
  }

  .hero-container{
    padding:20px 5%;
  }

  .hero-tag{
    font-size:11px;
    padding:9px 18px;
    letter-spacing:1px;
  }

  .hero-content h1{
    font-size:40px;
    line-height:1.3;
  }

  .hero-content h1 span{
    font-size:18px;
    margin-top:8px;
  }

  .hero-content p{
    font-size:14px;
    line-height:1.8;
    margin-bottom:30px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items: center;
    width:100%;
  }

  .hero-buttons a{
    width:100%;
    max-width:280px;

    text-align:center;
    padding:15px 20px;
    font-size:14px;
  }

}

/* ================= SMALL MOBILE ================= */

@media(max-width:480px){

  .hero-content h1{
    font-size:32px;
  }

  .hero-content h1 span{
    font-size:15px;
  }

  .hero-content p{
    font-size:13px;
  }

}
/* ================= WELCOME SECTION ================= */

.welcome-section{
  width:100%;
  padding:80px 7%;
  background:#07111f;
  position:relative;
  overflow:hidden;
}

/* BLUR */

.welcome-blur{
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:#0b5cff;
  filter:blur(160px);
  opacity:0.10;
  bottom:-180px;
  right:-120px;
}

/* CONTAINER */

.welcome-container{
  width:100%;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:55px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* ================= IMAGE ================= */

.welcome-image{
  position:relative;
}

.welcome-img-box{
  position:relative;
}

.welcome-img-box::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border:2px solid rgba(77,163,255,0.25);
  border-radius:24px;
  top:14px;
  left:14px;
  z-index:-1;
}

.welcome-img-box img{
  width:100%;
  border-radius:24px;
  object-fit:cover;
  box-shadow:0 20px 45px rgba(0,0,0,0.28);
  transition:0.5s ease;
}

.welcome-img-box:hover img{
  transform:scale(1.02);
}

/* ================= CONTENT ================= */

.welcome-tag{
  display:inline-block;
  padding:10px 20px;
  border-radius:50px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:#d4a44d;
  font-size:35px;
  letter-spacing:2px;
  margin-bottom:20px;
  font-family:'Cinzel',serif;
}

.welcome-content h2{
  font-family:'Cinzel',serif;
  font-size:44px;
  line-height:1.2;
  color:#fff;
  margin-bottom:18px;
  text-transform:uppercase;
}


.welcome-content p{
  color:#bfc8d8;
  font-size:14px;
  line-height:1.8;
  margin-bottom:16px;
  max-width:600px;
}

/* ================= FEATURES ================= */

.welcome-features{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.welcome-feature{
  display:flex;
  align-items:center;
  gap:15px;
  padding:16px 20px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.4s ease;
  backdrop-filter:blur(10px);
}

.welcome-feature:hover{
  transform:translateX(8px);
  background:rgba(11,92,255,0.10);
}

.welcome-feature i{
  min-width:50px;
  height:50px;
  border-radius:50%;
  background:linear-gradient(135deg,#0b5cff,#4da3ff);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.welcome-feature h4{
  color:#fff;
  font-size:16px;
  margin-bottom:4px;
}

.welcome-feature span{
  color:#bfc8d8;
  font-size:12px;
}

/* BUTTON */

.welcome-btn{
  display:inline-block;
  margin-top:28px;
  padding:14px 32px;
  border-radius:50px;
  background:linear-gradient(135deg,#0b5cff,#4da3ff);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:0.4s ease;
  box-shadow:0 12px 28px rgba(11,92,255,0.22);
}

.welcome-btn:hover{
  transform:translateY(-5px);
}

/* ================= MOBILE ================= */

@media(max-width:1100px){

  .welcome-container{
    grid-template-columns:1fr;
  }

  .welcome-content{
    text-align:center;
  }

}

@media(max-width:768px){

  .welcome-section{
    padding:70px 6%;
  }

  .welcome-content h2{
    font-size:34px;
  }

}

@media(max-width:500px){

  .welcome-content h2{
    font-size:28px;
  }

  .welcome-feature{
    flex-direction:column;
    text-align:center;
  }

}

/* ================= PREMIUM ABOUT SECTION ================= */

.premium-about{
  width:100%;
  padding:80px 7%;
  background:#071120;
  position:relative;
  overflow:hidden;
}

/* BLUR EFFECT */

.about-blur{
  position:absolute;
  width:350px;
  height:350px;
  background:#0b5cff;
  border-radius:50%;
  filter:blur(140px);
  opacity:0.12;
  top:-120px;
  right:-80px;
}

/* CONTAINER */

.premium-about-container{
  width:100%;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:55px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* ================= LEFT CONTENT ================= */

.premium-tag{
  display:inline-block;
  color:#4da3ff;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:18px;
  font-weight:600;
}

.premium-about-content h2{
  font-family:'Cinzel',serif;
  font-size:42px;
  line-height:1.3;
  color:#fff;
  margin-bottom:18px;
  font-weight:600;
}

.premium-about-content p{
  color:#b8c2d3;
  font-size:14px;
  line-height:1.9;
  margin-bottom:16px;
  max-width:620px;
}

/* ================= FEATURES ================= */

.premium-features{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:28px;
}

.premium-feature-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  transition:0.4s ease;
}

.premium-feature-box:hover{
  transform:translateY(-5px);
  background:rgba(11,92,255,0.12);
}

.premium-feature-box i{
  width:38px;
  height:38px;
  border-radius:12px;
  background:#0b5cff;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.premium-feature-box span{
  color:#fff;
  font-size:13px;
  font-weight:500;
}

/* ================= IMAGE ================= */

.premium-about-image{
  position:relative;
  display:flex;
  justify-content:center;
}

.image-wrapper{
  width:100%;
  max-width:420px;
  position:relative;
}

.image-wrapper img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:28px;
  border:1px solid rgba(255,255,255,0.08);
  transition:0.5s ease;
}

.image-wrapper:hover img{
  transform:scale(1.02);
}

/* FLOATING CARD */

.about-floating-card{
  position:absolute;
  bottom:20px;
  left:-30px;
  width:240px;
  padding:22px;
  border-radius:22px;
  background:rgba(7,17,32,0.92);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.about-floating-card h3{
  color:#fff;
  font-size:16px;
  line-height:1.7;
  font-weight:500;
}

.about-floating-card::before{
  content:"";
  position:absolute;
  top:-2px;
  left:20px;
  width:60px;
  height:3px;
  background:#0b5cff;
  border-radius:10px;
}

/* ================= MOBILE ================= */

@media(max-width:1000px){

  .premium-about-container{
    grid-template-columns:1fr;
    gap:45px;
  }

  .premium-about-content{
    text-align:center;
  }

  .premium-about-content p{
    margin:auto auto 16px;
  }

  .premium-features{
    justify-content:center;
  }

}

@media(max-width:600px){

  .premium-about{
    padding:65px 5%;
  }

  .premium-about-content h2{
    font-size:30px;
  }

  .image-wrapper img{
    height:auto;
  }

  .about-floating-card{
    left:10px;
    width:220px;
    padding:18px;
  }

  .about-floating-card h3{
    font-size:14px;
  }

}
