/* =======================================
   GLOBAL
======================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #020617;
  color: #e8e8e8;
  line-height: 1.6;
}

/* =======================================
   NAVBAR
======================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(3, 7, 18, 0.9),
    rgba(15, 52, 96, 0.9),
    rgba(3, 7, 18, 0.9)
  );
  backdrop-filter: blur(10px);
  padding: 10px 60px;
  border-bottom: 1px solid #0b1738;
  height: 85px;
  position: relative;
  z-index: 1000;
}

.logo img {
  height: 115px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5c518;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* =======================================
   LATEST VIDEOS
======================================= */
.youtube-section {
  padding: 25px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.youtube-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 15px 5px;
  scroll-behavior: smooth;
}

.youtube-scroll::-webkit-scrollbar {
  height: 6px;
}

.youtube-scroll::-webkit-scrollbar-thumb {
  background: #1e3a8a;
  border-radius: 10px;
}

.video-card-h {
  min-width: 330px;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.video-card-h:hover {
  transform: translateY(-4px);
}

.video-card-h iframe {
  width: 100%;
  height: 190px;
  border: none;
}

.video-card-h h3 {
  font-size: 15px;
  padding: 12px;
  color: #fff;
  font-weight: 500;
}

/* =======================================
   FEATURED VIDEOS
======================================= */
.video-section {
  padding: 40px 20px;
}

.category-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.category-slider::-webkit-scrollbar {
  height: 6px;
}

.category-slider::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 10px;
}

.cat {
  padding: 8px 16px;
  background: #1e293b;
  border: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.cat:hover {
  background: #334155;
}

.cat.active {
  background: #2563eb;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  background: #0f172a;
  padding: 15px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: none;
}

.video-title {
  font-size: 16px;
  margin-top: 8px;
  font-weight: 500;
  color: #fff;
}

/* =======================================
   MOBILE RESPONSIVE
======================================= */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 70px;
  }

  .nav-links {
    display: none;
  }

  .youtube-scroll {
    padding: 10px;
  }

  .video-card-h {
    min-width: 260px;
  }
}
@media (max-width: 768px) {

  /* Navbar padding */
  .navbar {
    padding: 15px 20px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile menu */
  .nav-links {
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: #030a1a;
    flex-direction: column;
    gap: 25px;
    padding: 25px 0;
    display: none;
    text-align: center;
    border-top: 1px solid #0b1738;
  }

  .nav-links.open {
    display: flex;
  }

  /* Logo resize */
  .logo img {
    height: 95px;
  }

  /* Latest videos scroll */
  .youtube-scroll {
    padding: 10px 5px;
    gap: 14px;
  }

  .video-card-h {
    min-width: 260px;
  }

  .video-card-h iframe {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card iframe {
    height: 190px;
  }
}
.youtube-scroll {
  -webkit-overflow-scrolling: touch;
}
/* =======================
         FOOTER
=========================== */

.bp-footer {
  background: #020B25; /* Same as your website's dark theme */
  padding: 60px 20px;
  color: #e2e8f0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.bp-footer-section h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #60a5fa; /* Soft Blue Accent */
  font-weight: 600;
}

.bp-footer-section ul {
  list-style: none;
  padding: 0;
}

.bp-footer-section ul li {
  margin-bottom: 12px;
}

.bp-footer-section ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 16px;
  transition: 0.2s;
}

.bp-footer-section ul li a i {
  margin-right: 10px;
  color: #60a5fa; /* Matching blue accent */
}

.bp-footer-section ul li a:hover {
  color: white;
  transform: translateX(4px);
}

.bp-footer-section p {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .bp-footer-container {
    flex-direction: column;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo on LEFT */
  .logo {
    order: 1;
  }

  /* Hamburger on RIGHT */
  .hamburger {
    order: 2;
  }
}


/* =======================================
   CATEGORY ROW LAYOUT (NETFLIX STYLE)
======================================= */

.category-row {
  margin-bottom: 45px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.category-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.scroll-btn {
  background: #1e3a8a;
  border: none;
  color: white;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
}

.scroll-btn:hover {
  background: #2563eb;
}

.category-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.category-scroll::-webkit-scrollbar {
  height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 10px;
}

.category-scroll .video-card-h {
  min-width: 320px;
}

@media (max-width: 768px) {
  .category-scroll .video-card-h {
    min-width: 260px;
  }
}

/* =======================================
   NETFLIX ROW STYLE (FINAL)
======================================= */

.category-row {
  position: relative;
  margin-bottom: 55px;
}

.row-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
}

/* Netflix arrow buttons */
.nav-btn {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  background: rgba(2, 6, 23, 0.85);
  border: none;
  color: white;
  font-size: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.category-row:hover .nav-btn {
  opacity: 1;
}

.nav-btn:hover {
  background: rgba(37, 99, 235, 0.95);
}

.nav-btn.left {
  left: -22px;
}

.nav-btn.right {
  right: -22px;
}

/* Force SAME card size */
.video-card-h {
  min-width: 320px;
  max-width: 320px;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card-h:hover {
  transform: scale(1.06);
  z-index: 3;
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}

.video-card-h iframe {
  width: 100%;
  height: 180px;
  display: block;
}

.video-card-h h3 {
  font-size: 14px;
  padding: 10px 12px;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
}

/* Mobile = swipe only (no arrows) */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }

  .video-card-h {
    min-width: 260px;
    max-width: 260px;
  }
}
/* ===== Row Heading Fix ===== */
.row-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  padding-left: 6px; /* aligns with cards */
  letter-spacing: 0.3px;
}
.category-row {
  position: relative;
  margin-bottom: 65px; /* more breathing room */
}
/* ===== Netflix Card Size (Responsive) ===== */
.video-card-h {
  min-width: 360px;
  max-width: 360px;
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card-h:hover {
  transform: scale(1.06);
  z-index: 3;
  box-shadow: 0 25px 45px rgba(0,0,0,0.6);
}

.video-card-h iframe {
  width: 100%;
  height: 200px;
  display: block;
}

.video-card-h h3 {
  font-size: 14px;
  padding: 12px 14px;
  line-height: 1.45;
  height: 48px;
  overflow: hidden;
}
/* ===== Mobile Netflix Cards ===== */
@media (max-width: 768px) {
  .video-card-h {
    min-width: 85vw;
    max-width: 85vw;
  }

  .video-card-h iframe {
    height: 190px;
  }

  .row-title {
    font-size: 20px;
    padding-left: 4px;
  }
}
/* =======================================
   NETFLIX THUMBNAIL PLAY STYLE
======================================= */

.video-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,6,23,0.6),
    rgba(2,6,23,0.1)
  );
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn::before {
  content: "";
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(37,99,235,0.9);
}

/* Mobile */
@media (max-width: 768px) {
  .video-thumb {
    height: 190px;
  }
}
/* =======================
   VIDEO SUGGESTION BOX
=========================== */

.suggest-box {
  background: linear-gradient(180deg, #020617, #030a1a);
  padding: 80px 20px;
  margin-top: 80px;
}

.suggest-container {
  max-width: 600px;
  margin: auto;
  background: #0f172a;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  text-align: center;
}

.suggest-container h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
}

.suggest-container p {
  color: #94a3b8;
  margin-bottom: 30px;
  font-size: 15px;
}

.suggest-container input,
.suggest-container textarea {
  width: 100%;
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
}

.suggest-container input:focus,
.suggest-container textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.suggest-container button {
  width: 100%;
  background: #f5c518;
  border: none;
  padding: 14px;
  border-radius: 12px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.suggest-container button:hover {
  background: #c0f484;
}

.form-msg {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #22c55e;
}



/* Footer Fix */


.bp-footer-section ul {
  list-style: none; /* Removes default bullets */
  padding: 0;       /* Removes default indentation */
  margin: 0;
}

.bp-footer-section li {
  margin-bottom: 12px; /* Adds vertical spacing between items */
}

.bp-footer-section a {
  display: flex;
  align-items: center;    /* Vertically aligns icon and text */
  text-decoration: none;
  color: inherit;         /* Adjust as needed for your theme */
}

.bp-footer-section i {
  width: 24px;            /* Gives icons a fixed container width */
  text-align: center;     /* Centers narrower icons (like LinkedIn) */
  margin-right: 10px;     /* Creates uniform spacing after the icon */
  font-size: 1.2rem;      /* Adjust icon size */
}
.form-msg {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

.form-msg.success {
  color: #22c55e;
}

.form-msg.error {
  color: #ef4444;
}
.suggest-container textarea {
  width: 100%;
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 16px;
  resize: none;
}