/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}


p {
  font-size: 15px;
  font-weight: 400;
}


/* Sticky Header */
header {
  position: sticky;
  top: 0;
  background-color: #F4F4F4;
  /* Light golden background */
  opacity: 0.9;
  z-index: 999;
  padding: 10px 0;
  text-align: center;
}


/* Navbar */
.navbar {
  padding: 0 !important;
}

.navbar-toggler {
  border: none;
  font-size: 1.2rem;
  padding: 6px 10px;
  margin-left: auto;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #ffc107 !important;
}

/* Mobile Navbar Styles */
@media (max-width: 767.98px) {
  .navbar-collapse {
    background-color: rgb(230, 225, 120);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav .nav-item {
    text-align: left;
    padding: 6px 0;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
  }

  .dropdown-menu {
    position: relative !important;
    float: none;
    background-color: transparent;
    border: none;
    padding-left: 15px;
  }

  .dropdown-menu .dropdown-item {
    padding: 6px 0;
    font-size: 15px;
  }
}

/* Animation */
@keyframes floatIn {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(10px);
  }
}

/* Footer */
footer {
  font-family: "Segoe UI", Roboto, sans-serif;
  background-color: #e3e7b8;
}

.footer-link {
  color: #0f0f0f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #04980e;
  text-decoration: underline;
}

/* Scroll To Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  z-index: 999;
  padding: 10px 14px;
  font-size: 20px;
}

/* Card Layout */
/* Existing styles kept */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;

 
}

.card {
  width: 280px;
  /* default card width for small screens */
  background-color: #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(22, 22, 22, 0.2);
  margin: 20px;
}

.card-content {
  font-size: 15px;
  margin-bottom: 10px;
  color: #635b5b;
}

.card img {
  width: 100%;
  height: 60%;
}

/* ✅ Force 4 cards per row between 960px and 1279px */
@media screen and (min-width: 960px) and (max-width: 1279px) {
  .card {
    width: calc(25% - 40px);
    /* 4 cards per row, accounting for margin */
    margin: 20px;
  }
}

/* ✅ Optional: Also 4 per row on wider screens */
@media screen and (min-width: 1280px) {
  .card {
    width: calc(25% - 40px);
  }
}


/* Button */
.btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #333;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  color: #fff;
}

/* Video thumbnail styling */
.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 230px;
  display: block;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Ensure logo on top in mobile */
@media (max-width: 991.98px) {
  header .navbar-collapse {
    background-color: rgb(230, 225, 120);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
  }

  .header-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    padding-top: 15px;
  }

  .navbar-nav .nav-item {
    text-align: left;
    padding: 6px 0;
  }

  .dropdown-menu {
    position: relative !important;
    float: none;
    background-color: transparent;
    border: none;
    padding-left: 15px;
  }

  .dropdown-menu .dropdown-item {
    padding: 6px 0;
    font-size: 15px;
  }
}

/* Header Logo Alignment Fix for Desktop */
@media (min-width: 992px) {
  header>.container-fluid>.d-flex {
    align-items: center !important;
    flex-wrap: nowrap;
  }

  .header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  nav.navbar {
    padding: 0 !important;
    margin-left: auto;
  }
}


.row {
  background-color: #f8ffa7;

}


.contact-form-container {
  background-color: #c6bcbc;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Header animation Css */
/* Make container relative to control absolute children */
.scrolling-text {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scroll-text {
  display: inline-block;
  padding-left: 100%;
  /* push text to the right */
  animation: scroll-left 15s linear infinite;
  font-size: 1.5rem;
  color: black;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}


.no-underline {
  text-decoration: none;
  color: inherit;
  /* Keeps the original text color */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.no-underline:hover {
  color: #0b0f12;
  /* Change to your preferred hover color */
  text-decoration: underline;
  /* Adds underline on hover */
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



.bor {
  border: 2px solid dimgray;
  padding: 10px;
  border-radius: 25px;
  margin: 3%;
  box-shadow: 5px 10px;
}

.bor {
  transition: transform 0.3s ease;
}

.bor:hover {
  transform: scale(1.03);
}


.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.btn-details {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.95rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-details:hover {
  background-color: #0056b3;
}

/* Gallery Slider Started From Here  */
.gallery-slider-wrapper {
  --gap: 16px;
  --radius: 18px;
  --slider-bg: #0f172a;
  --card-bg: #0b1220;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #64748b;
  color: var(--text);
}

.gallery-slider-wrapper .gallery-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

@media (min-width: 720px) {
  .gallery-slider-wrapper .gallery-slider {
    grid-auto-columns: calc(50% - var(--gap));
  }
}

@media (min-width: 1100px) {
  .gallery-slider-wrapper .gallery-slider {
    grid-auto-columns: calc(33.333% - var(--gap));
  }
}

.gallery-slider-wrapper .gallery-card {
  position: relative;
  background: linear-gradient(180deg, #0c1223 0%, #0a0f1d 100%);
  border: 1px solid #1f2937;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease;
}

.gallery-slider-wrapper .gallery-card:hover {
  transform: translateY(-3px);
}

.gallery-slider-wrapper .gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.gallery-slider-wrapper .gallery-content {
  padding: 16px 16px 18px;
}

.gallery-slider-wrapper .gallery-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #cbd5e1;
  background: #111827;
  border: 1px solid #1f2937;
}

.gallery-slider-wrapper h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.gallery-slider-wrapper .gallery-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.gallery-slider-wrapper .gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 0;
}

.gallery-slider-wrapper .gallery-dots a {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: #334155;
  border: 1px solid #475569;
}

.gallery-slider-wrapper .gallery-dots a:hover,
.gallery-slider-wrapper .gallery-dots a:focus-visible {
  outline: none;
  transform: scale(1.25);
}

.gallery-slider-wrapper .gallery-slider::-webkit-scrollbar {
  height: 10px;
}

.gallery-slider-wrapper .gallery-slider::-webkit-scrollbar-track {
  background: #0b1220;
  border-radius: 999px;
}

.gallery-slider-wrapper .gallery-slider::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 999px;
}

.gallery-slider-wrapper .gallery-slider::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

.gallery-slider-wrapper .gallery-rail {
  position: relative;
}

.gallery-slider-wrapper .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid #1f2937;
  backdrop-filter: blur(6px);
  font-size: 24px;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

.gallery-slider-wrapper .gallery-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.gallery-slider-wrapper .gallery-arrow.prev {
  left: 8px;
}

.gallery-slider-wrapper .gallery-arrow.next {
  right: 8px;
}

@media (max-width: 480px) {
  .gallery-slider-wrapper .gallery-arrow {
    display: none;
  }
}


/* Gallery Slider Ended Here */


/* Masonry Gallery Section Started From Here */
.masonry-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.masonry-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  color: var(--overlay-text);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s ease;
}

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

.overlay h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.overlay p {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}


/* Terms and Conditions css */
.terms-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
  font-weight: 700;
  margin-bottom: 30px;
  color: #0d6efd;
}

.terms-container h5 {
  margin-top: 30px;
  font-weight: 600;
  color: #343a40;
}

.terms-container p {
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .terms-container {
    padding: 20px;
  }
}


/* About Page CSS Started from Here */
.section-header {
  text-align: center;
  padding: 1rem 0;
}

.section-header h4 {
  background-color: #212529;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.highlight-yellow {
  color: rgb(224, 240, 6);
}

.highlight-orange {
  color: rgb(253, 121, 73);
}

.divider {
  width: 35%;
  height: 5px;
  background-color: #eed70b;
  margin-bottom: 1rem;
}

.founder-img,
.cofounder-img {
  border-radius: 40px;
}

.section-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.gray-bg {
  background-color: rgb(150, 155, 154);
}

.marquee-bg {
  background-color: #6c757d;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.text-highlight {
  color: orange;
}

.custom-list {
  padding-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.custom-list-item::before {
  content: "•";
  color: orange;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.custom-list-item {
  margin-bottom: 0.5rem;
}


/* About Page CSS Endend Here */


/* Career Page */

.career-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #666;
}

.job-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.job-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
}

.job-title {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.job-location,
.job-type {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.job-description {
  font-size: 15px;
  color: #444;
  margin: 16px 0;
  min-height: 80px;
}

.apply-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0052cc;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #003d99;
}


/* Client Section Styling */
.clients-section {
  padding: 60px 20px;
  background-color: #f1f1f1; /* light grey background */
  color: #000;
}

/* Section Heading */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
}

/* Responsive Logo Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
}

/* Client Logo Card */
.client-logo {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 180px;
  height: 120px; /* fixed height for uniformity */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Logo Image Styling */
.client-logo img {
  max-height: 80px; /* same height for all */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hover Effect */
.client-logo:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustment (optional) */
@media (max-width: 480px) {
  .clients-section {
    padding: 40px 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .client-logo {
    max-width: 140px;
    height: 100px;
    padding: 15px;
  }

  .client-logo img {
    max-height: 60px;
  }
}



/* TV Channel */
/* TV Channel Section Start */
.tv-approval-section {
  background-color: #ececec;
  color: rgb(31, 29, 29);
  padding: 40px 20px;
  overflow: hidden;
}

/* Inline logo and heading */
.tv-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: left;
}

.tv-logo2 {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  margin: 0;
  border-radius: 20px;
}

.tv-heading {
  font-size: 2.44rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  max-width: 700px;
}

/* Slider Styles */
.tv-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tv-slider-track {
  display: flex;
  gap: 40px;
  animation: scrollSlider 25s linear infinite;
  align-items: center;
}

.tv-slider-track img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Stop animation on hover */
.tv-slider-wrapper:hover .tv-slider-track {
  animation-play-state: paused;
}

/* Keyframes for slider */
@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .tv-heading {
    font-size: 1.3rem;
    text-align: center;
  }

  .tv-logo2 {
    width: 100%;
  }

  .tv-content {
    flex-direction: column;
    text-align: center;
  }

  .tv-slider-track img {
    height: 40px;
  }
}
/* TV Channel Section End */
