@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --primary-color: #f58825;
  --secondary-color: #ff1000;
}
/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}
.home-left {
  background: linear-gradient(to bottom, #000000, #2c2c2c);
  height: 100vh;
  margin-top: 0 !important;
  position: sticky;
  top: 0;
  left: 0;
}
.home-logo {
  width: 100%;
  float: right;
  padding-top: 20px;
}
.nav-links {
  list-style: none;
  padding: 0;
  width: 100%;
  text-align: right;
  padding-right: 30px;
}
.nav-links li {
  margin: 15px 0;
}
.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  transition: 0.3s;
}
.nav-links a:hover {
  background: #222;
  color: #00d1ff;
  padding-left: 25px;
}
.home-right-section {
  background: #343030 !important;
}
.home-right {
  background: #343030;
  position: relative;
}
.home-right h1 {
  font-size: 50px;
  color: white;
}

.home-right h2 {
  font-size: 28px;
  color: #ccc;
}

.typing-text {
  color: var(--primary-color); /* highlight color */
  border-right: 2px solid #00bcd4;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.bg-video {
  width: 100% !important;
  position: absolute;
  top: 0 !important;
  left: 0;
}
.home-right {
  position: relative;
  height: 100vh;
}
.home-right-contents {
  position: absolute;
  top: 40%;
  left: 0; /* start from left */
  transform: translateY(-50%); /* only move vertically */
  width: 100%;
  text-align: center; /* if you want content centered inside */
}
.home-right-contents h1 span {
  color: var(--primary-color);
  font-size: 100px;
}
.home-right-contents h2 {
  color: white;
  font-size: 50px;
}
.home-right-contents h1 {
  font-size: 30px;
  margin-bottom: -25px !important;
}

/* Home-About-Section */
.about-section {
  padding-left: 50px;
  padding-right: 50px;
  color: white;
}
.about-section span {
  color: var(--primary-color);
}
.about-section h2 {
  letter-spacing: 1px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
}

.about-section img {
  height: 400px;
  width: 100% !important;
  object-fit: cover;
}

.services-section {
  padding: 50px;
}
/* ROW STYLE */
.services-row {
  display: grid;
  gap: 40px;
  text-align: center;
}

/* TOP = 3 COLUMNS */
.top-row {
  grid-template-columns: repeat(3, 1fr);
}

/* BOTTOM = 2 COLUMNS (CENTERED) */
.bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: auto;
}

/* CARD STYLE */
.service-card {
  background: linear-gradient(to bottom, #a84e0f, #f58825);
  padding: 10px;
  border-radius: 10px;
  text-align: left;
}
.service-card img {
  width: 50px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 15px;
  line-height: 20px;
  color: white;
}

.video-editing-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

.bg-video-editing {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* dark overlay */
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding: 40px;
  text-align: left; /* Alignment changed */
  margin-left: 50px; /* Push content to left */
  background: rgba(0, 0, 0, 0.55);
}
.video-content .btn {
  background: var(--primary-color);
  color: white;
}
.video-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.video-content p {
  font-size: 17px;
  line-height: 1.7;
}

.graphic-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 80px 5%;
}

.graphic-left {
  width: 50%;
}

.graphic-right {
  width: 50%;
  color: white;
}

.graphic-right h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 20px;
}

.graphic-right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.graphic-btn {
  display: inline-block;
  background: #ff6600;
  padding: 12px 30px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

/* Swiper */
.graphic-left .swiper {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #444;
}

.graphic-left .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrow buttons color */
.swiper-button-next,
.swiper-button-prev {
  color: #ff6600;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: #fff;
}

.animation-motion-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center; /* Align vertically center */
  justify-content: flex-start; /* Align left */
  color: #fff;
  padding-left: 80px; /* Push content to left */
}

.animation-motion-section .bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.animation-motion-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Slight dark overlay */
  z-index: 2;
}

.motion-content {
  position: relative;
  z-index: 3;
  max-width: 550px;
  padding: 30px 35px;

  /* Visible Background for the content box */
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  text-align: left;
}

.motion-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.motion-content p {
  font-size: 16px;
  line-height: 1.7;
}

.poster-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 5%;
  color: white;
}

.poster-left {
  width: 50%;
}

.poster-right {
  width: 50%;
}

.poster-right h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.poster-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* .posterSwiper img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
} */
/* Swiper */
.poster-left .swiper {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #444;
}

.poster-left .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Editing Page */
.video-hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: #fff;
}

.video-hero .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.btn-primary {
  background: var(--primary-color);
  padding: 12px 24px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.video-packages {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 5%;
  color: white;
}
.video-packages h2{
    color: var(--primary-color);
    margin-bottom: 20px;
}
.video-packages .package-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 15px;
  overflow: hidden;
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px; /* Forces equal height */
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Background video */
.card-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.35;
}

/* Overlay content */
.package-card .content {
  position: relative;
  z-index: 2;
}
.package-card .content ul li{
    list-style: none;
    margin-left: -20px;
}

/* Make the text stand out more */
.package-card h3,
.package-card p,
.package-card ul li {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Button */
.package-btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

/* Highlight card */
.package-card.highlight {
  border: 2px solid var(--primary-color);
}




.video-collage-section {
  padding: 80px 5%;
  background: #1d1c1c;
}
.video-collage-section h2{
    color: var(--primary-color);
    margin-bottom: 20px
}
.video-collage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: 240px 260px 140px;
  gap: 20px;
}

/* LEFT COLUMN */
.left-top {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.left-bottom {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

/* MIDDLE COLUMN */
.middle-top {
  grid-column: 1/ 3;
  grid-row: 1 / 2;
}

.middle-center {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.middle-bottom {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

/* RIGHT COLUMN */
.right {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/* VIDEO STYLE */
.collage-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid black;
}




/* Graphics Design */
/* Intro Section */
.graphic-intro {
    padding: 50px 50px;
    color: white;
}

.graphic-intro .intro-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
}

.graphic-intro h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.graphic-intro p {
    font-size: 16px;
    line-height: 1.7;
}




#graphic-packages{
    background: #1d1c1c;
}

/* Swipers */
.graphic-banners{
    background: #1d1c1c;
}

.graphic-posts, .graphic-banners {
    padding: 50px;
}
.graphic-posts h2{
    text-align: left;
    color: var(--primary-color);
}
.graphic-posts p{
    color: white;
}
.graphic-banners h2{
    color: var(--primary-color);
    text-align: left;
}
.graphic-banners p{
    color: white;
}
.swiper-slide img {
    width: 100%;
    border-radius: 12px;
    height: 350px;
    object-fit: cover;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

.graphic-banners .swiper-slide img {
    height: 250px;    /* Banner smaller height */
}



.posters-arts-section {
    padding: 80px 0;
    background: #0d0d0d;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #ccc;
    margin-bottom: 50px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.post-card {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.post-card:hover img {
    transform: scale(1.06);
    opacity: 0.85;
}
