body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 12px 40px;
  background: rgba(0, 0, 0, 0.95);
}

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: beige;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff4d00;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ff4d00;
  transition: width 0.3s ease;
}

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

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  color: #ff4d00;
  text-align: center;
  letter-spacing: 1px;
  border-right: 3px solid #ff4d00;
  white-space: nowrap;
  overflow: hidden;
  width: fit-content;
  margin: auto;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* SECTION TITLE */
.video-txt {
  text-align: center;
  margin-bottom: 20px;
}

.video-title {
  font-size: 32px;
  color: #ff4d00;
  margin-bottom: 60px;
  letter-spacing: 1px;
  position: relative;
}

.video-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d00;
  margin: 12px auto 0;
}

/* GRID BASE */
.video-grid-1,
.video-grid-2,
.video-grid-3,
.video-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: center;
  gap: 28px;

  position: relative;
  padding: 60px 0;
  border-radius: 20px;
  margin: 40px auto;
  width: 90%;
  overflow: hidden;
}

/* PREMIUM BACKGROUNDS (BALANCED) */

/* ROW 1 */
.video-grid-1 {
  background: radial-gradient(circle at top left, rgba(255, 77, 0, 0.08), transparent 60%),
              #0b0b0b;
}

/* ROW 2 */
.video-grid-2 {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
}

/* ROW 3 */
.video-grid-3 {
  background: linear-gradient(180deg, rgba(255,77,0,0.05), transparent 70%);
}

/* ROW 4 */
.video-grid-4 {
  background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(255,77,0,0.05));
}

/* SUBTLE BORDER */
.video-grid-1::before,
.video-grid-2::before,
.video-grid-3::before,
.video-grid-4::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: black;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.15);
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTROLS */
.controls {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 12px;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.video-card:hover .controls {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTONS */
.control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);

  cursor: pointer;
  transition: all 0.3s ease;
}

.control-btn svg {
  width: 18px;
  height: 18px;
}

.control-btn:hover {
  background: #ff4d00;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.5);
}

/* FOOTER */
.footer {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
  font-size: 28px;
  color: #ff4d00;
  margin-bottom: 30px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: beige;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  color: beige;
}

.contact-icon:hover {
  border-color: #ff4d00;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.6);
}

.contact-icon:hover svg path,
.contact-icon:hover svg circle,
.contact-icon:hover svg rect {
  stroke: #ff4d00;
  fill: #ff4d00;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* EXTRA SPACING */
.videos {
  padding-bottom: 60px;
}
/* ===============================
   MOBILE RESPONSIVE (TABLETS)
   =============================== */
@media (max-width: 1024px) {

  /* HEADER */
  .header {
    padding: 15px 25px;
  }

  .nav {
    gap: 20px;
  }

  /* HERO */
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  /* VIDEO GRID */
  .video-grid-1,
  .video-grid-2,
  .video-grid-3,
  .video-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 95%;
  }

  .video-card {
    max-width: 180px;
  }
}


/* ===============================
   MOBILE RESPONSIVE (PHONES)
   =============================== */
@media (max-width: 768px) {

  /* HEADER STACK */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav {
    gap: 15px;
  }

  /* HERO */
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 26px;
    white-space: normal; /* prevent overflow */
    border-right: none; /* remove typing cursor line */
  }

  /* SECTION TITLE */
  .video-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  /* GRID → 2 COLUMNS */
  .video-grid-1,
  .video-grid-2,
  .video-grid-3,
  .video-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 10px;
  }

  .video-card {
    max-width: 100%;
  }

  /* CONTROLS ALWAYS VISIBLE (no hover on mobile) */
  .controls {
    opacity: 1;
    transform: none;
  }

  /* BUTTON SIZE SMALLER */
  .control-btn {
    width: 36px;
    height: 36px;
  }

  .control-btn svg {
    width: 16px;
    height: 16px;
  }

  /* FOOTER */
  .footer {
    padding: 60px 15px;
  }

  .footer-title {
    font-size: 22px;
  }

  .contact-links {
    gap: 18px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    color: beige;
  }
}


/* ===============================
   SMALL PHONES (EXTRA FIX)
   =============================== */
@media (max-width: 480px) {

  /* HERO */
  .hero h1 {
    font-size: 22px;
  }

  /* GRID → 1 COLUMN */
  .video-grid-1,
  .video-grid-2,
  .video-grid-3,
  .video-grid-4 {
    grid-template-columns: 1fr;
  }

  /* CENTER CARDS */
  .video-card {
    margin: 0 auto;
    max-width: 240px;
  }
}
/* ===============================
   FOOTER LAYOUT (DESKTOP)
   =============================== */

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

/* LEFT SIDE */
.footer-left {
  text-align: left;
}

/* SERVICES LIST */
.services-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.services-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: beige;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.services-list li:hover {
  color: #ff4d00;
  transform: translateX(5px);
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* keeps it right aligned */
  gap: 20px;
}
.contact-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* ===============================
   RESPONSIVE (TABLET)
   =============================== */

@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .services-list li:hover {
    transform: none;
  }
}

/* ===============================
   SMALL MOBILE
   =============================== */

@media (max-width: 480px) {

  .footer-title {
    font-size: 22px;
  }

  .services-list li {
    font-size: 14px;
  }
}
.footer-right {
  align-items: center;
}

.contact-links {
  justify-content: center;
}