/*======================*/

/* MAIN NAVBAR */
.main-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,255,0.25);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.nav-logo {
  font-size: 22px;
  color: #bff;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0,255,255,0.3);
}

/* MENU LIST */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #dff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* Hover glow */
.nav-links a:hover {
  color: white;
  text-shadow: 0 0 10px cyan;
}

/* underline hover effect */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: cyan;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  font-size: 22px;
  color: #bff;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 800px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(0,255,255,0.3);
    border-bottom: 1px solid rgba(0,255,255,0.3);
    width: 220px;
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 5px 0;
  }

  .nav-links.show {
    display: flex;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000;
  color: white;
  overflow-x: hidden;
}

/* 🔥 Fullscreen video background */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55); /* Dark overlay effect */
}

.hero-section {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  position: relative;
}

/* Content always above the video */
.hero-left,
.hero-right,
.scroll-down {
  position: relative;
  z-index: 2;
}

@media(max-width:700px){
  .hero-left,
  .hero-right{
    margin-top: 20px;
  }
}

/* Name Text */
.name-title {
  font-size: 70px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Right Section */
.hero-right {
  text-align: center;
}

.profile-img {
  width: 310px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.designation {
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6;
  font-weight: bold;
}

/* Scroll down icon */
.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  animation: bounce 1.8s infinite;
  cursor: pointer;
  opacity: 0.8;
}

@keyframes bounce {
  0% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -12px); }
  100% { transform: translate(-50%, 0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .name-title {
    font-size: 45px;
  }

  .profile-img {
    width: 220px;
  }
}

/* FIXED BACKGROUND SECTION */
.section-two {
  background: url("../images/bg-2.avif") center/cover no-repeat fixed;
  padding: 80px 20px;
  color: white;
}

.slider-label{
  text-align: center;
}

.content-box {
  max-width: 1100px;
  margin: auto;
}

/* HEADINGS */
.intro-title, .portfolio-title {
  text-align: center;
  margin-bottom: 25px;
  background: rgba(50,150,140,0.4);
  padding: 10px 25px;
  /* display: inline-block; */
  border-radius: 8px;
  transform: uppercase;;
}

.intro-points{
  margin-bottom: 15px;
}

/* SLIDER BOX */
.slider-container {
  position: relative;
  margin: 40px auto;
  border: 2px solid rgba(0,255,255,0.4);
  padding: 20px;
  border-radius: 12px;
}

.slider {
  position: relative;
  height: 380px;
  overflow: hidden;
}

/* SLIDE STYLE */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.slide p {
  padding-top: 8px;
}

/* BUTTONS */
.prev, .next {
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 30px;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 6px;
  transform: translateY(-50%);
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(255,255,255,0.3);
}

/* COUNT INDICATOR */
.count {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 15px;
}

/*===========================
  Walk in timeLine
===========================*/

.timeline-section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  /* color: #cff;  */
  font-family: 'Poppins', sans-serif;
}

/* MAIN ROW */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 70px;
}

/* IMAGE STYLE */
.t-img {
  width: 330px;
  border: 4px solid rgba(255,255,255,0.65);
  border-radius: 4px;
  display: block;
  transition: 0.3s;
}
.t-img:hover {
  transform: scale(1.02);
}

/* TEXT STYLE */
.t-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
}

.t-year {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  /* color: #aef; */
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .timeline-item {
    gap: 20px;
  }
  .t-img {
    width: 260px;
  }
}

@media(max-width: 700px) {
  .timeline-item {
    flex-direction: column;
    text-align: left;
  }
  .t-img {
    width: 100%;
  }
}

/*===========================
  Footer Section
===========================*/

.main-footer {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 25px 20px;
  color: #dff;
  margin-top: 60px;
  border-top: 1px solid rgba(0,255,255,0.25);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Left */
.footer-left p {
  font-size: 14px;
  opacity: 0.85;
}

/* Center Icons */
.footer-center {
  display: flex;
  gap: 18px;
}

.social-icon {
  color: #bff;
  font-size: 20px;
  transition: 0.3s;
}

.social-icon:hover {
  color: white;
  text-shadow: 0 0 10px cyan;
}

/* Right */
.footer-right p {
  font-size: 14px;
  opacity: 0.9;
}

.dev-link {
  color: #5ff;
  text-decoration: none;
}

.dev-link:hover {
  text-shadow: 0 0 8px cyan;
  color: white;
}

/* RESPONSIVE */
@media(max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/*=====================
Hanuman section
======================*/

/* MAIN WRAPPER */
.hm-section {
  position: relative;
  width: 100%;
  margin-top: 50px; 
  background: #000; /* background behind the image */
  overflow: hidden;
}

/* IMAGE CONTAINER */
.hm-image-container {
  width: 100%;
  height: 100vh;         /* full height section */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

/* FULL IMAGE ALWAYS VISIBLE */
.hm-image {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* <<< IMPORTANT for FULL IMAGE visibility */
  object-position: center;
  display: block;
  background: #000;       /* fill empty space behind */
}

/* CONTENT OVERLAY */
.hm-content {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Scroll button */
.scroll-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 2px solid white;
  margin-bottom: 20px;
  cursor: pointer;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #fff;
  display: inline-block;
  margin-top: 12px;
}

/* Trailer Buttons */
.hm-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.lang-btn {
  background: rgba(255,255,255,0.25);
  padding: 14px 40px;
  color: white;
  border: none;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .hm-buttons {
    flex-direction: column;        /* stack vertically */
    gap: 12px;                     /* space between buttons */
    width: 100%;
    padding: 0 20px;               /* left-right mobile padding */
  }

  .lang-btn {
    width: 100%;                   /* full width buttons */
    text-align: center;
    padding: 14px 0;               /* same height look */
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hm-image-container {
    height: auto;
    padding: 20px 0;
  }

  .hm-buttons {
    flex-direction: column;
  }

  .lang-btn {
    width: 80%;
    margin: 5px auto;
  }
}

.hm-description {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
  text-align: left;        /* left align like screenshot */
  color: #fff;             /* adjust if needed */
  font-size: 15px;
  line-height: 1.6;
}

/*=====================
Concept arts section
======================*/

/* MAIN SECTION */
.conceptarts {
    text-align: center;
    padding: 60px 0;
    width: 100%;
}

/* TITLE */
.conceptarts-title {
    display: inline-block;
    padding: 10px 35px;
    font-size: 26px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* IMAGE WRAPPER */
.conceptarts-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

/* IMAGE - FULLY VISIBLE ALWAYS */
.conceptarts-image {
    width: 100%;
    height: auto;
    object-fit: contain;      /* ensures full image visible */
    display: block;
    border-radius: 4px;
}

/* CAPTION */
.conceptarts-caption {
    margin-top: 12px;
    font-size: 16px;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    display: inline-block;
    color: #000;
    border-radius: 4px;
}

/* ARROWS */
.conceptarts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 45px;
    background: rgba(0,0,0,0.4);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: 0.2s ease;
}

.conceptarts-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.conceptarts-arrow.left {
    left: 15px;
}

.conceptarts-arrow.right {
    right: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .conceptarts-container {
        max-width: 90%;
    }

    .conceptarts-title {
        font-size: 22px;
    }

    .conceptarts-arrow {
        font-size: 32px;
        padding: 6px 12px;
    }
}

/*=====================
Story Board section
======================*/

/* MAIN SECTION */
.storyboard {
    text-align: center;
    padding: 60px 0;
    width: 100%;
}

/* TITLE */
.storyboard-title {
    display: inline-block;
    padding: 10px 35px;
    font-size: 26px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* IMAGE WRAPPER */
.storyboard-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

/* IMAGE */
.storyboard-image {
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    margin: 0 auto;
}

/* CAPTION */
.storyboard-caption {
    margin-top: 12px;
    font-size: 16px;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    display: inline-block;
    color: #000;
    border-radius: 4px;
}

/* ARROWS */
.storyboard-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 45px;
    background: rgba(0,0,0,0.4);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: 0.2s ease;
}

.storyboard-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.storyboard-arrow.left {
    left: 2%;   /* 🔥 responsive */
}

.storyboard-arrow.right {
    right: 2%;  /* 🔥 responsive */
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .storyboard-container {
        max-width: 100%;
        padding: 0 12px;
    }

    .storyboard-image {
        width: 100%;      /* 🔥 image now becomes full width */
        height: auto;     /* keep proportion */
        object-fit: contain;
    }

    .storyboard-arrow {
        font-size: 28px;
        padding: 6px 10px;
    }

    .storyboard-arrow.left {
        left: 6px;
    }

    .storyboard-arrow.right {
        right: 6px;
    }

    .storyboard-caption {
        font-size: 14px;
        padding: 6px 16px;
    }
}

/*=====================
Story Board - 1 section
======================*/

/* MAIN SECTION */
.storyboard1 {
    text-align: center;
    padding: 60px 0;
    width: 100%;
}

/* TITLE */
.storyboard1-title {
    display: inline-block;
    padding: 10px 35px;
    font-size: 26px;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* IMAGE WRAPPER */
.storyboard1-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    overflow: hidden;
}

/* IMAGE */
.storyboard1-image {
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    margin: 0 auto;
}

/* CAPTION */
.storyboard1-caption {
    margin-top: 12px;
    font-size: 16px;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    display: inline-block;
    color: #000;
    border-radius: 4px;
}

/* ARROWS */
.storyboard1-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 45px;
    background: rgba(0,0,0,0.4);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    transition: 0.2s ease;
}

.storyboard1-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.storyboard1-arrow.left {
    left: 2%;   /* 🔥 responsive */
}

.storyboard1-arrow.right {
    right: 2%;  /* 🔥 responsive */
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .storyboard1-container {
        max-width: 100%;
        padding: 0 12px;
    }

    .storyboard1-image {
        width: 100%;      /* 🔥 image now becomes full width */
        height: auto;     /* keep proportion */
        object-fit: contain;
    }

    .storyboard1-arrow {
        font-size: 28px;
        padding: 6px 10px;
    }

    .storyboard1-arrow.left {
        left: 6px;
    }

    .storyboard1-arrow.right {
        right: 6px;
    }

    .storyboard1-caption {
        font-size: 14px;
        padding: 6px 16px;
    }
}

