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

body{
  font-family:'Poppins',sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/*<!-- who we are -->
/* ===== AI PROFESSIONAL REVEAL ===== */
.ai-reveal{
  opacity:0;
  transform:translateY(40px) scale(0.98);
  filter:blur(6px);
  transition:all 0.9s ease;
}

/* Active state */
.ai-reveal.active{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0);
}

/* Golden underline glow for heading */
#about h2{
  position:relative;
}

#about h2::after{
  content:"";
  display:block;
  width:0;
  height:3px;
  margin:12px auto 0;
  background:linear-gradient(90deg,#FFD700,#00ffff);
  box-shadow:0 0 12px rgba(255,215,0,0.8);
  transition:0.8s ease;
}

#about h2.active::after{
  width:90px;
}


/* AI background */
.ai-bg{
  position:fixed;
  inset:0;
  background:linear-gradient(120deg,#000,#111,#FFD70022,#000);
  background-size:300% 300%;
  animation:bgMove 12s ease infinite;
  z-index:-1;
}

@keyframes bgMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Navbar */
nav{
  position:sticky;
  top:0;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#FFD700;
  font-size:24px;
  font-weight:700;
}

.nav-links a{
  margin-left:20px;
  color:#fff;
  text-decoration:none;
}

.nav-links a:hover{
  color:#FFD700;
}

/* Banner */
.banner{
  position:relative;
  min-height:320px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;
}

.banner img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.45);
}

.banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(0,0,0,0.8),rgba(255,215,0,0.3));
}

.banner-content{
  position:relative;
  z-index:2;
}

#type{
  font-size:46px;
  color:#FFD700;
  border-right:3px solid #FFD700;
  padding-right:8px;
  white-space:nowrap;
}

.banner-content span{
  display:inline-block;
  margin-top:10px;
  background:#FFD700;
  color:#000;
  padding:6px 18px;
  border-radius:30px;
  font-weight:600;
}

/* Sections */
section{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

h2{
  text-align:center;
  color:#FFD700;
  margin-bottom:20px;
}

.center-text{
  max-width:800px;
  margin:auto;
  text-align:center;
  opacity:0.8;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:40px;
}

.service-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,215,0,0.2);
  border-radius:16px;
  padding:30px;
  opacity:0;
  transform:translateY(40px);
  transition:0.5s;
}

.service-card.visible{
  opacity:1;
  transform:translateY(0);
}

.service-card h3{
  color:#FFD700;
  margin-bottom:10px;
}

/* CTA */
.cta{
  background:linear-gradient(135deg,#FFD700,#e6c200);
  color:#000;
  text-align:center;
  border-radius:20px;
}

.cta a{
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  background:#000;
  color:#FFD700;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* Responsive */
@media(max-width:768px){
  #type{font-size:30px;}
}

#ai-canvas{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
}
/* ===== SERVICES AI AUTO-ADJUST ===== */
.service-card{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,215,0,0.25);
  border-radius:16px;
  padding:30px;
  opacity:0;
  transform:translateY(40px);
  transition:0.4s ease;
  flex-wrap: wrap;          /* allow cards to move to next line on smaller screens */
  justify-content: center;  /* center the cards horizontally */                /* spacing between cards */

}

/* Scroll reveal */
.service-card.visible{
  opacity:1;
  transform:translateY(0);
  animation:aiPulse 5s ease-in-out infinite;
}

/* Desktop pulse (default) */
@keyframes aiPulse{
  0%,100%{
    box-shadow:
      0 0 10px rgba(255,215,0,0.25),
      0 0 20px rgba(0,255,255,0.15);
  }
  50%{
    box-shadow:
      0 0 28px rgba(255,215,0,0.6),
      0 0 50px rgba(0,255,255,0.35);
  }
}

/* Hover glow (only when hover exists) */
@media (hover:hover){
  .service-card:hover{
    transform:translateY(-10px) scale(1.04);
    animation:none;
    box-shadow:
      0 0 35px rgba(255,215,0,0.9),
      0 0 65px rgba(0,255,255,0.6);
  }

  .service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      120deg,
      transparent,
      rgba(255,215,0,0.35),
      rgba(0,255,255,0.25),
      transparent
    );
    transform:translateX(-100%);
    transition:0.8s;
  }

  .service-card:hover::before{
    transform:translateX(100%);
  }
}

/* 📱 Mobile auto-adjust (lighter animation) */
@media (max-width:768px){
  .service-card.visible{
    animation:aiPulseMobile 6s ease-in-out infinite;
  }

  @keyframes aiPulseMobile{
    0%,100%{
      box-shadow:0 0 10px rgba(255,215,0,0.2);
    }
    50%{
      box-shadow:0 0 20px rgba(255,215,0,0.45);
    }
  }
}

/* Web Projects Section */
#projects{
  text-align:center;
  padding:80px 20px;
  background:rgba(255,255,255,0.05);
  border-radius:20px;
  margin-bottom:40px;
}

.project-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.project-card{
  max-width:600px;
  text-align:center;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,215,0,0.25);
  border-radius:16px;
  padding:20px;
}

.project-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:15px;
}

.project-card a{
  display:inline-block;
  margin-top:10px;
  padding:10px 25px;
  background:#FFD700;
  color:#000;
  text-decoration:none;
  border-radius:25px;
  font-weight:600;
  transition:0.3s;
}

.project-card a:hover{
  background:#e6c200;
}

#prev-project, #next-project{
  font-size:28px;
  background:rgba(255,215,0,0.2);
  border:none;
  padding:15px 25px;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

#prev-project:hover, #next-project:hover{
  background:rgba(255,215,0,0.6);
}

@media(max-width:768px){
  .project-container{
    flex-direction:column;
  }

  #prev-project, #next-project{
    margin:10px 0;
  }
}



/* Web Projects Section */
#projects{
  padding:80px 20px;
  text-align:center;
}

#projects h2{
  color:#FFD700;
  margin-bottom:40px;
}

/* Grid for projects */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
  justify-items:center;
}

/* Individual project card */
.project-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,215,0,0.25);
  border-radius:16px;
  padding:20px;
  max-width:350px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card img{
  width:100%;
  border-radius:12px;
  margin-bottom:15px;
}

.project-card a{
  display:inline-block;
  padding:10px 25px;
  background:#FFD700;
  color:#000;
  text-decoration:none;
  border-radius:25px;
  font-weight:600;
  transition:0.3s;
}

.project-card a:hover{
  background:#e6c200;
}

.project-card:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 0 30px rgba(255,215,0,0.5);
}

/* Responsive */
@media(max-width:768px){
  .projects-grid{
    grid-template-columns:1fr;
  }
}

.project-card img{
  width: 100%;         /* full width of card */
  height: 200px;       /* fixed height */
  object-fit: cover;   /* scale image to cover area without stretching */
  border-radius: 5px;
  margin-bottom: 15px;
}








/* Video Projects Section */
#video-projects{
  padding:80px 20px;
  text-align:center;
}

#video-projects h2{
  color:#FFD700;
  margin-bottom:40px;
}

/* Video grid */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:30px;
  justify-items:center;
}

/* Individual video card */
.video-card{
  border:1px solid rgba(255,215,0,0.25);
  border-radius:16px;
  overflow:hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

/* Hover effect */
.video-card:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 0 30px rgba(255,215,0,0.5);
}

/* Responsive */
@media(max-width:768px){
  .video-grid{
    grid-template-columns:1fr;
  }
}




/*card download section */

/* ===== DOWNLOAD CARD SECTION ===== */
#download-card{
  padding:80px 20px;
  text-align:center;
}

#download-card h2{
  color:#FFD700;
  font-size:36px;
  margin-bottom:10px;
}

.download-subtext{
  max-width:650px;
  margin:0 auto 40px;
  opacity:0.8;
}

/* Download card */
.download-card-box{
  display:inline-block;
  width:280px;
  padding:30px 25px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,215,0,0.35);
  border-radius:20px;
  text-decoration:none;
  color:#fff;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

/* Glow animation */
.download-card-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,0.35),
    rgba(0,255,255,0.25),
    transparent
  );
  transform:translateX(-100%);
  transition:0.8s;
}

.download-card-box:hover::before{
  transform:translateX(100%);
}

.download-card-box:hover{
  transform:translateY(-8px) scale(1.05);
  box-shadow:
    0 0 30px rgba(255,215,0,0.7),
    0 0 60px rgba(0,255,255,0.4);
}

/* Icon */
.download-icon{
  font-size:40px;
  color:#FFD700;
  margin-bottom:15px;
}

.download-card-box h3{
  color:#FFD700;
  margin-bottom:8px;
}

.download-card-box span{
  display:inline-block;
  margin-top:10px;
  background:#FFD700;
  color:#000;
  padding:6px 18px;
  border-radius:30px;
  font-weight:600;
}

/* Mobile */
@media(max-width:768px){
  #download-card h2{
    font-size:28px;
  }
}


/* bussiness box cards */

/* ===== EXPERTISE SECTION (AI ENHANCED) ===== */
#expertise{
  padding:90px 20px;
  text-align:center;
}

#expertise h2{
  color:#FFD700;
  font-size:38px;
  margin-bottom:12px;
  text-shadow:0 0 15px rgba(255,215,0,0.5);
}

.expertise-intro{
  max-width:760px;
  margin:0 auto 55px;
  opacity:0.85;
}

/* Grid */
.expertise-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:32px;
}

/* Card */
.expertise-card{
  position:relative;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,215,0,0.3);
  border-radius:20px;
  padding:35px 30px;
  overflow:hidden;
  transition:0.4s ease;
  animation:aiFloat 6s ease-in-out infinite;
}

/* Floating AI effect */
@keyframes aiFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* Icon */
.ai-icon{
  font-size:38px;
  display:block;
  margin-bottom:15px;
  color:#FFD700;
  animation:iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.15); }
}

/* Text */
.expertise-card h3{
  color:#FFD700;
  margin-bottom:10px;
}

.expertise-card p{
  opacity:0.85;
  line-height:1.65;
}

/* AI shine scan */
.expertise-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,0.35),
    rgba(0,255,255,0.25),
    transparent
  );
  transform:translateX(-100%);
  animation:aiScan 4.5s linear infinite;
}

@keyframes aiScan{
  to{ transform:translateX(100%); }
}

/* Hover boost */
@media (hover:hover){
  .expertise-card:hover{
    transform:translateY(-14px) scale(1.05);
    animation:none;
    box-shadow:
      0 0 35px rgba(255,215,0,0.8),
      0 0 65px rgba(0,255,255,0.5);
  }
}

/* Mobile optimization */
@media(max-width:768px){
  #expertise h2{
    font-size:30px;
  }
  .expertise-card{
    animation:aiFloatMobile 7s ease-in-out infinite;
  }
  @keyframes aiFloatMobile{
    50%{ transform:translateY(-6px); }
  }
}


/* contact form */

/* ===== AI CONTACT SECTION ===== */
.ai-contact{
  position:relative;
  padding:100px 20px;
  text-align:center;
  overflow:hidden;
}

/* Moving AI glow */
.ai-contact-glow{
  position:absolute;
  inset:-50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,215,0,0.18), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0,255,255,0.15), transparent 40%);
  animation:contactGlow 14s linear infinite;
  z-index:-1;
}

@keyframes contactGlow{
  0%{ transform:rotate(0deg); }
  100%{ transform:rotate(360deg); }
}

/* Heading */
.ai-contact-title{
  color:#FFD700;
  font-size:38px;
  margin-bottom:10px;
  text-shadow:0 0 18px rgba(255,215,0,0.7);
}

.ai-contact-sub{
  max-width:700px;
  margin:0 auto 50px;
  opacity:0.85;
}

/* Form */
.contact-form{
  max-width:600px;
  margin:0 auto;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,215,0,0.3);
  border-radius:22px;
  padding:40px;
  backdrop-filter:blur(10px);
  animation:formFloat 6s ease-in-out infinite;
}

@keyframes formFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

/* Inputs */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:16px;
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(255,215,0,0.25);
  border-radius:12px;
  color:#fff;
  outline:none;
  transition:0.3s;
}

.contact-form textarea{
  min-height:120px;
  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#FFD700;
  box-shadow:0 0 18px rgba(255,215,0,0.6);
}

/* Bottom row */
.contact-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:20px;
  gap:20px;
}

.social-icons a{
  color:#FFD700;
  text-decoration:none;
  margin-right:12px;
  font-weight:700;
  font-size:18px;
  transition:0.3s;
}

.social-icons a:hover{
  text-shadow:0 0 12px rgba(255,215,0,0.8);
}

/* Button */
.ai-submit{
  background:#FFD700;
  color:#000;
  border:none;
  padding:14px 34px;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.ai-submit::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform:translateX(-100%);
  transition:0.6s;
}

.ai-submit:hover::after{
  transform:translateX(100%);
}

/* Contact info */
.contact-info{
  margin-top:40px;
  opacity:0.85;
}

.contact-info a{
  color:#FFD700;
  text-decoration:none;
}

/* Mobile */
@media(max-width:768px){
  .contact-form{
    padding:30px 20px;
  }
  .contact-bottom{
    flex-direction:column;
  }
}

nav {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;  /* add this */
}


.footer {
  background: #000;
  color: #FFD700;
  text-align: center;
  padding: 30px 20px;
  font-size: 18px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer p {
  margin: 0 0 10px;
  font-weight: 500;
}

.footer-social a {
  color: #FFD700;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
  text-shadow: 0 0 10px #FFD700;
}


/* Navbar links container */
.nav-links {
  display: flex;
  gap: 20px;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile adjustments */
@media (max-width:768px){
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background: rgba(0,0,0,0.95);
    height: 100vh;
    width: 200px;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

html {
  scroll-behavior: smooth;
}




.logo {
  display: flex;
  align-items: center;
  color: #FFD700;
  font-size: 24px;
  font-weight: 700;
  gap: 10px; /* space between logo image and text */
}

.logo-img {
  height: 40px; /* adjust as needed */
  width: auto;
}

.nav-links a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #FFD700;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #FFD700;
  margin: 4px 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 40px;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}


.footer {
  background: #000;
  color: #FFD700;
  padding: 50px 20px;
  border-top: 1px solid rgba(255,215,0,0.25);
}

.footer-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-brand h3 {
  font-size: 26px;
  margin-bottom: 5px;
  text-shadow: 0 0 12px rgba(255,215,0,0.6);
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 25px;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 16px;
  opacity: 0.9;
}

.footer-contact a {
  color: #FFD700;
  text-decoration: none;
}

.footer-contact a:hover {
  text-shadow: 0 0 10px rgba(255,215,0,0.8);
}

.footer-social {
  margin: 25px 0;
}

.footer-social a {
  margin: 0 12px;
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
  text-shadow: 0 0 12px #FFD700;
}

.footer-copy {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.75;
}

/* Mobile */
@media(max-width:768px){
  .footer-brand h3 {
    font-size: 22px;
  }
}


/* CSS of the banner projects 
/* ===== POSTERS SECTION ===== */
#posters{
  padding:90px 20px;
  text-align:center;
}

.poster-grid{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin-top:40px;
}

/* Card */
.poster-card{
  width:260px;
  height:360px;
  overflow:hidden;
  border-radius:14px;
  background:#111;
  border:1px solid rgba(255,255,255,0.15);
  transition:transform 0.3s ease;
}

/* Image */
.poster-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.3s ease;
}

/* Simple hover (NO glow) */
@media (hover:hover){
  .poster-card:hover{
    transform:translateY(-8px);
  }

  .poster-card:hover img{
    transform:scale(1.06);
  }
}

/* Mobile */
@media(max-width:768px){
  .poster-card{
    width:220px;
    height:300px;
  }
}
.poster-card{
  width:250px;
  height:350px;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #333;
  background:#000;
}

.poster-card img{
  width:100%;
  height:100%;
  object-fit:cover;      /* 🔥 image poori card me fit */
  display:block;         /* extra gap remove */
}
.poster-card img{
  width:100%;
  height:100%;
  object-fit:contain;   /* poori image dikhegi */
  background:#000;      /* side me black space */
}



/* new */ 

/* ===== INCLUDED SECTION ===== */
#included{
  padding:80px 20px;
  text-align:center;
}

#included h2{
  color:#FFD700;
  margin-bottom:40px;
}

/* Grid */
.included-grid{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

/* Card */
.included-card{
  width:260px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,215,0,0.3);
  border-radius:14px;
  padding:25px 20px;
  animation:fadeUp 0.8s ease forwards;
}

/* Stagger animation */
.included-card:nth-child(1){ animation-delay:0.1s; }
.included-card:nth-child(2){ animation-delay:0.3s; }
.included-card:nth-child(3){ animation-delay:0.5s; }

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

/* Normal hover */
.included-card:hover{
  transform:translateY(-5px);
}

/* Text */
.included-card h3{
  color:#FFD700;
  margin-bottom:8px;
}

.included-card p{
  opacity:0.85;
}

.included-note{
  margin-top:35px;
  font-size:14px;
  opacity:0.7;
}



/* INSTAGRAM SECTION */

/* ===== VIDEO CTA SECTION ===== */
#video-cta{
  padding:90px 20px;
  text-align:center;
  background:rgba(255,255,255,0.03);
  border-top:1px solid rgba(255,215,0,0.2);
}

#video-cta h2{
  color:#FFD700;
  margin-bottom:15px;
}

#video-cta .center-text{
  max-width:700px;
  margin:auto;
  opacity:0.8;
}

/* CTA Button */
.insta-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  background:#FFD700;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s ease;
}

/* Simple hover */
.insta-btn:hover{
  transform:translateY(-4px);
}

/* Fade-in animation */
#video-cta{
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUp 0.8s ease forwards;
  animation-delay:0.2s;
}

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