﻿
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif
}
body{
  background:#000;
  color:#fff
}

.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
}
@keyframes wordFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

body.nav-open{
  overflow:hidden;
}

:root{
  --bg:#04020a;
  --purple:#a855f7;
  --border:rgba(255,255,255,.08);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .75s ease, transform .75s ease, filter .75s ease;
  will-change:opacity, transform;
}
[data-animate].show{
  opacity:1;
  transform:translateY(0);
}
/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover
}
.hero video{display:none;}
.hero-slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.05);
  transition:opacity .9s ease, transform 7s ease;
}
.hero-img.active{
  opacity:1;
  transform:scale(1.02);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55)
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  gap:40px;
  padding:180px 7vw 0
}
.hero-left{
  flex:1;
  display:flex;
  align-items:flex-start;
}
.hero-right{
  flex:1;
  max-width:640px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
/* ===== HERO TEXT ANIMATION ===== */
.hero h1{
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:700;
  opacity:0;
  transform:translateY(30px);
  animation:heroTitle 1.1s cubic-bezier(.22,.61,.36,1) forwards;
      color: white;

}

.hero p{
  max-width:720px;
  margin:0;
  opacity:0;
  transform:translateY(30px);
  animation:heroText 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:.4s;
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{display:none;}
  .hero-img{width:100%;}
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:22px;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}


.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
}

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

@media(max-width:1100px){
  .top-nav{padding:16px 0;}
  .scroll-nav .nav-inner{border-radius:32px; padding:12px 20px;}
}

@media(max-width:980px){
  .main-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:76vw;
    max-width:340px;
    height:100vh;
    flex-direction:column;
    align-items:flex-start;
    padding:110px 26px 40px;
    background:rgba(8,7,13,.98);
    backdrop-filter:blur(12px);
    gap:18px;
    transition:.35s ease;
    z-index:950;
    overflow-y:auto;
  }
  .top-nav .main-menu{border-radius:0 0 0 24px;}
  .scroll-nav .main-menu{border-radius:24px 0 0 24px;}
  .top-nav.open .main-menu,
  .scroll-nav.open .main-menu{right:0;}
  .menu-toggle{display:flex;}
  .nav-actions .btn-gradient{display:none;}
  .mobile-cta{display:block;}
  .main-menu li{width:100%;}
  .main-menu a{display:block; width:100%; padding:10px 0;}
  .dropdown,
  .sub-dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:transparent;
    padding:6px 0 0 0;
  }
  .dropdown li,
  .sub-dropdown li{
    padding:8px 0 0 14px;
  }
  .has-dropdown > a::after{display:none;}
  .top-nav .brand img{height:52px;}
  .scroll-nav .brand img{height:32px;}
}

/* ===== KEYFRAMES ===== */
@keyframes heroTitle{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

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

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{
    width:100%;
  }
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}


/* ================= TOP NAV ================= */
.top-nav{
  position:absolute;
  top:0;
  width:100%;
  padding:22px 0;
  z-index:10
}
.top-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

/* ================= FLOATING NAV ================= */
.scroll-nav{
  position:fixed;
  top:-120px;
  width:100%;
  z-index:999;
  transition:.5s ease
}
.scroll-nav.active{top:20px}

.scroll-nav .nav-inner{
  max-width:1200px;
  width:calc(100% - 24px);
  margin:0 auto;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(14px);
  border-radius:60px;
  padding:14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6)
}

/* ================= BRAND ================= */
.brand{
  display:flex;
  align-items:center;
  gap:10px
}
.top-nav .brand img{height:60px}
.scroll-nav .brand img{height:36px}
.brand span{
  font-weight:600;
  font-size:18px
}

/* ================= MENU ================= */
.main-menu{
  display:flex;
  gap:24px;
  list-style:none
}
.main-menu li{
  position:relative
}
.main-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:6px 0
}

/* underline animation */
.main-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  transition:.35s ease
}
.main-menu li:hover>a::after{
  width:100%
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.menu-toggle{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  cursor:pointer;
  transition:.3s ease;
  padding:0;
}
.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.3s ease;
}
.menu-toggle:focus-visible{
  outline:2px solid #a855f7;
  outline-offset:3px;
}
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:900;
}
body.nav-open .menu-overlay{
  opacity:1;
  visibility:visible;
}
.mobile-cta{
  display:none;
}
.mobile-cta .btn-gradient{
  width:100%;
  text-align:center;
}
/* ================= DROPDOWN ================= */
@media(min-width:981px){
  .main-menu > .has-dropdown{position:static;}
  .dropdown{
    position:absolute;
    left:50%;
    top:calc(100% + 18px);
    transform:translate(-50%,18px);
    width:min(1180px,calc(100vw - 48px));
    background:linear-gradient(180deg,#0b0f2a 0%,#070714 55%,#020203 100%);
    padding:60px 60px 48px;
    border-radius:24px;
    opacity:0;
    visibility:hidden;
    transition:opacity .35s ease, transform .35s ease, visibility .35s ease;
    box-shadow:0 25px 70px rgba(0,0,0,.6);
    border:1px solid rgba(255,255,255,.06);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:80px;
    z-index:990;
  }
  .scroll-nav .dropdown{top:calc(100% + 14px);}
  .has-dropdown:hover>.dropdown{
    opacity:1;
    visibility:visible;
    transform:translate(-50%,0);
  }
  .dropdown li{
    padding:0;
    list-style:none;
  }
  .dropdown a{
    font-size:15px;
  }

  /* ================= SUB DROPDOWN ================= */
  .dropdown .has-sub{position:static;}
  .has-sub > a{
    display:block;
    color:var(--purple);
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
    text-decoration:none;
  }
  .sub-dropdown{
    position:static;
    background:transparent;
    min-width:0;
    border-radius:0;
    padding:0;
    opacity:1;
    visibility:visible;
    transform:none;
    transition:none;
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .sub-dropdown a{
    color:#cfcfcf;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    transition:color .25s ease, transform .25s ease;
  }
  .sub-dropdown a::before{
    content:"•";
    color:var(--purple);
    font-size:18px;
    line-height:1;
    display:inline-block;
  }
  .sub-dropdown a:hover{
    color:#fff;
    transform:translateX(6px);
  }
}
/* ================= BUTTON ================= */
.btn-gradient{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  cursor:pointer;
  display:inline-block;
  text-decoration:none
}
.hero .btn-hero{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color:#000;
  border:none;
  padding:16px 28px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  align-self:flex-start;
  box-shadow:0 10px 40px rgba(0,0,0,.28)
}
/* ================= CHAT ================= */
.chat-box{
  position:fixed;
  right:20px;
  bottom:80px;
  width:280px;
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4)
}
.chat-box button{
  width:100%;
  margin-top:8px;
  border-radius:20px;
  border:1px solid #a855f7;
  background:transparent;
  color:#a855f7;
  padding:8px
}

/* demo scroll */
.section{
  height:140vh;
  background:linear-gradient(120deg,#1a002a,#000)
}
/* ================= SIDE SOCIAL ================= */
.side-social{
  position:fixed;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  opacity:0;
  pointer-events:none;
  transition:.5s ease;
  z-index:999;
}

.side-social.active{
  opacity:1;
  pointer-events:auto;
}

.side-social a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  transition:.35s ease;
  position:relative;
}

/* Glow ring */
.side-social a::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:50%;
  opacity:0;
  transition:.35s ease;
}

/* Hover animation */
.side-social a:hover{
  transform:scale(1.15);
  background:#fff;
  color:#000;
}

.side-social a:hover::after{
  opacity:1;
}

/* Platform glow colors */
.linkedin:hover::after{
  background:rgba(10,102,194,.5);
  filter:blur(12px);
}

.instagram:hover::after{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  filter:blur(12px);
}

.facebook:hover::after{
  background:rgba(24,119,242,.5);
  filter:blur(12px);
}

.youtube:hover::after{
  background:rgba(255,0,0,.5);
  filter:blur(12px);
}

@media(max-width:900px){
  .side-social{
    display:none;
  }
}

/* SECTION */
.course-features {
  padding: 100px 40px;
  background:
    radial-gradient(#1e1e2f 1px, transparent 1px),
    #0b0b0f;
  background-size: 40px 40px;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.section-header span {
  color: #9b5cff;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-header h2 {
  font-size: 42px;
  margin-top: 10px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CLICKABLE CARD */
.feature-link {
  text-decoration: none;
  color: inherit;
}

/* CARD */
.feature-card {
  background: #12121a;
  border-radius: 18px;
  padding: 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    transparent,
    rgba(155, 92, 255, 0.25)
  );
  opacity: 0;
  transition: 0.4s;
}

.feature-link:hover .feature-card::before {
  opacity: 1;
}

.feature-link:hover .feature-card {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(155, 92, 255, 0.35);
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(155, 92, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfd9;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .course-features {
    padding: 70px 20px;
  }

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

  .section-header h2 {
    font-size: 32px;
  }
}

.dg-bg{
background:
radial-gradient(circle at 20% 30%, rgba(168,85,247,.35), transparent 45%),
radial-gradient(circle at 80% 60%, rgba(168,85,247,.25), transparent 45%),
linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
background-size:100% 100%,100% 100%,40px 40px,40px 40px;
}

/* HERO */

.dg-hero{
min-height:100vh;
padding:120px 8%;
}

.dg-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:start;
}

.dg-title{
font-size:56px;
line-height:1.1;
background:#a855f7;
padding:14px 22px;
display:inline-block;
}

/* ACCORDION */

.dg-acc-item{
border-bottom:1px solid rgba(255,255,255,.2);
padding:18px 0;
}

.dg-acc-head{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:22px;
background:#a855f7;
padding:10px 16px;
}

.dg-plus{
font-size:26px;
transition:.3s;
}

.dg-acc-body{
max-height:0;
overflow:hidden;
transition:.4s ease;
font-size:14px;
color:#e5e5e5;
line-height:1.6;
padding-right:40px;
}

.dg-acc-item.active .dg-acc-body{
max-height:160px;
margin-top:10px;
}

.dg-acc-item.active .dg-plus{
transform:rotate(45deg);
}

/* COURSE SECTION (SAME BG) */

.dm-course{
padding:100px 8%;
}

.dm-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:60px;
}

.dm-title{
font-size:32px;
margin-bottom:10px;
}

.dm-sub{
color:#cfcfcf;
margin-bottom:30px;
}

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

.dm-block h4{
margin-bottom:8px;
}

.dm-block p{
font-size:14px;
color:#d1d1d1;
line-height:1.6;
}

/* RIGHT CARD */

.dm-card{
border:1px solid rgba(255,255,255,.15);
padding:30px;
border-radius:12px;
background:rgba(0,0,0,.4);
backdrop-filter:blur(6px);
}

.dm-card ul{
list-style:none;
padding-left:0;
}

.dm-card li{
margin-bottom:8px;
color:#e1e1e1;
}

.dm-price{
margin:20px 0;
font-weight:bold;
color:#fff;
}

.dm-btn{
display:block;
background:#4f46e5;
color:#fff;
text-align:center;
padding:14px;
border-radius:6px;
text-decoration:none;
margin-top:20px;
}

/* CERT */

.dm-cert{
margin-top:50px;
}

.dm-cert li{
margin-bottom:8px;
color:#d1d1d1;
}

/* MOBILE */

@media(max-width:900px){
.dg-wrap,
.dm-grid,
.dm-curriculum{
grid-template-columns:1fr;
}

.dg-title{
font-size:40px;
}
}
.dg-bg{
background:
radial-gradient(circle at 20% 30%, rgba(168,85,247,.35), transparent 45%),
radial-gradient(circle at 80% 60%, rgba(168,85,247,.25), transparent 45%),
linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
background-size:100% 100%,100% 100%,40px 40px,40px 40px;
animation:bgMove 18s linear infinite;
padding:120px 8%;
}

@keyframes bgMove{
from{background-position:0 0,0 0,0 0,0 0}
to{background-position:120px 90px,-120px -90px,40px 40px,40px 40px}
}

/* FAQ */

.faq-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.faq-title{
font-size:36px;
margin-bottom:10px;
}

.faq-item{
border:1px solid rgba(255,255,255,.15);
margin-bottom:15px;
padding:20px;
cursor:pointer;
background:rgba(0,0,0,.4);
backdrop-filter:blur(6px);
opacity:0;
transform:translateX(-40px);
transition:.8s;
}

.faq-item.show{
opacity:1;
transform:none;
}

.faq-q{
display:flex;
justify-content:space-between;
font-weight:600;
}

.faq-plus{
font-size:22px;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:.4s ease;
opacity:.8;
line-height:1.6;
}

.faq-item.active .faq-answer{
max-height:200px;
margin-top:10px;
}

.faq-item.active .faq-plus{
transform:rotate(45deg);
}

/* Testimonials */

.testimonials{
margin-top:120px;
}

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

.testimonial-card{
border:1px solid rgba(255,255,255,.15);
padding:25px;
border-radius:12px;
background:rgba(0,0,0,.45);
backdrop-filter:blur(6px);
opacity:0;
transform:translateY(40px) scale(.95);
transition:.8s;
}

.testimonial-card.show{
opacity:1;
transform:none;
}

.testimonial-card:hover{
transform:translateY(-8px);
}

.stars{
color:#ffb300;
margin-top:10px;
}

.name{
margin-top:10px;
font-weight:600;
opacity:.9;
}
.testi-head{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
}

.testi-head img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
border:2px solid #a855f7;
}

.testi-head small{
opacity:.7;
font-size:12px;
}

/* Mobile */

@media(max-width:900px){
.faq-wrap{
grid-template-columns:1fr;
}
}
/* Footer */
.dg-footer{
  background:
    radial-gradient(circle at 22% 0%, rgba(168,85,247,.08), transparent 38%),
    radial-gradient(circle at 78% 0%, rgba(56,189,248,.08), transparent 36%),
    linear-gradient(180deg,#020104 0%,#020105 45%,#000000 100%);
  padding:90px 97px 70px;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.dg-footer::before{
  content:"";
  position:absolute;
  inset:-25% -35%;
  background:radial-gradient(circle at 30% 20%,rgba(168,85,247,.28),transparent 45%),
             radial-gradient(circle at 70% 10%,rgba(56,189,248,.24),transparent 42%);
  filter:blur(100px);
  opacity:.32;
  animation:footerFlow 24s linear infinite;
  pointer-events:none;
}
.dg-footer::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:160%;
  height:2px;
  background:linear-gradient(90deg,transparent 0%,rgba(255,255,255,.35) 35%,rgba(255,255,255,.65) 50%,rgba(255,255,255,.35) 65%,transparent 100%);
  transform:translateX(-50%);
  opacity:.8;
  background-size:200% 100%;
  animation:lineScan 6s linear infinite;
}

/* LOGO */
.footer-logo{
  text-align:center;
  margin-bottom:40px;
  position:relative;
  z-index:1;
}
.footer-brand{
  height:56px;
  max-width:120px;
  width:auto;
  margin:0 auto 12px;
  object-fit:contain;
  animation:footerPulse 10s ease-in-out infinite;
}
.footer-logo h2{
  font-size:42px;
  font-weight:700;
  letter-spacing:1px;
  display:inline-block;
  animation:textGlow 5s ease-in-out infinite;
}
.footer-logo span{
  font-weight:300;
}

/* SOCIAL */
.footer-social{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:18px;
  position:relative;
  z-index:1;
}
.footer-social a{
  color:#fff;
  font-size:16px;
  opacity:.7;
  transition:.3s;
}
.footer-social a:hover{
  opacity:1;
  color:#a855f7;
  transform:translateY(-2px);
}

/* DIVIDER */
.footer-divider{
  height:1px;
  background:linear-gradient(90deg,transparent,#333,transparent);
  margin:40px 0 60px;
}

@keyframes footerFlow{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes textGlow{
  0%{text-shadow:0 0 12px rgba(168,85,247,.35),0 0 28px rgba(56,189,248,.18);}
  50%{text-shadow:0 0 20px rgba(236,72,153,.45),0 0 40px rgba(168,85,247,.35);}
  100%{text-shadow:0 0 12px rgba(168,85,247,.35),0 0 28px rgba(56,189,248,.18);}
}

@keyframes footerPulse{
  0%{filter:drop-shadow(0 0 8px rgba(168,85,247,.25));}
  50%{filter:drop-shadow(0 0 14px rgba(56,189,248,.4));}
  100%{filter:drop-shadow(0 0 8px rgba(168,85,247,.25));}
}

@keyframes lineScan{
  from{background-position:0 0;}
  to{background-position:-200% 0;}
}

/* GRID */
.footer-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:40px;
}

/* COLUMNS */
.footer-col h4{
  font-size:15px;
  margin-bottom:18px;
  font-weight:600;
}
.footer-col p{
  font-size:14px;
  color:#ccc;
  margin-bottom:10px;
  line-height:1.6;
}
.footer-col a{
  display:block;
  font-size:14px;
  color:#bbb;
  margin-bottom:10px;
  text-decoration:none;
  transition:.3s;
}
.footer-col a:hover{
  color:#a855f7;
  transform:translateX(4px);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .footer-grid{
    grid-template-columns:repeat(3,1fr);
  }
}


/* RESPONSIVE */
@media(max-width:1100px){
  .footer-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
/* ===== SUBSCRIBE (FOOTER INLINE) ===== */
.footer-subscribe .subscribe-form{
  display:flex;
  gap:10px;
  margin:14px 0;
}
.footer-subscribe input{
  flex:1;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
}
.footer-subscribe button{
  padding:12px 16px;
  border-radius:14px;
  border:none;
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.footer-subscribe .note{
  opacity:.7;
  font-size:.9rem;
  margin-top:4px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    background: #0a0a0a;
}

.footer-bottom a {
    margin: 0 5px;
    font-weight: 500;
}



