/* =========================
   RESET
==========================*/

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

body{
  font-family:'Poppins',sans-serif;
  background:#07111f;
  color:white;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

section{
  padding:100px 8%;
}

/* =========================
   BACKGROUND
==========================*/

.bg-animation{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-2;

  background:
  radial-gradient(circle at top left,#ff006e22,transparent 25%),
  radial-gradient(circle at bottom right,#00d9ff22,transparent 30%),
  linear-gradient(135deg,#07111f,#0a192f,#07111f);
}

.circle{
  position:absolute;
  border-radius:50%;
  background:linear-gradient(45deg,#00d9ff,#ff006e);
  filter:blur(100px);
  opacity:.15;
}

.circle:nth-child(1){
  width:300px;
  height:300px;
  top:10%;
  left:-5%;
}

.circle:nth-child(2){
  width:400px;
  height:400px;
  bottom:-10%;
  right:-10%;
}

/* =========================
   NAVBAR
==========================*/

nav{
  width:100%;
  padding:18px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;

  position:fixed;
  top:0;
  z-index:999;

  backdrop-filter:blur(14px);

  background:rgba(0,0,0,.25);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  width:55px;
  height:55px;
  border-radius:14px;
}

.logo h2{
  font-size:28px;
  font-weight:800;

  background:linear-gradient(to right,#00d9ff,#ff006e);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:35px;
}

.nav-links a{
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-6px;
  background:#ff006e;
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* =========================
   MOBILE MENU
==========================*/

.menu-btn{
  display:none;
  font-size:30px;
  cursor:pointer;
}

/* =========================
   COMMON TITLES
==========================*/

.page-title{
  font-size:72px;
  font-weight:800;
  margin-bottom:24px;
  line-height:1.2;
}

.page-subtitle{
  max-width:850px;
  color:#bcc7d8;
  line-height:1.9;
  font-size:18px;
}

/* =========================
   COMMON BUTTON
==========================*/

.btn-primary{
  border:none;
  padding:16px 34px;
  border-radius:50px;

  background:
  linear-gradient(45deg,#00d9ff,#ff006e);

  color:white;
  font-size:16px;
  font-weight:600;
  cursor:pointer;

  transition:.4s;
}

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

/* =========================
   GRADIENT TEXT
==========================*/

.gradient{
  background:
  linear-gradient(to right,#00d9ff,#ff006e);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* =========================
   GLASS CARD
==========================*/

.glass-card{
  background:rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(14px);
}

/* =========================
   FOOTER
==========================*/
/* ===================================
   FOOTER V3
   COMPACT PREMIUM VERSION
=================================== */

.premium-footer{

  position:relative;

  overflow:hidden;

  padding:38px 8% 18px;

  background:
  linear-gradient(
    180deg,
    #06101f 0%,
    #071427 100%
  );

  border-top:
  1px solid rgba(255,255,255,.06);
}

/* ===================================
   GLOW EFFECT
=================================== */

.footer-glow{

  position:absolute;

  border-radius:50%;

  filter:blur(120px);

  opacity:.12;

  pointer-events:none;
}

.glow-left{

  width:240px;
  height:240px;

  background:#00cfff;

  top:-120px;
  left:-120px;
}

.glow-right{

  width:240px;
  height:240px;

  background:#7c3aed;

  right:-100px;
  bottom:-100px;
}

/* ===================================
   CONTAINER
=================================== */

.footer-container{

  position:relative;

  z-index:2;

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:38px;

  flex-wrap:wrap;
}

/* ===================================
   LEFT
=================================== */

.footer-left{

  flex:1;

  min-width:320px;
}

/* ===================================
   LOGO
=================================== */

.footer-logo-wrap{

  display:flex;

  align-items:center;

  gap:16px;

  text-decoration:none;

  margin-bottom:20px;
}

.footer-logo{

  width:74px;

  height:74px;

  object-fit:contain;

  border-radius:20px;

  padding:8px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(10px);
}

.footer-logo-text h2{

  color:white;

  font-size:30px;

  font-weight:800;

  line-height:1;
}

.footer-logo-text span{

  color:#91a4c3;

  font-size:14px;

  margin-top:7px;

  display:block;
}

/* ===================================
   DESCRIPTION
=================================== */

.footer-description{

  max-width:610px;

  color:#d0d9e8;

  line-height:1.7;

  font-size:15px;

  margin-bottom:22px;
}

/* ===================================
   SOCIALS
=================================== */

.footer-socials{

  display:flex;

  gap:14px;

  flex-wrap:wrap;
}

.footer-socials a{

  width:54px;
  height:54px;

  border-radius:18px;

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;

  color:white;

  font-size:22px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.06);

  backdrop-filter:blur(10px);

  transition:.35s;
}

.footer-socials a:hover{

  transform:
  translateY(-5px);

  background:
  linear-gradient(
    135deg,
    #00d9ff,
    #7c3aed
  );

  box-shadow:
  0 10px 24px rgba(0,217,255,.18);
}

/* ===================================
   RIGHT CARD
=================================== */

.footer-card{

  width:320px;

  padding:24px;

  border-radius:28px;

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.03)
  );

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  transition:.4s;
}

.footer-card:hover{

  transform:
  translateY(-6px);
}

.footer-card::before{

  content:'';

  position:absolute;

  width:110px;
  height:110px;

  border-radius:50%;

  background:
  rgba(255,0,0,.16);

  top:-40px;
  right:-40px;
}

/* ===================================
   YOUTUBE ICON
=================================== */

.yt-icon-wrap{

  margin-bottom:18px;
}

.yt-icon{

  width:76px;
  height:76px;

  border-radius:22px;

  display:flex;

  align-items:center;

  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #ff1f1f,
    #ff0055
  );

  color:white;

  font-size:36px;

  box-shadow:
  0 12px 30px rgba(255,0,0,.24);

  animation:
  pulseGlow 3s infinite;
}

/* ===================================
   CARD TEXT
=================================== */

.footer-card h3{

  color:white;

  font-size:24px;

  line-height:1.3;

  margin-bottom:12px;

  font-weight:800;
}

.footer-card p{

  color:#d4dceb;

  line-height:1.8;

  font-size:15px;

  margin-bottom:24px;
}

/* ===================================
   BUTTON
=================================== */

.footer-btn{

  height:52px;

  padding:0 24px;

  border-radius:16px;

  display:inline-flex;

  align-items:center;

  gap:10px;

  text-decoration:none;

  background:
  linear-gradient(
    135deg,
    #ff1f1f,
    #ff0055
  );

  color:white;

  font-size:15px;

  font-weight:700;

  transition:.35s;
}

.footer-btn:hover{

  transform:
  scale(1.03);

  box-shadow:
  0 10px 24px rgba(255,0,0,.24);
}

/* ===================================
   BOTTOM
=================================== */

.footer-bottom{

  position:relative;

  z-index:2;

  margin-top:28px;

  padding-top:16px;

  border-top:
  1px solid rgba(255,255,255,.06);

  display:flex;

  justify-content:space-between;

  align-items:center;

  gap:18px;

  flex-wrap:wrap;
}

.footer-bottom p{

  color:#9fb0cb;

  font-size:13px;
}

/* ===================================
   ANIMATION
=================================== */

@keyframes pulseGlow{

  0%{

    transform:scale(1);
  }

  50%{

    transform:scale(1.04);
  }

  100%{

    transform:scale(1);
  }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1000px){

  .footer-container{

    flex-direction:column;

    align-items:flex-start;
  }

  .footer-card{

    width:100%;
  }
}

@media(max-width:768px){

  .premium-footer{

    padding:34px 5% 18px;
  }

  .footer-logo{

    width:66px;
    height:66px;
  }

  .footer-logo-text h2{

    font-size:26px;
  }

  .footer-description{

    font-size:14px;
  }

  .footer-card{

    padding:22px;
  }

  .footer-card h3{

    font-size:22px;
  }

  .footer-card p{

    font-size:14px;
  }

  .footer-bottom{

    flex-direction:column;

    align-items:flex-start;
  }
}

@media(max-width:500px){

  .footer-socials a{

    width:50px;
    height:50px;

    font-size:20px;
  }

  .footer-card{

    width:100%;
  }
}