* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

.custom-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px; /* 🔥 kam height */
  height: 80px; /* 🔥 fixed slim navbar */
}

/* LOGO */
.nav-logo {
  flex: 0 0 auto; /* No flex-grow, align logo to left */
  margin-left: 0px; /* Adjusted to zero to ensure logo aligns perfectly to left */
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* LOGO IMAGE */

.nav-logo img {
  height: 100%; /* 🔥 wrapper ke andar fit */
  max-height: 150px;
  width: auto;
  display: block;
}

/* hover effect (optional) */
.nav-logo img:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}

/* MENU */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center; /* Center the menu items */
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-content li {
  padding: 10px;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* RIGHT MENU */
.right-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.right-menu a {
  text-decoration: none;
  color: #000;
}

.contact-btn {
  background: #0154a0;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 4px;
}

/* MOBILE BUTTON */
.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
.mobile-only-item {
  display: none;
}

@media (max-width: 900px) {
  .hamburger-menu {
    display: block;
  }

  /* NAV CONTAINER */
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  /* OPEN MENU */
  .nav-menu.active {
    max-height: 100vh;
    overflow-y: auto;
  }

  /* VERTICAL LEFT ALIGNED MENU */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left align */
    padding: 10px 20px;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #eee;
  }

  /* LINKS FULL WIDTH */
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .nav-logo img {
    height: 100px; /* mobile size */
  }

  /* DROPDOWN MOBILE */
  .dropdown-content {
    position: static;
    display: none;
    background: #f5f5f5;
    box-shadow: none;
    padding-left: 15px;
  }

  /* JS CONTROL */
  .nav-dropdown.active .dropdown-content {
    display: block;
  }

  /* IMPORTANT FIX: remove hover conflict */
  /* Removed .nav-dropdown:hover .dropdown-content as hover is not needed in mobile */

  /* RIGHT SIDE HIDE */
  .right-menu {
    display: none;
  }

  /* MOBILE ITEMS */
  .mobile-only-item {
    display: block;
  }

  /* ================= SERVICES FIX ================= */
  .services {
    width: 100%;
    padding: 0;
  }

  .services li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .title {
    font-size: 26px;
    line-height: 1.2;
  }

  .number {
    font-size: 12px;
    color: #999;
  }
}











/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 80px;
  overflow: hidden;
  text-align: left;
}

/* CONTENT */
.content-container {
  max-width: 1400px;
  z-index: 2;
  width: 100%;
}

/* HEADING */
.hero h1 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  letter-spacing: -2px;
  margin-left: 80px;
}

/* BACKGROUND LINES */
.bg-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  --x: 0px;
  --y: 0px;
  transform: translate(var(--x), var(--y));
}

.bg-lines::before,
.bg-lines::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: black;
  top: 40%;
  left: -20%;
}

.bg-lines::before {
  transform: rotate(30deg);
}

.bg-lines::after {
  transform: rotate(-30deg);
}


@media (max-width: 992px) {
  .hero {
    justify-content: center;
    text-align: center;
    min-height: 65vh;
  }

  .content-container {
    margin: auto;
  }

  .hero h1 {
    margin-left: 0;
    max-width: 90%;
  }

}


@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    justify-content: flex-start;
    text-align: left;
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-top: 50px;
    margin-left: 0;
  }


  .bg-lines::before,
  .bg-lines::after {
    opacity: 0.3;
  }
}



@media (max-width: 430px) {
  .hero {
    min-height: 50vh;
    padding: 25px 12px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 70px;
    padding-left: 15px;
  }


  .bg-lines::before,
  .bg-lines::after {
    opacity: 0.25;
  }
}













                                             /* custom-marquee */
     .custom-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  background-color: #000;
  padding: 25px 0;
  box-sizing: border-box;
  cursor: pointer;
}

.marquee-runner {
  display: flex;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 60px; /* ✅ correct place */
}

.marquee-content span {
  font-size: 18px;
  font-weight: 500;
  color: white;
  white-space: nowrap; /* ✅ IMPORTANT */
}

/* Hover pause */
.custom-marquee:hover .marquee-runner {
  animation-play-state: paused;
}

/* TABLET */
@media (max-width: 992px) {
  .marquee-content {
    gap: 40px;
  }

  .marquee-content span {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-marquee {
    padding: 18px 0;
  }

  .marquee-content {
    gap: 25px;
  }

  .marquee-content span {
    font-size: 12px;
  }

  .marquee-runner {
    animation-duration: 25s; /* ✅ better speed */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .marquee-content {
    gap: 20px;
  }

  .marquee-content span {
    font-size: 11px;
  }

  .marquee-runner {
    animation-duration: 20s;
  }
}

/* ANIMATION */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}










                                                  /* about-info */
.about-info {
  padding: 120px 20px;
  background: #fff;
  margin-top: 60px;
}

/* CONTAINER */
.about-container {
  max-width: 1000px;
  margin: auto;
}

/* TEXT */
.about-text {
  text-align: left;
}

/* PARAGRAPH */
.about-description {
  font-size: clamp(18px, 2.5vw, 26px); /* ✅ responsive */
  line-height: 1.6;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

/* LINK */
.about-link {
  text-decoration: none;
  font-size: clamp(16px, 2vw, 22px); /* ✅ responsive */
  color: #093d74;
  font-weight: 500;
  position: relative;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #0158a7;
  transition: 0.3s;
}

.about-link:hover::after {
  width: 100%;
}

/* ANIMATION */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}
/* ================= TABLET ================= */
@media (max-width: 992px) {
  .about-info {
    padding: 90px 20px;
  }

  .about-text {
    text-align: left; /* ✅ LEFT ALIGN */
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-info {
    padding: 70px 15px;
  }

  .about-text {
    text-align: left; /* ✅ ensure left */
  }

  .about-description {
    line-height: 1.5;
  }

  .reveal-left {
    transform: translateX(-40px);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .about-info {
    padding: 60px 15px;
  }

  .about-text {
    text-align: left; /* ✅ again force left */
  }

  .about-description {
    font-size: 16px;
  }

  .about-link {
    font-size: 15px;
  }
}












/* =========================
   SECTION
========================= */
.ww-section {
  background-color: #ededed;
  padding: 100px 20px;
}

/* =========================
   CONTAINER
========================= */
.ww-container {
  max-width: 1300px;
  margin: auto;
  width: 100%;
}

/* =========================
   WRAPPER
========================= */
.ww-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =========================
   TEXT
========================= */
.ww-text {
  flex: 1;

  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s ease;
  transition-delay: 0.2s;
}

.ww-line {
  width: 70px;
  height: 2px;
  background: #000;
  margin-bottom: 40px;
}

.ww-text h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

.ww-text h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}

.ww-text p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

/* =========================
   IMAGE (HEIGHT FIX ADDED)
========================= */
.ww-image {
  flex: 1;

  opacity: 0;
  transform: translateX(80px);
  transition: all 0.9s ease;
  transition-delay: 0.8s;
}

.ww-image img {
  width: 100%;
  height: 380px;       /* 🔥 reduced height */
  object-fit: cover;   /* 🔥 keeps proper crop */
  display: block;
  border-radius: 6px;
}

/* =========================
   ACTIVE STATE
========================= */
.ww-active .ww-text,
.ww-active .ww-image {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .ww-section {
    padding: 80px 20px;
  }

  .ww-wrapper {
    gap: 40px;
  }

  .ww-text h3 {
    font-size: 20px;
  }

  .ww-text p {
    font-size: 15px;
  }

  .ww-image img {
    height: 320px; /* 🔥 tablet height */
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .ww-section {
    padding: 60px 20px;
  }

  .ww-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .ww-text {
    order: 1;
    transform: translateY(60px);
  }

  .ww-image {
    order: 2;
    transform: translateY(60px);
  }

  .ww-active .ww-text,
  .ww-active .ww-image {
    transform: translateY(0);
  }

  .ww-text p {
    max-width: 100%;
  }

  .ww-line {
    margin-bottom: 20px;
  }

  .ww-image img {
    height: 280px; /* 🔥 mobile reduced */
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .ww-text h4 {
    font-size: 16px;
  }

  .ww-text h3 {
    font-size: 18px;
  }

  .ww-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .ww-image img {
    height: 220px; /* 🔥 small mobile */
  }
}









/* =========================
   SECTION
========================= */
.booth-sec-x {
  padding: 100px 20px;
}

/* =========================
   CONTAINER
========================= */
.booth-wrap-x {
  max-width: 1300px;
  margin: auto;
}

/* =========================
   ROW
========================= */
.booth-row-x {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* =========================
   IMAGE
========================= */
.booth-img-x {
  width: 100%;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.9s ease;
}

.booth-img-x img {
  width: 100%;
  height: 360px;   /* 🔥 reduced (was 420px) */
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* =========================
   CONTENT
========================= */
.booth-content-x {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.9s ease;
}

.booth-line-x {
  width: 70px;
  height: 2px;
  background: #000;
  margin-bottom: 30px;
}

.booth-subtitle-x {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.booth-title-x {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.booth-desc-x {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   ACTIVE STATE
========================= */
.booth-active .booth-img-x,
.booth-active .booth-content-x {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .booth-sec-x {
    padding: 80px 20px;
  }

  .booth-row-x {
    gap: 40px;
  }

  .booth-img-x img {
    height: 320px; /* 🔥 reduced */
  }

  .booth-title-x {
    font-size: 24px;
  }

  .booth-desc-x {
    font-size: 16px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .booth-sec-x {
    padding: 60px 20px;
  }

  .booth-row-x {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }

  .booth-content-x {
    order: 1;
    transform: translateY(60px);
    text-align: left;
  }

  .booth-img-x {
    order: 2;
    transform: translateY(60px);
  }

  .booth-active .booth-img-x,
  .booth-active .booth-content-x {
    transform: translateY(0);
  }

  .booth-img-x img {
    height: 260px; /* 🔥 reduced */
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .booth-img-x img {
    height: 200px; /* 🔥 more compact */
  }

  .booth-title-x {
    font-size: 20px;
  }

  .booth-desc-x {
    font-size: 14px;
  }
}





/* =========================
   SECTION
========================= */
.exhibit-section {
    background-color: #ededed;
  padding: 100px 20px;
}

/* =========================
   CONTAINER
========================= */
.exhibit-container {
  max-width: 1300px;
  margin: auto;
  width: 100%;
}

/* =========================
   ROW
========================= */
.exhibit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

/* =========================
   TEXT
========================= */
.exhibit-content {
  flex: 1;

  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.7s ease;
  transition-delay: 0.2s;
}

.exhibit-line {
  width: 70px;
  height: 2px;
  background: #000;
  margin-bottom: 40px;
}

.exhibit-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

.exhibit-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

.exhibit-description {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   IMAGE (HEIGHT CONTROL ADDED)
========================= */
.exhibit-media {
  flex: 1;

  opacity: 0;
  transform: translateX(100px);
  transition: all 0.9s ease;
  transition-delay: 0.8s;
}

.exhibit-media img {
  width: 100%;
  height: 380px;      /* 🔥 reduced (main fix) */
  object-fit: cover;  /* keeps nice crop */
  display: block;
  border-radius: 8px;
}

/* =========================
   ACTIVE STATE
========================= */
.exhibit-active .exhibit-content,
.exhibit-active .exhibit-media {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .exhibit-section {
    padding: 80px 20px;
  }

  .exhibit-row {
    gap: 40px;
  }

  .exhibit-media img {
    height: 320px; /* 🔥 tablet */
  }

  .exhibit-title {
    font-size: 22px;
  }

  .exhibit-description {
    font-size: 15px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .exhibit-section {
    padding: 60px 20px;
  }

  .exhibit-row {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .exhibit-content {
    order: 1;
    transform: translateY(60px);
    text-align: left;
  }

  .exhibit-media {
    order: 2;
    transform: translateY(60px);
  }

  .exhibit-media img {
    height: 260px; /* 🔥 mobile */
  }

  .exhibit-active .exhibit-content,
  .exhibit-active .exhibit-media {
    transform: translateY(0);
  }

  .exhibit-description {
    max-width: 100%;
  }

  .exhibit-line {
    margin: 0 0 20px 0;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .exhibit-media img {
    height: 200px; /* 🔥 small mobile */
  }

  .exhibit-title {
    font-size: 20px;
  }

  .exhibit-description {
    font-size: 14px;
    line-height: 1.6;
  }
}











/* =========================
   SECTION
========================= */
.showcase-area {
  padding: 100px 20px;
}

/* =========================
   WRAPPER
========================= */
.showcase-wrapper {
  max-width: 1300px;
  margin: auto;
}

/* =========================
   ROW
========================= */
.showcase-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}

/* =========================
   IMAGE
========================= */
.showcase-image {
  flex: 1;

  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s ease;
  transition-delay: 0.2s;
}

.showcase-image img {
  width: 100%;
  height: 380px;       /* 🔥 reduced height */
  object-fit: cover;   /* keeps nice crop */
  display: block;
  border-radius: 8px;  /* optional polish */
}

/* =========================
   CONTENT
========================= */
.showcase-content {
  flex: 1;

  opacity: 0;
  transform: translateX(100px);
  transition: all 0.7s ease;
  transition-delay: 0.8s;
}

.showcase-line {
  width: 70px;
  height: 2px;
  background: #000;
  margin-bottom: 40px;
}

.showcase-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 25px;
}

.showcase-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
}

.showcase-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   ACTIVE STATE
========================= */
.showcase-active .showcase-image,
.showcase-active .showcase-content {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .showcase-row {
    gap: 40px;
  }

  .showcase-image img {
    height: 320px; /* 🔥 tablet */
  }

  .showcase-title {
    font-size: 20px;
  }

  .showcase-text {
    font-size: 15px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .showcase-row {
    flex-direction: column;
  }

  .showcase-image {
    order: 1;
  }

  .showcase-content {
    order: 2;
  }

  .showcase-image img {
    height: 260px; /* 🔥 mobile */
  }

  .showcase-text {
    max-width: 100%;
  }

  .showcase-line {
    margin-bottom: 20px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .showcase-image img {
    height: 200px; /* 🔥 small mobile */
  }
}











/* //////////////////////////////////////111111*/
/* SECTION */
.process-video-section {
  padding: 80px 20px;
  background-color: #ededed;
}

/* CONTAINER */
.process-video-container {
  max-width: 1300px;
  margin: auto;
}

/* WRAPPER */
.process-video-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT VIDEO (START HIDDEN LEFT) */
.process-video-media {
  flex: 1;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s ease;
}

/* RIGHT CONTENT (START HIDDEN RIGHT) */
.process-video-content {
  flex: 1;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE (SHOW) */
.process-video-section.active .process-video-media,
.process-video-section.active .process-video-content {
  opacity: 1;
  transform: translateX(0);
}

/* VIDEO */
.process-video-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* TEXT */
.process-video-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.process-video-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* ================= BETTER MOBILE FIX ================= */
@media (max-width: 768px) {
  .process-video-wrapper {
    flex-direction: column;
    gap: 25px;
    text-align: left; /* better readability */
  }

  .process-video-media,
  .process-video-content {
    flex: unset;
    width: 100%;
  }

  .process-video-text {
    max-width: 100%;
  }
}

/* SMALL MOBILE IMPROVEMENT */
@media (max-width: 480px) {
  .process-video-section {
    padding: 60px 15px;
  }

  .process-video-title {
    font-size: 20px;
  }

  .process-video-text {
    font-size: 14px;
    line-height: 1.6;
  }
}











/* //////////////////////////////////////22222 */
/* SECTION */
/* ================= SECTION ================= */
.video-block {
  padding: 80px 20px;
  overflow: hidden;
}

/* CONTAINER */
.video-block__container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ROW */
.video-block__row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ================= VIDEO ================= */
.video-block__media {
  flex: 1;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s ease;
}

.video-block__video {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= CONTENT ================= */
.video-block__content {
  flex: 1;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s ease;
}

/* ACTIVE (SCROLL) */
.video-block__row.active .video-block__media,
.video-block__row.active .video-block__content {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.video-block__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.video-block__text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .video-block__row {
    gap: 30px;
  }

  .video-block__video {
    max-height: 320px;
  }

  .video-block__title {
    font-size: 28px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .video-block__row {
    flex-direction: column;
    gap: 25px;
  }

  .video-block__media,
  .video-block__content {
    width: 100%;
    transform: translateY(60px); /* unified animation */
  }

  .video-block__row.active .video-block__media,
  .video-block__row.active .video-block__content {
    transform: translateY(0);
  }

  .video-block__content {
    text-align: left;
  }

  .video-block__title {
    font-size: 24px;
    text-align: left;
  }

  .video-block__text {
    max-width: 100%;
    text-align: left;
  }

  .video-block__video {
    max-height: 240px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .video-block {
    padding: 60px 15px;
  }

  .video-block__video {
    max-height: 200px;
  }

  .video-block__title {
    font-size: 20px;
  }

  .video-block__text {
    font-size: 14px;
    line-height: 1.6;
  }
}






/* ///////////////////////////////333333/ */
/* SECTION */
/* ================= SECTION ================= */
.media-layout {
  padding: 80px 20px;
  background-color: #ededed;
  overflow: hidden;
}

/* CONTAINER */
.media-layout__container {
  max-width: 1300px;
  margin: 0 auto;
}

/* FLEX ROW */
.media-layout__flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ================= LEFT SIDE (VIDEO) ================= */
.media-layout__left {
  flex: 1;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* VIDEO */
.media-layout__video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ================= RIGHT SIDE (CONTENT) ================= */
.media-layout__right {
  flex: 1;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.media-layout__flex.active .media-layout__left,
.media-layout__flex.active .media-layout__right {
  opacity: 1;
  transform: translateX(0);
}

/* HEADING */
.media-layout__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

/* DESCRIPTION */
.media-layout__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .media-layout__flex {
    gap: 40px;
  }

  .media-layout__video {
    max-height: 300px;
  }

  .media-layout__heading {
    font-size: 28px;
  }

  .media-layout__desc {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .media-layout__flex {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .media-layout__left,
  .media-layout__right {
    width: 100%;
    transform: translateY(60px);
  }

  .media-layout__flex.active .media-layout__left,
  .media-layout__flex.active .media-layout__right {
    transform: translateY(0);
  }

  .media-layout__heading {
    font-size: 24px;
    text-align: left;
  }

  .media-layout__desc {
    max-width: 100%;
    text-align: left;
  }

  .media-layout__video {
    max-height: 240px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .media-layout {
    padding: 60px 15px;
  }

  .media-layout__video {
    max-height: 200px;
  }

  .media-layout__heading {
    font-size: 20px;
  }

  .media-layout__desc {
    font-size: 14px;
    line-height: 1.6;
  }
}











/* ///////////////////////////////////////444444444444 */

/* ================= SECTION ================= */
.layoutA {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}

/* CONTAINER */
.layoutA-wrap {
  max-width: 1300px;
  margin: auto;
}

/* ROW */
.layoutA-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ================= LEFT VIDEO ================= */
.layoutA-col1 {
  flex: 1;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* VIDEO */
.layoutA-video {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ================= RIGHT CONTENT ================= */
.layoutA-col2 {
  flex: 1;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.layoutA-row.active .layoutA-col1,
.layoutA-row.active .layoutA-col2 {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.layoutA-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.layoutA-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .layoutA-row {
    gap: 40px;
  }

  .layoutA-video {
    height: 300px;
  }

  .layoutA-title {
    font-size: 28px;
  }

  .layoutA-text {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .layoutA-row {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .layoutA-col1,
  .layoutA-col2 {
    width: 100%;
    transform: translateY(60px);
  }

  .layoutA-row.active .layoutA-col1,
  .layoutA-row.active .layoutA-col2 {
    transform: translateY(0);
  }

  .layoutA-video {
    height: 240px;
  }

  .layoutA-title {
    font-size: 24px;
  }

  .layoutA-text {
    max-width: 100%;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .layoutA {
    padding: 60px 15px;
  }

  .layoutA-video {
    height: 200px;
  }

  .layoutA-title {
    font-size: 20px;
  }

  .layoutA-text {
    font-size: 14px;
  }
}





/* //////////////////////////////////555555555555 */


/* ================= SECTION ================= */
.vx-sec {
  padding: 80px 20px;
  background-color: #ededed;
  overflow: hidden;
}

/* CONTAINER */
.vx-box {
  max-width: 1300px;
  margin: auto;
}

/* FLEX */
.vx-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ================= LEFT (VIDEO) ================= */
.vx-left {
  flex: 1;
  opacity: 0;
  transform: translateX(-120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-vid {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ================= RIGHT (CONTENT) ================= */
.vx-right {
  flex: 1;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.vx-flex.active .vx-left,
.vx-flex.active .vx-right {
  opacity: 1;
  transform: translateX(0);
}

/* TEXT */
.vx-head {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.vx-para {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .vx-flex {
    gap: 40px;
  }

  .vx-vid {
    height: 280px;
  }

  .vx-head {
    font-size: 28px;
  }

  .vx-para {
    font-size: 15px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .vx-flex {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .vx-left,
  .vx-right {
    width: 100%;
    transform: translateY(60px);
  }

  .vx-flex.active .vx-left,
  .vx-flex.active .vx-right {
    transform: translateY(0);
  }

  .vx-vid {
    height: 240px;
  }

  .vx-head {
    font-size: 24px;
  }

  .vx-para {
    max-width: 100%;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .vx-sec {
    padding: 60px 15px;
  }

  .vx-vid {
    height: 200px;
  }

  .vx-head {
    font-size: 20px;
  }

  .vx-para {
    font-size: 14px;
  }
}











/* ========================= */
/* CONTAINER */
/* ========================= */

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================= */
/* SECTION */
/* ========================= */

.content-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 25px;
  position: relative;

  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

/* visible animation */
.content-section.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================= */
/* 🔥 STEP NUMBER (FIXED CIRCLE) */
/* ========================= */

.content-section::before {
  content: attr(data-step);
  position: absolute;
  left: -30px;
  top: 0;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 18px;
  color: #093D74;

  background: #ffffff;

  z-index: 5;
  pointer-events: none;

  box-shadow: 0 0 14px rgba(9, 61, 116, 0.18);

  border: 4px solid #e6e6e6;
}

/* ========================= */
/* 🔥 ROTATING OUTER RING (THICKER) */
/* ========================= */

.content-section::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  border: 6px solid transparent; /* 🔥 thicker ring */
  border-top: 6px solid #093D74;
  border-right: 6px solid #00c2ff;

  animation: spinRing 1s linear infinite;

  z-index: 1;
}

/* rotation */
@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ========================= */
/* TITLE */
/* ========================= */

.content-section h2 {
  margin-top: 0;
  font-size: 28px;
  margin-bottom: 15px;
}

/* ========================= */
/* TABS */
/* ========================= */

.section-tabs {
  margin-top: 15px;
}

.section-tab {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px;

  color: #777;
  font-weight: 500;
  cursor: pointer;

  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;

  background: #f5f5f5;
  transition: all 0.3s ease;
}

.section-tab:hover {
  background: #e8e8e8;
}

.section-tab.active {
  font-weight: 600;
  color: #fff;
  background: #093D74;
}

/* ========================= */
/* TAB CONTENT */
/* ========================= */

.tab-panel {
  line-height: 1.7;
  display: none;
  font-size: 25px;
  margin-top: 10px;
}

.tab-panel.active {
  display: block;
}

/* ========================= */
/* RESPONSIVE FIX (IMPROVED) */
/* ========================= */

/* Tablets */
@media (max-width: 900px) {
  .content-section {
    margin: 40px auto;
    padding: 25px 20px;
  }

  .content-section::before,
  .content-section::after {
    left: -25px;
    width: 52px;
    height: 52px;
  }

  .content-section::after {
    border-width: 5px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .section-tab {
    padding: 9px 16px;
    font-size: 14px;
  }

  .tab-panel {
    font-size: 18px; /* fixed from 25px too large */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .content-section {
    margin: 30px auto;
    padding: 20px 15px 20px 25px;
    border-left: none;
  }

  .content-section::before,
  .content-section::after {
    left: -20px;
    width: 48px;
    height: 48px;
  }

  .content-section::before {
    font-size: 16px;
  }

  .content-section::after {
    border-width: 5px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .section-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .tab-panel {
    font-size: 15px;
    line-height: 1.6;
  }
}






























/* ================= SECTION ================= */
.nx-stats-section {
  background: linear-gradient(90deg, #86c5ff 0%, #65D9F0 100%);
  padding: 80px 8%;
  text-align: center;
}

/* HEADINGS */
.nx-stats-section h1 {
  font-size: 45px;
  font-weight: 800;
  color: black;
  margin-bottom: 40px;
}

.nx-stats-section h2 {
  max-width: 1100px;
  margin: 0 auto 70px;
  font-size: clamp(28px, 5vw, 55px);
  line-height: 1.2;
}

/* ROW */
.nx-stats-row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ITEM */
.nx-stat {
  flex: 1;
  min-width: 250px;
}

/* NUMBER */
.nx-number {
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 700;
}

/* TEXT */
.nx-text {
  margin-top: 15px;
  font-size: 18px;
}

/* BUTTON */
.nx-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 55px;
  background: #0154a0;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.nx-btn:hover {
  transform: translateY(-4px);
}

/* ================= ANIMATION ================= */
.nx-anim {
  opacity: 0;
  transform: translateY(100px); /* 👈 bottom se aayega */
  transition: all 0.8s ease;
}

.nx-anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* DELAYS */
.nx-delay-0 { transition-delay: 0s; }
.nx-delay-1 { transition-delay: 0.2s; }
.nx-delay-2 { transition-delay: 0.4s; }
.nx-delay-3 { transition-delay: 0.6s; }
.nx-delay-4 { transition-delay: 0.8s; }
.nx-delay-5 { transition-delay: 1s; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nx-stats-row {
    flex-direction: column;
    align-items: center;
  }

  .nx-number {
    font-size: 70px;
  }

  .nx-btn {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .nx-stats-section {
    padding: 60px 20px;
  }

  .nx-number {
    font-size: 60px;
  }

  .nx-text {
    font-size: 16px;
  }

  .nx-btn {
    width: 100%;
  }
}









/*==========================
        FOOTER
==========================*/

.site-footer{
    background:#111;
    color:#fff;
    padding:80px 20px 40px;
    font-family:Arial,sans-serif;
}

.footer-wrapper{
    max-width:1300px;
    margin:auto;
}

/*==========================
        TOP
==========================*/
.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    margin-bottom:30px;      /* 10px se 30px kar dein */
    padding-bottom:30px;     /* 20px se 30px kar dein */
    border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-title h2{
    font-size:32px;
    line-height:1.3;
    max-width:750px;
    margin-bottom: 20px;
}

.footer-btn{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-btn:hover{
    background:#0158A7;
    border-color:#0158A7;
}

.footer-email a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.footer-email a:hover{
    color:#0158A7;
}

/*==========================
        GRID
==========================*/

.footer-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
    padding:60px 0;
}

.footer-col h4{
    font-size:22px;
    margin-bottom:18px;
    color:#fff;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
    line-height:1.7;
    color:#ccc;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#0158A7;
    padding-left:5px;
}

/*==========================
      SOCIAL ICONS
==========================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid #444;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff !important;
    transition:.3s;
}

.footer-social a i{
    color:#fff !important;
    font-size:17px;
}

.footer-social a:hover{
    background:#0158A7;
    border-color:#0158A7;
    transform:translateY(-3px);
}

/*==========================
        BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:35px;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:30px;
}

.footer-copy{
    justify-self:start;
}

.footer-copy p{
    margin:4px 0;
    font-size:14px;
    color:#999;
    line-height:1.6;
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.footer-logos img{
    height:42px;
    width:auto;
}

.footer-right{
    justify-self:end;
    color:#999;
    font-size:14px;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:900px){

.footer-top{
    flex-direction:column;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.footer-bottom{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-copy{
    justify-self:center;
}

.footer-logos{
    justify-content:center;
}

.footer-right{
    justify-self:center;
    text-align:center;
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-title h2{
    font-size:26px;
}

.footer-btn{
    width:100%;
    text-align:center;
}

.footer-email{
    margin-top:15px;
}

.footer-email a{
    font-size:17px;
}

.footer-social{
    flex-wrap:wrap;
}

}

@media(max-width:400px){

.site-footer{
    padding:60px 15px 30px;
}

.footer-title h2{
    font-size:22px;
}

.footer-col h4{
    font-size:18px;
}

.footer-col ul li,
.footer-col ul li a{
    font-size:15px;
}

.footer-logos img{
    height:32px;
}

.footer-copy p,
.footer-right{
    font-size:13px;
}

}