:root {
  --white: #f7f7f7;
  --black: #161616;
  --orange: #fc2300;
}

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

.mb-30 {
  margin-bottom: 30px !important;
}

/* Quote */
.intro-quote {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--orange);
}

.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ERROR STATE */
.form-input.error {
  border-color: #ff4d4d;
}

/* Error text */
.error-text {
  font-size: 12px;
  color: #ff4d4d;
  display: none;
}

/* Show error */
.form-group.error .error-text {
  display: block;
}

.w-100 {
  width: 100%;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  /* position: absolute; */
  /* top: 30px; */
  padding: 40px 0px 0px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  /* z-index: 10; */
}

.navbar a {
  color: inherit;
  /* li ka color hi use kare */
  text-decoration: none;
  /* underline remove */
}

.navbar a:visited,
.navbar a:active,
.navbar a:focus {
  color: inherit;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 170px;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.85;
}

.navbar li {
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar li:hover {
  color: var(--orange);
}

/* INTRO SECTION */
.intro {
  /* min-height: 100vh; */
  padding: 180px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intro-left h1 {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.intro-left h1 span {
  color: var(--white);
}

.intro-left p {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.75;
}

.intro-left h1 .media {
  background: linear-gradient(90deg, #e06e30, #e81202);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cta {
  margin-top: 40px;
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(252, 35, 0, 0.45);
  transition: 0.3s ease;
}

.cta:hover {
  transform: scale(1.05);
}

.intro-right img {
  width: 420px;
  filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.8));
}

/* ===== REELS SECTION ===== */
.reels-section {
  padding: 0px 0px 80px 0px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  overflow: hidden;
}

/* ROW WRAPPER */
.reel-wrapper {
  width: 100%;
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.justify-right {
  justify-content: right;
}

/* ROW */
.reel-row {
  display: flex;
  width: max-content;
  gap: 30px;
  transition: transform 0.1s linear;
}

/* ===== REELS TEXT (LIKE WHAT WE DO) ===== */
.reels-text {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.reels-desc {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.75;
}


/* REEL ITEM */
.reel {
  min-width: 280px;
  height: 460px;
  background: #1f1f1f;
  border-radius: 20px;
  border: 1px solid rgba(252, 35, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
}

.reel video {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* second row color */
.row-two .reel {
  border-color: rgba(0, 170, 255, 0.4);
}

.border-radius-circle {
  border-radius: 50%;
}

/* ===== MOBILE REELS LAYOUT ===== */
@media (max-width: 767px) {
  .reels-text {
    margin: 0 auto 5px;
  }

  .reels-section {
    gap: 40px;
    padding-bottom: 40px;
  }

  .reel-wrapper {
    overflow: visible;
    /* allow wrapping */
  }

  .reel-row {
    padding: 0px 10px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    transform: none !important;
    /* disable scroll animation */
  }

  .reel {
    width: calc(50% - 8px);
    /* 2 reels per row */
    min-width: unset;
    height: 320px;
  }

  .reel video {
    height: 100%;
  }
}


/* spacer for demo */
.spacer {
  height: 400px;
}

/* ===== ABOUT US SECTION ===== */
.about-us {
  padding: 100px 80px;
  background: var(--black);
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
}

/* ===== HEADING ===== */
.about-wrapper h2 {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 60px;

  opacity: 0;
  transform: translateY(40px);
}

/* ===== LEFT CONTENT ===== */
.about-left {
  flex: 1.3;
}

.about-left p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 720px;

  opacity: 0;
  transform: translateY(40px);
}

.about-left span {
  color: var(--orange);
}

.about-left strong {
  color: var(--white);
  font-weight: 500;
}

/* ===== RIGHT BOXES ===== */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-box {
  padding: 36px;
  background: #1f1f1f;
  border-radius: 20px;
  border: 1px solid rgba(252, 35, 0, 0.35);

  opacity: 0;
  transform: translateX(120px);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateX(0) translateY(-6px);
}

.about-box h3 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--orange);
}

.about-box span {
  font-size: 14px;
  opacity: 0.7;
}

/* ===== ACTIVE STATE (animation triggers) ===== */
.about-us.active h2 {
  animation: fadeUp 0.5s ease forwards;
}

.about-us.active .about-left p:nth-child(1)
/* ,
.what-we-do.active .container .section-title  */

  {
  animation: fadeUp 0.5s ease forwards 0.3s;
}

.about-us.active .about-left p:nth-child(2) {
  animation: fadeUp 0.5s ease forwards 0.6s;
}

.about-us.active .about-left p:nth-child(3) {
  animation: fadeUp 0.5s ease forwards 0.9s;
}

.about-us.active .about-box:nth-child(1) {
  animation: slideRight 0.5s ease forwards 0.2s;
}

.about-us.active .about-box:nth-child(2)

/* ,
.what-we-do.active .container .cards-wrapper .card:nth-child(1),
.what-we-do.active .container .cards-wrapper .card:nth-child(2),
.what-we-do.active .container .cards-wrapper .card:nth-child(3),
.what-we-do.active .container .cards-wrapper .card:nth-child(4)  */
  {
  animation: slideRight 0.5s ease forwards 0.4s;
}

.about-us.active .about-box:nth-child(3)

/*,
 .what-we-do.active .container .cards-wrapper .card:nth-child(5),
.what-we-do.active .container .cards-wrapper .card:nth-child(6),
.what-we-do.active .container .cards-wrapper .card:nth-child(7),
.what-we-do.active .container .cards-wrapper .card:nth-child(8)*/
  {
  animation: slideRight 0.5s ease forwards 0.6s;
}

.grid-images.active,
.graphic-info.active,
.ownit-images.active,
.souly-text.active {
  animation: slideLeft 0.5s ease forwards 0.6s;
}

.grid-text.active,
.graphic-grid.active,
.ownit-text.active,
.souly-board.active {
  animation: slideRight 0.5s ease forwards 0.6s;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }

  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* RESPONSIVE */
@media (max-width: 1100px) {
  .about-content {
    flex-direction: column;
    gap: 60px;
  }

  .about-wrapper h2 {
    font-size: 56px;
  }

  .about-left p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  #rowTwo {
    display: none;
  }

  .about-us {
    padding: 80px 24px;
  }

  .about-wrapper h2 {
    font-size: 42px;
  }
}

/* ===== WHAT WE DO SECTION ===== */

/* .what-we-do .section-title {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
} */

.card {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

/* .what-we-do.active .section-title {
  opacity: 1;
  transform: translateY(0);
} */

.what-we-do.active .card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.what-we-do.active .card:nth-child(1) {
  transition-delay: 0.2s;
}

.what-we-do.active .card:nth-child(2) {
  transition-delay: 0.4s;
}

.what-we-do.active .card:nth-child(3) {
  transition-delay: 0.6s;
}

.what-we-do.active .card:nth-child(4) {
  transition-delay: 0.8s;
}

.what-we-do.active .card:nth-child(5) {
  transition-delay: 1s;
}

.what-we-do.active .card:nth-child(6) {
  transition-delay: 1.2s;
}

.what-we-do.active .card:nth-child(7) {
  transition-delay: 1.4s;
}

.what-we-do.active .card:nth-child(8) {
  transition-delay: 1.6s;
}

.card .icon {
  transform: scale(0.85);
  transition: transform 0.5s ease;
}

.what-we-do.active .card .icon {
  transform: scale(1);
}


.what-we-do {
  padding: 0px 80px 80px 80px;
  background: var(--black);
  /* dark background */
  color: var(--white);
  /* main text white */
  overflow: hidden;
}

.what-we-do .section-title,
.reels-text .section-title {
  border-bottom: 1px solid var(--white);
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 70px;
  letter-spacing: 2px;
  color: var(--white);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.what-we-do .section-title span,
.reels-text .section-title span {
  color: var(--orange);
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.card {
  flex: 1 1 260px;
  background: #1f1f1f;
  /* dark card background */
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(252, 35, 0, 0.35);
  /* orange border */
  box-shadow: 0 10px 30px rgba(252, 35, 0, 0.1);
  /* subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(252, 35, 0, 0.2);
}

.card .icon {
  font-size: 36px;
  color: var(--orange);
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.card h3 span {
  color: var(--orange);
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .what-we-do .section-title {
    font-size: 56px;
  }

  .cards-wrapper {
    gap: 30px;
  }

  .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .what-we-do .section-title,
  .reels-text .section-title {
    font-size: 37px;
  }
}

/* ===== SMILECRAFT GRID + TEXT SECTION ===== */
.grid-text-section {
  padding: 50px 0;
  background: var(--black);
  color: var(--white);
}

.grid-text-wrapper {
  max-width: 1500px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ===== LEFT GRID IMAGES ===== */
.grid-images {
  flex: 1.4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  /* height bada kar diya */
  opacity: 0;
  gap: 16px;
  transform: translateX(-120px);
}

.grid-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ===== RIGHT TEXT ===== */
.grid-text {
  opacity: 0;
  flex: 1;
}

.grid-text h2 {
  font-size: 42px;
  margin-bottom: 26px;
}

.grid-text h2 span {
  border-bottom: 1px solid var(--white);
  color: var(--orange);
}

.grid-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 20px;
  max-width: 460px;
}

.grid-text .highlight {
  color: #ffffff;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .grid-text-wrapper {
    padding: 0px;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .grid-images {
    grid-template-columns: repeat(3, 1fr);
    /* same 3 columns for tablets */
    grid-auto-rows: 200px;
  }
}

@media (max-width: 600px) {
  .grid-images {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 165px;
  }

  .grid-images img {
    object-fit: contain;
  }
}


/* ===== GRAPHIC DESIGN SECTION ===== */

.graphic-showcase {
  padding: 120px 8%;
  background: #161616;
  color: #f7f7f7;
}

.graphic-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 70px;
}

/* LEFT INFO */
.graphic-info {
  flex: 1;
  opacity: 0;
}

.graphic-showcase .section-title {
  border-bottom: 1px solid var(--white);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: var(--white);
}

.graphic-showcase .section-title span {
  color: var(--orange);
}

/* RIGHT GRID */
.graphic-grid {
  flex: 1.4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: 0;
}

.graphic-card {
  border-radius: 18px;
  overflow: hidden;
  background: #1f1f1f;
  transition: all 0.4s ease;
}

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

.graphic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(252, 35, 0, 0.25);
}

/* LEFT CONTENT */
.graphic-info {
  max-width: 460px;
}

/* TAG */
.graphic-tag {
  display: inline-block;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(252, 35, 0, 0.45);
  border-radius: 30px;
  margin-bottom: 26px;
}

/* TITLE */
.graphic-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: var(--white);
}

.graphic-title span {
  border-bottom: 1px solid var(--white);
  color: var(--orange);
}

/* PARAGRAPH */
.graphic-text {
  font-size: 15.5px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 18px;
}

/* HIGHLIGHT LINE */
.graphic-highlight {
  margin-top: 26px;
  font-weight: 600;
  color: var(--orange);
  font-size: 15px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .graphic-showcase .section-title {
    font-size: 48px;
  }

  .graphic-layout {
    flex-direction: column;
    gap: 50px;
  }
}

@media (max-width: 480px) {
  .graphic-showcase .section-title {
    font-size: 38px;
  }

  .graphic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== OWNIT SECTION (Burger Style with 4 per row) ===== */
.ownit-section {
  padding: 120px 8%;
  background: var(--black);
  /* same dark background as burger section */
  color: #fff;
}

.ownit-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1900px;
  margin: 0 auto;
}

/* LEFT TEXT */
.ownit-text {
  opacity: 0;
  flex: 1;
  max-width: 500px;
  color: var(--orange);
  /* burger highlight color */
}

.ownit-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 900;
  color: var(--white);
}

.ownit-text h2 span {
  border-bottom: 1px solid var(--white);
  color: var(--orange);
}

.ownit-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}

/* RIGHT IMAGES GRID */
.ownit-images {
  opacity: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 per row instead of 3 */
  gap: 25px;
}

.ownit-images img {
  width: 100%;
  height: auto;
  min-height: 180px;
  border-radius: 20px;
  /* same as burger cards */
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ownit-images img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(252, 35, 0, 0.2);
}

/* Responsive adjustments (same as burger cards) */
@media (max-width: 1100px) {
  .ownit-images {
    grid-template-columns: repeat(3, 1fr);
    /* 3 per row on smaller screens */
  }
}

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

  .ownit-section {
    padding: 60px 20px;
  }

  .ownit-images {
    grid-template-columns: repeat(2, 1fr);
    /* 2 per row on tablets */
  }
}



/* Section base */

/* When section becomes active */
.cover-design-section .cover-item.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* Stagger effect */
.cover-row:nth-child(2) .cover-item {
  transition-delay: 0.15s;
}

.cover-row:nth-child(3) .cover-item {
  transition-delay: 0.3s;
}

.cover-row:nth-child(4) .cover-item {
  transition-delay: 0.45s;
}

/* Image polish */
.cover-item img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

/* Hover effect */
.cover-item:hover img {
  transform: scale(1.05);
}

.cover-design-section {
  overflow: hidden;
  padding: 80px 20px;
  background: var(--black);
  color: #fff;
}

.cover-design-section h2 {
  border-bottom: 1px solid var(--white);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 72px;
  margin-bottom: 60px;
  font-weight: 900;
  color: #fff;
}

.cover-design-section h2 span {
  color: var(--orange);
  padding-bottom: 4px;
}

.orange-bg {
  background: linear-gradient(135deg, #ff6a00, #ff3d00);
  padding: 60px;
  border-radius: 60px;
}

.label {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.9;
  text-align: center;
}

/* Rows for covers */
.cover-row {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 50px;
}

/* Left column – 32% */
.cover-item.left {
  flex: 0 0 32%;
  border-radius: 20px;
  overflow: hidden;
  transform: translateX(-80px) scale(0.95);
}

/* Right column – 66% */
.cover-item.right {
  flex: 0 0 66%;
  border-radius: 20px;
  overflow: hidden;
  transform: translateX(80px) scale(0.95);
}

/* Images */
.cover-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Hover effect */
.cover-item {

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.9s ease;
}

.cover-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(252, 35, 0, 0.2);
}

/* Ensure BOTH LEFT images are same height */
.cover-row {
  align-items: stretch;
}



@media (max-width: 991px) {
  .orange-bg {
    padding: 40px;
    border-radius: 40px;
  }

  .cover-row {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .cover-item img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .orange-bg {
    padding: 25px;
    border-radius: 30px;
  }

  .label {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cover-row {
    flex-direction: column;
    gap: 20px;
  }

  .cover-item.left,
  .cover-item.right {
    flex: 0 0 100%;
  }

  .cover-design-section h2 {
    font-size: 45px;
  }
}


/* =================================
   Souly Branding Section
================================= */
/* ===============================
   SOULY BRANDING SECTION
================================ */
.souly-branding {
  padding: 100px 0;
  background: #161616;
  color: #f7f7f7;
  font-family: Arial, sans-serif;
}

.souly-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 70px;
  align-items: center;
}

/* ===============================
   LEFT TEXT
================================ */
.souly-text {
  opacity: 0;
  flex: 1;
}

.souly-text h2 {
  border-bottom: 1px solid var(--white);
  width: fit-content;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 26px;
}

.souly-text h2 span {
  color: #fc2300;
}

.souly-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #dcdcdc;
  max-width: 480px;
  margin-bottom: 20px;
}

.souly-text .highlight {
  color: #ffffff;
  font-weight: 500;
}

/* ===============================
   RIGHT BRANDING BOARD
================================ */
.souly-board {
  opacity: 0;
  flex: 1.2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

/* BIG MAIN IMAGE */
.board-main {
  display: flex;
}

.board-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff4db;
  padding: 26px;
  border-radius: 26px;
}

/* RIGHT STACK */
.board-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.board-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff4db;
  padding: 26px;
  border-radius: 26px;
  aspect-ratio: 4 / 3;
}

/* ===============================
   HOVER EFFECT
================================ */
.souly-board img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.souly-board img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .souly-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .souly-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .souly-branding {
    padding: 70px 0;
  }

  .souly-text h2 {
    font-size: 34px;
  }
}


/* ===== KOVA BRANDING SECTION ===== */
.kova-branding {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.kova-wrapper {
  max-width: 1500px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ===== LEFT IMAGE AREA ===== */
.kova-images {
  flex: 1.4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}


/* GRID IMAGES */
.kova-grid {
  display: contents;
  /* children follow parent grid */
}



/* Right side stacked images */
.kova-grid img:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  /* top right */
}

.kova-grid img:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  /* below top right */
}

/* Bottom row images */
.kova-grid img:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.kova-grid img:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.kova-grid img:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

.kova-grid img:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

.kova-grid img:nth-child(7) {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.kova-grid img:nth-child(8) {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}

.kova-grid img:nth-child(9) {
  grid-column: 3 / 4;
  grid-row: 4 / 5;
}

.kova-grid img:nth-child(10) {
  grid-column: 1 / 2;
  grid-row: 5 / 6;
}

.kova-grid img:nth-child(11) {
  grid-column: 2 / 3;
  grid-row: 5 / 6;
}

.kova-grid img:nth-child(12) {
  grid-column: 3 / 4;
  grid-row: 5 / 6;
}

/* All images styling */
.kova-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}


/* ===== RIGHT TEXT ===== */
.kova-text {
  flex: 1;
  margin-top: 70px;
}

.kova-text h2 {
  border-bottom: 1px solid var(--white);
  width: fit-content;
  font-size: 42px;
  margin-bottom: 26px;
}

.kova-text h2 span {
  color: var(--orange);
}

.kova-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #dcdcdc;
  margin-bottom: 20px;
  max-width: 460px;
}

.kova-text .highlight {
  color: #ffffff;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .kova-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .kova-images {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  /* Reset big image and right images for smaller screens */
  .kova-image.big,
  .kova-grid img {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ===== MOBILE LAYOUT ===== */
@media (max-width: 600px) {
  .kova-images {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 195px;
  }

  /* First image full width */
  .kova-grid img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  /* All other images: normal 2-column flow */
  .kova-grid img:nth-child(n + 2) {
    grid-column: auto;
    grid-row: auto;
  }
}





/* ===== GRAPHIC DESIGN SECTION ===== */
.stack-wrapper {
  position: relative;
}

/* TAB */
.stack-wrapper .tab {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin: 20px 0px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* DEPTH EFFECT */
.stack-wrapper .tab.active {
  transform: scale(1);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
}

/* COLORS */
.stack-wrapper .tab-1 {
  z-index: 1;
}

.stack-wrapper .tab-2 {
  top: 50px;
  z-index: 2;
}

.stack-wrapper .tab-3 {
  top: 100px;
  z-index: 3;
}

.stack-wrapper .tab-4 {
  top: 150px;
  z-index: 4;
}

.stack-wrapper .tab-5 {
  top: 200px;
  z-index: 5;
}

.graphic-design {
  padding: 100px 80px;
  background: var(--black);
  ;
  /* dark background */
  color: var(--white);
  /* overflow: hidden; */
}

.graphic-design .section-title {
  border-bottom: 1px solid var(--white);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 2px;
}

.graphic-design .section-title span {
  color: var(--orange);
}

.design-card {
  flex: 1 1 260px;
  background: #1f1f1f;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(252, 35, 0, 0.35);
  box-shadow: 0 10px 30px rgba(252, 35, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
}

.design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(252, 35, 0, 0.2);
}

/* Placeholder image box like reels */
.design-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  background: #1a1a1a;
  /* placeholder dark gray */
  border-radius: 16px;
  border: 1px solid rgba(252, 35, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 24px;
  text-align: center;
}

.design-image img {
  height: 100%;
  max-height: 730px;
  width: 100%;
  object-fit: fill;
  border-radius: 16px;
}

/* Card titles and descriptions */
.design-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.design-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .graphic-design .section-title {
    font-size: 56px;
  }

  .design-cards-wrapper {
    gap: 30px;
  }

  .design-card h3 {
    font-size: 20px;
  }

  .design-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .design-cards-wrapper {
    flex-direction: column;
    gap: 25px;
  }
}

/* ===== CONTACT OVERLAY ===== */
/* ===== CONTACT OVERLAY (THEME MATCHED) ===== */
.contact-section {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

.contact-section:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0 80px;
}

/* LEFT */
.contact-left {
  flex: 1.2;
}

.contact-left h2 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.contact-left h2 span {
  color: var(--orange);
}

.contact-left p {
  margin: 20px 0 40px;
  font-size: 16px;
  opacity: 0.7;
  max-width: 420px;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  background: #1f1f1f;
  border: 1px solid rgba(252, 35, 0, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--white);
  margin-bottom: 18px;
  font-size: 14px;
}

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

.contact-btn {
  background: var(--orange);
  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(252, 35, 0, 0.45);
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.contact-left small {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  opacity: 0.5;
}

/* RIGHT */
.contact-right {
  flex: 0.8;
  background: #1a1a1a;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(252, 35, 0, 0.3);
}

.contact-right h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--orange);
}

.contact-info {
  margin-bottom: 22px;
}

.contact-info span {
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 16px;
  opacity: 0.8;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: var(--white);
  text-decoration: none;
}

.close-btn:hover {
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 50px;
    padding: 80px 30px;
  }

  .contact-left h2 {
    font-size: 48px;
  }
}

.contact-section {
  position: fixed;
  inset: 0;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

/* Jab CONTACT pe click ho */
.contact-section:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Background watermark */
.contact-bg-text {
  position: absolute;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  user-select: none;
  white-space: nowrap;
}

/* Contact card */
.contact-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 60px;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
  max-width: 450px;
  width: 90%;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: #fff;
  text-decoration: none;
  z-index: 3;
}

.close-btn:hover {
  color: #fc2300;
}

.contact-item span {
  color: #fc2300;
  font-weight: bold;
}


/* ===== FOOTER ===== */
.footer {
  padding: 80px 80px 40px;
  background: #111;
  /* same dark background */
  color: var(--white);
  overflow: hidden;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

/* LEFT */
.footer-left h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-left h2 span {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

/* RIGHT */
.footer-right {
  display: flex;
  gap: 200px;
  flex-wrap: wrap;
}

/* Links */
.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

/* Contact */
.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(252, 35, 0, 0.3);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 30px 30px;
  }

  .footer-left h2 {
    font-size: 28px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 16px;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 13px;
  }
}



/* final responsive desing */
/* ================== GLOBAL FIXES ================== */
img,
video {
  max-width: 100%;
  height: auto;
}

/* section {
  overflow-x: hidden;
} */

/* ================== NAVBAR ================== */
@media (max-width: 900px) {
  .navbar ul {
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .navbar ul {
    gap: 30px;
    font-size: 12px;
  }
}

/* ================== INTRO SECTION ================== */
@media (max-width: 1100px) {
  .intro {
    padding: 180px 40px;
  }

  .intro-left h1 {
    font-size: 72px;
  }

  .intro-right img {
    width: 340px;
  }
}

@media (max-width: 900px) {
  .intro {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .intro-left p {
    max-width: 500px;
    margin: 30px auto 0;
  }
}

@media (max-width: 600px) {
  .intro {
    padding: 140px 24px;
  }

  .intro-left h1 {
    font-size: 48px;
  }

  .intro-left p {
    font-size: 16px;
  }

  .intro-right img {
    width: 260px;
  }
}

/* ================== REELS ================== */
@media (max-width: 768px) {
  /* .reel {
    min-width: 220px;
    height: 360px;
  } */
}

/* ================== ABOUT US ================== */
@media (max-width: 1100px) {
  .about-us {
    padding: 80px 40px;
  }

  .about-wrapper>div {
    flex-direction: column;
    gap: 60px !important;
  }

  .about-right {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .about-wrapper h2 {
    margin-bottom: 20px;
    font-size: 42px;
    text-align: center;
  }

  .about-left p {
    font-size: 16px;
  }

  .about-right {
    flex-direction: column;
  }
}

/* ================== WHAT WE DO ================== */
@media (max-width: 1100px) {
  .what-we-do {
    padding: 0 40px 80px;
  }
}

@media (max-width: 768px) {
  .what-we-do .section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .cards-wrapper {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .what-we-do .section-title {
    font-size: 38px;
  }

  .card {
    padding: 28px 22px;
  }
}

/* ================== GRAPHIC DESIGN ================== */
@media (max-width: 1100px) {
  .graphic-design {
    padding: 80px 15px;
  }

  /* .design-image {
    height: 70vh;
  } */
}

@media (max-width: 768px) {
  .graphic-design .section-title {
    font-size: 35px;
    margin-bottom: 35px;
  }

  /* .design-image {
    height: 60vh;
  } */
}

@media (max-width: 480px) {
  /* .design-image {
    height: 50vh;
  } */
}

/* ================== CONTACT OVERLAY ================== */
@media (max-width: 1100px) {
  .contact-wrapper {
    gap: 60px;
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 100px 30px;
  }

  .contact-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-left h2 {
    font-size: 42px;
  }

  .contact-right {
    padding: 30px;
  }
}

/* ================== FOOTER ================== */
@media (max-width: 1100px) {
  .footer {
    padding: 60px 40px 30px;
  }
}

@media (max-width: 768px) {
  .design-image {
    min-height: auto;
  }

  .footer-wrapper {
    gap: 40px;
  }

  .footer-left h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 24px 30px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}


/* ================= MOBILE ONLY ================= */
@media (max-width: 768px) {
  .contact-section {
    overflow-y: scroll;
  }

  /* Initial hidden state for all cards */
  .what-we-do .card {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* Animate cards when section is active */
  .what-we-do.active .card {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation for cards */
  .what-we-do.active .card:nth-child(1) {
    transition-delay: 0.1s;
  }

  .what-we-do.active .card:nth-child(2) {
    transition-delay: 0.2s;
  }

  .what-we-do.active .card:nth-child(3) {
    transition-delay: 0.4s;
  }

  .what-we-do.active .card:nth-child(4) {
    transition-delay: 0.6s;
  }

  .what-we-do.active .card:nth-child(5) {
    transition-delay: 1s;
  }

  .what-we-do.active .card:nth-child(6) {
    transition-delay: 1.5s;
  }

  .what-we-do.active .card:nth-child(7) {
    transition-delay: 2s;
  }

  .what-we-do.active .card:nth-child(8) {
    transition-delay: 2.5s;
  }

  /* Optional: Individual card active class (if JS adds it) */
  .what-we-do .card.active {
    opacity: 1;
    transform: translateX(0);
  }
}





/* thumbnail section  */
.thumbnail-section {
  padding: 80px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.thumbnail-section .section-title {
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 60px;
}

.thumbnail-section .section-title span {
  color: var(--orange);
}

/* Layout */
.thumbnail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Thumbnail Card */
.thumb-item {
  flex: 0 0 calc(50% - 20px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.9s ease;
}

/* Images */
.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Overlay */
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover */
.thumb-item:hover img {
  transform: scale(1.08);
}

.thumb-item:hover .thumb-overlay {
  opacity: 1;
}

/* Animations */
.thumb-item:nth-child(even) {
  transform: translateX(100px);
}

.thumb-item:nth-child(odd) {
  transform: translateX(-100px);
}

.thumb-item.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .thumbnail-section {
    padding: 60px 20px;
  }

  .thumbnail-section .section-title {
    font-size: 46px;
  }

  .thumb-item {
    flex: 0 0 100%;
  }
}



/* reel on mobile */
/* Reel modal */
.reel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Active */
.reel-modal.active {
  display: flex;
}

/* Video */
.reel-modal video {
  width: 90%;
  max-height: 90vh;
  border-radius: 14px;
}

/* Close button */
.reel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Desktop: keep hover behavior */
@media (min-width: 769px) {
  /* .reel-modal {
    display: none !important;
  } */
}

/* .footer-contact {
  max-width: 1200px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
} */

.contact-right a {
  text-decoration: none;
  color: #ffffff;
}

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

.footer-contact a p {
  display: inline;
  color: #ffffff !important;
  margin-left: 5px;
}

/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
  padding: 80px 0;
  background-color: #f7f7f7;
  text-align: center;
}

.testimonial-section .section-title {
  margin-bottom: 50px;
}

/* Wrapper */
/* .testimonial-wrapper {
  overflow: hidden;
  important for scroll animation
  display: flex;
  flex-direction: column;
  gap: 40px;
} */

/* Rows */
.testimonial-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card */
.testimonial-card {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* min-width: 320px; */
  max-width: 400px;
  flex: 1 1 300px;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay */
.testimonial-card:nth-child(1) {
  transition-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
  transition-delay: 0.4s;
}

.testimonial-card:nth-child(3) {
  transition-delay: 0.6s;
}

.testimonial-card:nth-child(4) {
  transition-delay: 0.8s;
}

.testimonial-card:nth-child(5) {
  transition-delay: 1.0s;
}

.testimonial-card:nth-child(6) {
  transition-delay: 1.2s;
}

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

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.client-name {
  font-weight: 600;
  color: #ff4c4c;
  display: block;
}

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

@media (max-width: 767px) {

  .testimonial-wrapper {
    overflow: visible;
    flex-direction: column;
  }

  .testimonial-row {
    flex-direction: column;
    /* stack cards */
    transform: none !important;
    /* remove animation */
  }

  .testimonial-card {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
}



.reel {
  position: relative;
  overflow: hidden;
}

/* Loader overlay */
.reel-loader {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Spinner */
.reel-loader::after {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #aaa;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hide video until loaded */
.reel video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .active {
    opacity: 1 !important;
    transform: none !important;
  }
}