body::before{
  content: "";
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 300px; /* thickness (increase if needed) */

  background: linear-gradient(90deg, transparent, rgb(255, 81, 0), transparent);
  
  filter: blur(50px); /* gaussian blur effect */
  opacity: 100;

  transform: rotate(25deg); /* diagonal angle */

  animation: moveGradient 6s linear infinite;
}

@keyframes moveGradient {
  0% { transform: translateX(-50%) rotate(25deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(50%) rotate(25deg); opacity: 0; }
}

body{
  background: rgb(10, 10, 10);
  color: white;
  margin: 0;
  position: relative;
}

body > *{
  position: relative;
  z-index: 1;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
}

.logo{
font-size:22px;
font-weight:bold;
}

nav a{
margin:0 15px;
color:white;
text-decoration:none;
}

.work-btn{
background:orange;
padding:10px 20px;
border-radius:6px;
color:black;
text-decoration:none;
}

.hero{
text-align:center;
padding:120px 20px;
}

.badge{
border:1px solid orange;
display:inline-block;
padding:8px 14px;
margin-bottom:20px;
border-radius:6px;
font-size:14px;
}

.hero h1{
font-size:42px;
margin-bottom:10px;
}

.subtext{
color:#ccc;
}

.hero-buttons{
margin-top:30px;
}

.btn-orange{
background:orange;
padding:12px 24px;
margin:10px;
text-decoration:none;
color:black;
border-radius:6px;
}

.btn-outline{
border:1px solid orange;
padding:12px 24px;
margin:10px;
text-decoration:none;
color:orange;
border-radius:6px;
}

.portfolio{
padding:80px 80px;
text-align:center;
}

.video-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
 column-gap: 20px;   /* horizontal distance between the two columns */
  row-gap: 40px;     /* vertical distance between rows */
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

iframe{
width:100%;
height:225px;
border-radius:20px; /* rounded corners */
}

.testimonials{
font-size:28px;
padding: 80px;
text-align:center;
}
.testimonial-sub{
font-size:14px;
color:#ccc;
margin-top:10px;
}

.reviews{
  height: 400px;           /* visible area */
  overflow:visible;
  position: relative;
   -webkit-mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, white 20%, white 80%, transparent);
}

.reviews-scroll{
  display: flex;
  flex-direction: column;
  animation: scrollReviews 10s linear infinite;
}

.reviews img{
  width: 1000px;
  margin: 10px auto;
}

@keyframes scrollReviews {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.faqs{
padding:80px;
}

.faq h3{
color:rgb(255, 255, 254);
margin-top:20px;
}


.highlight{
  color: orange;
  font-style: italic;
  font-weight: 300;
}

.faq p{
color:#ccc;
margin-bottom:15px;
padding-bottom:15px;
border-bottom:1px solid #444; /* grey separating line */
}

.cta{
text-align:center;
padding:100px;
}

.footer{
display:flex;
justify-content:space-between;
padding:30px 80px;
}

.socials a{
margin-left:20px;
color:white;
text-decoration:none;
}
.insta-grid{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

.instagram-media{
  width: 340px !important;
  min-width: 340px !important;
  max-width: 340px !important;

  height: 600px !important;

  border-radius: 20px !important;
  overflow: hidden !important;

  margin: 0 auto !important;
}
body{
  font-family: "Inter", sans-serif;
}


.shorts-card{
  width: 320px;
  height: 560px;
  border-radius: 20px;
  overflow: hidden;
}

.shorts-card iframe{
  width: 100%;
  height: 100%;
  border: none;
}

.shorts-grid{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* allows multiple rows */
  margin-bottom: 50px;
}

/*NOW STARTING PACKAES */

.pricing{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  padding:80px 20px;
}

.card{
  width:280px;
  padding:30px;

  background:

linear-gradient(

180deg,

rgba(255,255,255,.08),

rgba(255,255,255,.03)

),

rgba(255,145,0,.06);
  backdrop-filter: blur(20px); /* 👈 glass effect */
  -webkit-backdrop-filter: blur(20px);

  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;

  text-align:center;
  color:white;

  box-shadow: 0 8px 30px rgba(0,0,0,0.5);

  transition:0.3s ease;
}

.card:hover{
  transform:translateY(-10px);
  border:1px solid orange;
}

.card h2{
  color:orange;
  margin-bottom:10px;
  letter-spacing:1px;
}

.card p{
  font-size:14px;
  color:#ccc;
  margin:5px 0;
}

.price{
  margin-top:10px;
  font-weight:bold;
  color:white;
}

.note{
  font-size:12px;
  color:#888;
}

.card button{
  margin-top:15px;
  padding:10px 20px;
border:1px solid rgba(255,145,0,.22);
  border-radius:10px;

  background:orange;
  color:black;
  font-weight:bold;
  cursor:pointer;
}

/*boarder less*/

.video-card{
  width:420px;        /* fixed clean width */
  aspect-ratio: 16/9; /* 🔥 makes it proper horizontal video */
  position:relative;
  border-radius:20px;
  overflow:hidden;
  cursor:pointer;
  margin:auto;
}

.thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}

.play-button{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:35px;
  color:white;
  background:rgba(0,0,0,0.5);
  padding:10px 18px;
  border-radius:50%;
}


.shorts-card{
  width:300px;
  aspect-ratio:9/16;
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

.shorts-card .thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-card iframe,
.shorts-card iframe{
  width:100%;
  height:100%;
  border:none;
  display:block;
}


/* ========================= */
/* Active Preview Effect */
/* ========================= */

.video-card,
.shorts-card{

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s cubic-bezier(.2,.8,.2,1),
        filter .45s cubic-bezier(.2,.8,.2,1);

}

.video-card.active-preview,
.shorts-card.active-preview{

    transform:translateY(-6px) scale(1.03);

    box-shadow:
        0 0 18px rgba(255,145,0,.22),
        0 0 40px rgba(255,145,0,.14);

    filter:brightness(1.03);

}


.shorts-grid{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
}

.shorts-card{
  position:relative;
  overflow:hidden;
}

/*NOW ending PACKAES */

.clients-section {
    padding: 80px 20px;
    text-align: center;
}

.clients-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 5px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.client-card {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #111;
    border-radius: 15px;
    transition: 0.3s;
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*line sprating long videos  */
.section-title{
  text-align:center;
  margin:80px 0 40px;
}

.section-title h2{
  font-family: sans-serif;
  font-size:48px;
  font-weight:700;
  color:#fff;
  letter-spacing:-1px;
}

.section-title span{
  color:#ff8c00;
  font-style:italic;
  font-weight:300;
}










.background-video{
    width:100vw;
    min-height:100vh;
    overflow:hidden;
    margin-left:calc(50% - 50vw);
}









.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-box{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.contact-title{
    background:#ff8c00;
    color:#fff;
    padding:14px 34px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
}

.social-icons{
    display:flex;
    gap:18px;
    margin-top:14px;
}

.social-icons a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#181818;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff8c00;
    transform:translateY(-3px);
}

.social-icons img{
    width:20px;
    height:20px;
}











/* ========================= */
/* Floating Preview Panel */
/* ========================= */

#preview-panel{

position:fixed;

top:50%;
left:80px;

transform:translateY(-50%) scale(.96);

width:340px;
min-height:320px;
height:auto;

padding:30px;
box-sizing:border-box;

border-radius:24px;

background:rgba(109,49,0,.08);

backdrop-filter:blur(32px);
-webkit-backdrop-filter:blur(32px);

border:1px solid rgba(255,170,60,.22);

box-shadow:
0 25px 70px rgba(0,0,0,.45);

opacity:0;

pointer-events:none;

transition:.45s cubic-bezier(.2,.8,.2,1);

z-index:9999;

color:white;

overflow:visible;

}
/* Orange ambient light */



/* Animated Border */


#preview-panel.active{

opacity:1;

transform:translateY(-50%) scale(1);

}

#preview-panel:hover{

transform:translateY(-50%) translateX(0) scale(1.01);

}



#preview-title{

font-size:30px;

font-weight:700;

margin-bottom:8px;

}

#preview-client{

opacity:.75;

margin-bottom:22px;

font-size:15px;

}

#preview-tags{

display:flex;

gap:10px;

flex-wrap:wrap;

margin-bottom:24px;

}

#preview-tags span{

padding:8px 16px;

border-radius:999px;

border:1px solid rgba(255,145,0,.9);

background:rgba(255,145,0,.08);

font-size:13px;

}

#preview-gif{

width:100%;

border-radius:16px;

margin-bottom:22px;

}

#preview-description{

line-height:1.7;

opacity:.9;

font-size:15px;

}



/* ======================================== */
/* Animation Layer */
/* ======================================== */

.panel-effects{

position:absolute;

inset:0;

pointer-events:none;

overflow:visible;

z-index:50;

}


/* ======================================== */
/* orb */
/* ======================================== */

.energy-orb{

position:absolute;

width:14px;
height:14px;

border-radius:50%;

background:#fff8e8;

z-index:200;

pointer-events:none;

left:18px;
top:18px;

box-shadow:
0 0 8px #fff,
0 0 18px #ffd36b,
0 0 35px #ff9100,
0 0 60px rgba(255,145,0,.85),
0 0 100px rgba(255,145,0,.55);

}






